diff options
author | Jan Kotas <jkotas@microsoft.com> | 2017-03-16 07:32:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 07:32:12 -0700 |
commit | 84aab5f59d023849b9ccdc290e698e4a61ac75a2 (patch) | |
tree | 5236a7bea31a0b7deefd1a4f181c2d6cb1ded1aa /tests/src/Interop | |
parent | 8f4861922d1761bfcb339d2474fd1b414cec8004 (diff) | |
download | coreclr-84aab5f59d023849b9ccdc290e698e4a61ac75a2.tar.gz coreclr-84aab5f59d023849b9ccdc290e698e4a61ac75a2.tar.bz2 coreclr-84aab5f59d023849b9ccdc290e698e4a61ac75a2.zip |
Delete mscorlib facade (#10157)
Fixes #7607
Diffstat (limited to 'tests/src/Interop')
4 files changed, 6 insertions, 2 deletions
diff --git a/tests/src/Interop/ICastable/Castable.cs b/tests/src/Interop/ICastable/Castable.cs index 9e119c1ccb..f2281deab2 100644 --- a/tests/src/Interop/ICastable/Castable.cs +++ b/tests/src/Interop/ICastable/Castable.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using System.Diagnostics; using System.Runtime.CompilerServices; +using Console = Internal.Console; + public interface IRetArg<T> { T ReturnArg(T t); diff --git a/tests/src/Interop/ICastable/Castable.csproj b/tests/src/Interop/ICastable/Castable.csproj index 874e35d566..7c96d7e533 100644 --- a/tests/src/Interop/ICastable/Castable.csproj +++ b/tests/src/Interop/ICastable/Castable.csproj @@ -16,7 +16,7 @@ <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp> <DefineConstants>$(DefineConstants);STATIC</DefineConstants> - <ReferenceLocalMscorlib>true</ReferenceLocalMscorlib> + <ReferenceSystemPrivateCoreLib>true</ReferenceSystemPrivateCoreLib> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> diff --git a/tests/src/Interop/NativeCallable/NativeCallableTest.cs b/tests/src/Interop/NativeCallable/NativeCallableTest.cs index 0dcc184b4a..c0b057b7ef 100644 --- a/tests/src/Interop/NativeCallable/NativeCallableTest.cs +++ b/tests/src/Interop/NativeCallable/NativeCallableTest.cs @@ -10,6 +10,8 @@ using System.Reflection.Emit; using System.Runtime.InteropServices; using System.Threading; +using Console = Internal.Console; + public class Program { public static class NativeMethods diff --git a/tests/src/Interop/NativeCallable/NativeCallableTest.csproj b/tests/src/Interop/NativeCallable/NativeCallableTest.csproj index a4e9018cfc..f9fb3ddec0 100644 --- a/tests/src/Interop/NativeCallable/NativeCallableTest.csproj +++ b/tests/src/Interop/NativeCallable/NativeCallableTest.csproj @@ -15,7 +15,7 @@ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir> <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp> <DefineConstants>$(DefineConstants);STATIC</DefineConstants> - <ReferenceLocalMscorlib>true</ReferenceLocalMscorlib> + <ReferenceSystemPrivateCoreLib>true</ReferenceSystemPrivateCoreLib> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |