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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFaizur Rahman <shrah@microsoft.com>2017-10-03 06:33:59 +0300
committerJan Kotas <jkotas@microsoft.com>2017-10-03 07:05:31 +0300
commitb8ab95eca18a4159a91832306304703c8bb064d5 (patch)
tree525ff92ef21cf0c9bc560f42263b4e1c90355254
parent0e24120b6ae36d17909370a9c15a53249af7f49c (diff)
Fix Unix build break
-rw-r--r--src/System.Private.Interop/src/System.Private.Interop.CoreCLR.csproj11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/System.Private.Interop/src/System.Private.Interop.CoreCLR.csproj b/src/System.Private.Interop/src/System.Private.Interop.CoreCLR.csproj
index 00dd7abc5..13ef51e9c 100644
--- a/src/System.Private.Interop/src/System.Private.Interop.CoreCLR.csproj
+++ b/src/System.Private.Interop/src/System.Private.Interop.CoreCLR.csproj
@@ -49,17 +49,20 @@
<Compile Include="InteropExtensions\PreInitializedAttribute.cs" />
<Compile Include="InteropExtensions\PInvokeMarshal.cs" />
<Compile Include="Interop\Interop.PlatformNotSupported.cs" />
- <Compile Include="Interop\Interop.WinRT.cs" />
- <Compile Include="Interop\Interop.WinRT.Basic.cs" />
- <Compile Condition="'$(TargetsWindows)' == 'true'" Include="System\Runtime\InteropServices\Variant.cs" />
<Compile Include="..\..\Common\src\System\Runtime\InteropServices\McgPInvokeData.cs">
<Link>System\Runtime\InteropServices\McgPInvokeData.cs</Link>
</Compile>
<Compile Include="..\..\Common\src\System\Runtime\InteropServices\McgGeneratedNativeCallCodeAttribute.cs">
<Link>System\Runtime\InteropServices\McgGeneratedNativeCallCodeAttribute.cs</Link>
</Compile>
- </ItemGroup>
+ </ItemGroup>
+ <ItemGroup Condition="'$(TargetsWindows)' == 'true'">
+ <Compile Include="Interop\Interop.WinRT.cs" />
+ <Compile Include="Interop\Interop.WinRT.Basic.cs" />
+ <Compile Include="System\Runtime\InteropServices\Variant.cs" />
+ </ItemGroup>
+
<ItemGroup>
<Compile Include="System\Reflection\DispatchProxy.cs" />
<Compile Include="System\Reflection\DispatchProxyEntry.cs" />