Fix build break in P1 tests (dotnet/coreclr#19975)
authorVitek Karas <vitek.karas@microsoft.com>
Sat, 15 Sep 2018 04:18:21 +0000 (21:18 -0700)
committerJarret Shook <jashoo@microsoft.com>
Sat, 15 Sep 2018 04:18:21 +0000 (21:18 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/799508eb77045482d1e2bf13c6696c6b248de0b6

src/coreclr/tests/src/Interop/NativeCallable/NativeCallableTest.cs
src/coreclr/tests/src/Interop/NativeCallable/NativeCallableTest.csproj
src/coreclr/tests/src/Interop/PrimitiveMarshalling/UIntPtr/PInvokeUIntPtrTest.cs

index 5e18a39..49b670f 100644 (file)
@@ -9,7 +9,7 @@ using System.Reflection;
 using System.Reflection.Emit;
 using System.Runtime.InteropServices;
 using System.Threading;
-using CoreFXTestLibrary;
+using TestLibrary;
 
 using Console = Internal.Console;
 
index fd5c9db..689e124 100644 (file)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Interop.settings.targets))\Interop.settings.targets" />
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -31,7 +32,6 @@
   <ItemGroup>
     <!-- This is needed to make sure native binary gets installed in the right location -->
     <ProjectReference Include="CMakeLists.txt" />
-    <ProjectReference Include="..\..\..\Common\CoreCLRTestLibrary\CoreCLRTestLibrary.csproj" />
   </ItemGroup>
   <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
 </Project>
\ No newline at end of file
index 431ba14..184334b 100644 (file)
@@ -6,7 +6,7 @@ using System.Runtime.InteropServices;
 using System;
 using System.Reflection;
 using System.Text;
-using CoreFXTestLibrary;
+using TestLibrary;
 
 class Test
 {