Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/installer/test/TestUtils/TestApp.cs')
-rw-r--r--src/installer/test/TestUtils/TestApp.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/installer/test/TestUtils/TestApp.cs b/src/installer/test/TestUtils/TestApp.cs
index a1ff67d95c8..3e4e72f1fe7 100644
--- a/src/installer/test/TestUtils/TestApp.cs
+++ b/src/installer/test/TestUtils/TestApp.cs
@@ -16,7 +16,6 @@ namespace Microsoft.DotNet.CoreSetup.Test
public string RuntimeDevConfigJson { get; private set; }
public string HostPolicyDll { get; private set; }
public string HostFxrDll { get; private set; }
- public string CoreClrDll { get; private set; }
public string AssemblyName { get; }
@@ -56,7 +55,6 @@ namespace Microsoft.DotNet.CoreSetup.Test
RuntimeDevConfigJson = Path.Combine(Location, $"{AssemblyName}.runtimeconfig.dev.json");
HostPolicyDll = Path.Combine(Location, RuntimeInformationExtensions.GetSharedLibraryFileNameForCurrentPlatform("hostpolicy"));
HostFxrDll = Path.Combine(Location, RuntimeInformationExtensions.GetSharedLibraryFileNameForCurrentPlatform("hostfxr"));
- CoreClrDll = Path.Combine(Location, RuntimeInformationExtensions.GetSharedLibraryFileNameForCurrentPlatform("coreclr"));
}
}
}