From f59dd48717a5c2958fe499887c039c2713b5eb2f Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Fri, 21 Apr 2023 08:35:30 -0700 Subject: [PATCH] refactor: delete `LoaderInteropConstants` This was required before the migration to dependency injection --- src/Microsoft.ComponentDetection/LoaderInteropConstants.cs | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/Microsoft.ComponentDetection/LoaderInteropConstants.cs diff --git a/src/Microsoft.ComponentDetection/LoaderInteropConstants.cs b/src/Microsoft.ComponentDetection/LoaderInteropConstants.cs deleted file mode 100644 index c9e2995b7..000000000 --- a/src/Microsoft.ComponentDetection/LoaderInteropConstants.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Microsoft.ComponentDetection.Loader; - -public static class LoaderInteropConstants -{ - public static readonly string OrchestratorAssemblyModule = typeof(Orchestrator.Orchestrator).Assembly.GetName().Name; - public static readonly string OrchestratorTypeName = typeof(Orchestrator.Orchestrator).FullName; -}