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:
authorJeremy Kuhne <jeremy.kuhne@microsoft.com>2018-02-06 02:28:14 +0300
committerGitHub <noreply@github.com>2018-02-06 02:28:14 +0300
commit66ada723c1b0ae9062a0e7b0b28862014b985019 (patch)
tree213ff5181f3399b1204f95394120da9d7d3e7034 /src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
parent4adbec49e0bed722d17b1c1f1ee4cbc2124f0937 (diff)
File enumeration extensibility (#26806)
* Windows file enumeration extensibility This is the Windows implementation of System.IO.Enumeration. It adds new find options to existing APIs and a public extensibilty model for richer, low allocation file system enumeration. The Unix implementation is in progress. * Initial naive Unix implementation of FileSystemEnumerator * Move a netcoreapp test to the right group * Fix WinRT build. * Address feedback from @danmosemsft * Remove inline attribute * Remove IsNameDotOrDotDot property * Address futher feedback. * Remove unreferenced common code
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.csproj7
1 files changed, 7 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 b6637446b0..c4ed74a5e8 100644
--- a/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
+++ b/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
@@ -53,6 +53,10 @@
<Compile Include="File\ReadWriteAllBytesAsync.cs" />
<Compile Include="File\ReadWriteAllTextAsync.cs" />
<Compile Include="FileStream\ReadWriteSpan.netcoreapp.cs" />
+ <Compile Include="Enumeration\ConstructionTests.netcoreapp.cs" />
+ <Compile Include="Enumeration\SpecialDirectoryTests.netcoreapp.cs" />
+ <Compile Include="Enumeration\SkipAttributeTests.netcoreapp.cs" />
+ <Compile Include="Enumeration\DosMatcherTests.netcoreapp.cs" />
</ItemGroup>
<ItemGroup>
<!-- Rewritten -->
@@ -181,5 +185,8 @@
<ItemGroup>
<EmbeddedResource Include="Resources\$(AssemblyName).rd.xml" />
</ItemGroup>
+ <ItemGroup>
+ <Folder Include="Matchers\" />
+ </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file