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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Perovich <alperovi@microsoft.com>2017-04-14 03:53:04 +0300
committerAlex Perovich <alperovi@microsoft.com>2017-04-14 03:53:04 +0300
commit518e739ee935bb00b375b757330f74368957ad90 (patch)
tree6002460c6f91013ba81560fa70c48ab9d079b0b1 /src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
parent7f601f5637bfbef8a9297b00a26139183df6fb41 (diff)
Fix S.IO.FileSystem tests running on uapaot
Diffstat (limited to 'src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj')
-rw-r--r--src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj b/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
index f69a7df2bc..7749fa5fbe 100644
--- a/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
+++ b/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
@@ -30,6 +30,12 @@
<Link>Common\System\Runtime\Serialization\Formatters\BinaryFormatterHelpers.cs</Link>
</Compile>
</ItemGroup>
+ <ItemGroup Condition="'$(TargetsUnix)' == 'true'">
+ <Compile Include="FileSystemTest.Unix.cs" />
+ </ItemGroup>
+ <ItemGroup Condition="'$(TargetsWindows)' == 'true'">
+ <Compile Include="FileSystemTest.Windows.cs" />
+ </ItemGroup>
<ItemGroup Condition="'$(TargetGroup)' == 'netcoreapp'">
<Compile Include="File\AppendAsync.cs" />
<Compile Include="File\ReadWriteAllLinesAsync.cs" />