From c4595443f2ef7b9c9414399f1abc76415b3783c0 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Mon, 16 Mar 2020 11:36:36 -0700 Subject: [PATCH] Delete unnecessary ReferenceSystemPrivateCoreLib from CoreCLR tests (#33629) --- src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.cs | 2 -- src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.csproj | 1 - .../src/Interop/NativeLibraryResolveCallback/CallbackStressTest.cs | 2 -- .../src/Interop/NativeLibraryResolveCallback/CallbackStressTest.csproj | 1 - .../tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.cs | 2 -- .../tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.csproj | 1 - .../tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.cs | 2 -- .../src/Interop/NativeLibraryResolveEvent/ResolveEventTests.csproj | 1 - .../tests/src/Interop/NativeLibraryResolveEvent/TestAsm/TestAsm.csproj | 1 - 9 files changed, 13 deletions(-) diff --git a/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.cs b/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.cs index 23bdbf5..aac0b84 100644 --- a/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.cs +++ b/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.cs @@ -4,8 +4,6 @@ using System; using System.Runtime.InteropServices; -using Console = Internal.Console; - public class FakeInjectedCode { int NonStatic(String argument) { return 0;} diff --git a/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.csproj b/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.csproj index a807259..ebf4230 100644 --- a/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.csproj +++ b/src/coreclr/tests/src/Interop/ExecInDefAppDom/ExecInDefAppDom.csproj @@ -1,7 +1,6 @@ Exe - true diff --git a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.cs b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.cs index 19f5310..150dd7e 100644 --- a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.cs +++ b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.cs @@ -9,8 +9,6 @@ using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Threading; -using Console = Internal.Console; - [assembly: DefaultDllImportSearchPaths(DllImportSearchPath.SafeDirectories)] public class CallbackStressTest { diff --git a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.csproj b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.csproj index e7ba58f..af8f826 100644 --- a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.csproj +++ b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackStressTest.csproj @@ -2,7 +2,6 @@ Exe true - true WINDOWS diff --git a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.cs b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.cs index 0e73849..30e338b 100644 --- a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.cs +++ b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.cs @@ -6,8 +6,6 @@ using System.IO; using System.Reflection; using System.Runtime.InteropServices; -using Console = Internal.Console; - [assembly: DefaultDllImportSearchPaths(DllImportSearchPath.SafeDirectories)] public class CallbackTests { diff --git a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.csproj b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.csproj index 3dd5b8f..0d53181 100644 --- a/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.csproj +++ b/src/coreclr/tests/src/Interop/NativeLibraryResolveCallback/CallbackTests.csproj @@ -2,7 +2,6 @@ Exe true - true diff --git a/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.cs b/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.cs index 245bfc6..99b7b1b 100644 --- a/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.cs +++ b/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.cs @@ -7,8 +7,6 @@ using System.Runtime.Loader; using System.Reflection; using System.Runtime.InteropServices; -using Console = Internal.Console; - public class ALC : AssemblyLoadContext { protected override Assembly Load(AssemblyName assemblyName) diff --git a/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.csproj b/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.csproj index 81af7f6..3635d48 100644 --- a/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.csproj +++ b/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/ResolveEventTests.csproj @@ -2,7 +2,6 @@ Exe true - true true diff --git a/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/TestAsm/TestAsm.csproj b/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/TestAsm/TestAsm.csproj index 973ed9e..9ecaeb6 100644 --- a/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/TestAsm/TestAsm.csproj +++ b/src/coreclr/tests/src/Interop/NativeLibraryResolveEvent/TestAsm/TestAsm.csproj @@ -2,7 +2,6 @@ Library true - true -- 2.7.4