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:
authorAlex Ghiondea <ghiondea.alexandru@microsoft.com>2015-12-02 00:46:33 +0300
committerJan Kotas <jkotas@microsoft.com>2015-12-02 01:13:17 +0300
commit9287f362cd75512a92d735630c363ccc44120677 (patch)
treebf8c85cb86b510770a0a334c62954547702833ef /src/System.Private.CoreLib
parent1c0405707ef848c1a485ef0fa63452e4e12305ed (diff)
Port System.Private.DeveloperExperience.Console to CoreRT
[tfs-changeset: 1553090]
Diffstat (limited to 'src/System.Private.CoreLib')
-rw-r--r--src/System.Private.CoreLib/src/System.Private.CoreLib.csproj5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/src/System.Private.CoreLib.csproj b/src/System.Private.CoreLib/src/System.Private.CoreLib.csproj
index 64a2f5d87..02370513c 100644
--- a/src/System.Private.CoreLib/src/System.Private.CoreLib.csproj
+++ b/src/System.Private.CoreLib/src/System.Private.CoreLib.csproj
@@ -480,7 +480,7 @@
</ItemGroup>
<!-- Windows is default build -->
- <ItemGroup Condition="'$(OSGroup)' == 'Windows_NT'">
+ <ItemGroup Condition="'$(TargetsWindows)'=='true'">
<Compile Include="System\Globalization\CultureInfo.Win32.cs" />
<Compile Include="System\Globalization\CompareInfo.Win32.cs" />
<Compile Include="System\Globalization\CultureData.Win32.cs" />
@@ -492,7 +492,7 @@
<Compile Include="..\..\Common\src\Interop\Windows\mincore\Interop.Environment.cs" />
</ItemGroup>
- <ItemGroup Condition="'$(OSGroup)' != 'Windows_NT'">
+ <ItemGroup Condition="'$(TargetsUnix)'=='true'">
<Compile Include="System\Globalization\CultureInfo.Dummy.cs" />
<Compile Include="System\Globalization\CompareInfo.Dummy.cs" />
<Compile Include="System\Globalization\CultureData.Dummy.cs" />
@@ -500,6 +500,7 @@
<Compile Include="System\Globalization\CalendarData.Dummy.cs" />
<Compile Include="System\Environment.EnvironmentVariables.Unix.cs" />
<Compile Include="..\..\Common\src\Interop\Unix\System.Private.CoreLib.Native\Interop.Environment.cs" />
+ <Compile Include="..\..\Common\src\Interop\Unix\System.Private.CoreLib.Native\Interop.Libraries.cs" />
<Compile Include="..\..\Common\src\Interop\Unix\System.Private.CoreLib.Native\Interop.StringHelper.cs" />
</ItemGroup>