├── .appveyor.yml ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── .vsts-pipelines └── builds │ ├── ci-internal.yml │ └── ci-public.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── FileSystem.sln ├── LICENSE.txt ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── shared └── EmptyDisposable.cs ├── src ├── Directory.Build.props ├── FS.Abstractions │ ├── FS.Abstractions.csproj │ ├── IDirectoryContents.cs │ ├── IFileInfo.cs │ ├── IFileProvider.cs │ ├── NotFoundDirectoryContents.cs │ ├── NotFoundFileInfo.cs │ ├── NullChangeToken.cs │ ├── NullFileProvider.cs │ └── baseline.netcore.json ├── FS.Composite │ ├── CompositeDirectoryContents.cs │ ├── CompositeFileProvider.cs │ ├── FS.Composite.csproj │ └── baseline.netcore.json ├── FS.Embedded.Manifest.Task │ ├── EmbeddedItem.cs │ ├── Entry.cs │ ├── FS.Embedded.Manifest.Task.csproj │ ├── GenerateEmbeddedResourcesManifest.cs │ └── Manifest.cs ├── FS.Embedded │ ├── EmbeddedFileProvider.cs │ ├── EmbeddedResourceFileInfo.cs │ ├── EnumerableDirectoryContents.cs │ ├── FS.Embedded.csproj │ ├── FS.Embedded.nuspec │ ├── Manifest │ │ ├── EmbeddedFilesManifest.cs │ │ ├── ManifestDirectory.cs │ │ ├── ManifestDirectoryContents.cs │ │ ├── ManifestDirectoryInfo.cs │ │ ├── ManifestEntry.cs │ │ ├── ManifestFile.cs │ │ ├── ManifestFileInfo.cs │ │ ├── ManifestParser.cs │ │ ├── ManifestRootDirectory.cs │ │ └── ManifestSinkDirectory.cs │ ├── ManifestEmbeddedFileProvider.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── baseline.netcore.json │ ├── build │ │ └── netstandard2.0 │ │ │ ├── Microsoft.Extensions.FileProviders.Embedded.props │ │ │ └── Microsoft.Extensions.FileProviders.Embedded.targets │ └── buildMultiTargeting │ │ ├── Microsoft.Extensions.FileProviders.Embedded.props │ │ └── Microsoft.Extensions.FileProviders.Embedded.targets ├── FS.Globbing │ ├── Abstractions │ │ ├── DirectoryInfoBase.cs │ │ ├── DirectoryInfoWrapper.cs │ │ ├── FileInfoBase.cs │ │ ├── FileInfoWrapper.cs │ │ └── FileSystemInfoBase.cs │ ├── FS.Globbing.csproj │ ├── FilePatternMatch.cs │ ├── InMemoryDirectoryInfo.cs │ ├── Internal │ │ ├── ILinearPattern.cs │ │ ├── IPathSegment.cs │ │ ├── IPattern.cs │ │ ├── IPatternContext.cs │ │ ├── IRaggedPattern.cs │ │ ├── InMemoryFileInfo.cs │ │ ├── MatcherContext.cs │ │ ├── PathSegments │ │ │ ├── CurrentPathSegment.cs │ │ │ ├── LiteralPathSegment.cs │ │ │ ├── ParentPathSegment.cs │ │ │ ├── RecursiveWildcardSegment.cs │ │ │ └── WildcardPathSegment.cs │ │ ├── PatternContexts │ │ │ ├── PatternContext.cs │ │ │ ├── PatternContextLinear.cs │ │ │ ├── PatternContextLinearExclude.cs │ │ │ ├── PatternContextLinearInclude.cs │ │ │ ├── PatternContextRagged.cs │ │ │ ├── PatternContextRaggedExclude.cs │ │ │ └── PatternContextRaggedInclude.cs │ │ ├── PatternTestResult.cs │ │ └── Patterns │ │ │ └── PatternBuilder.cs │ ├── Matcher.cs │ ├── MatcherExtensions.cs │ ├── PatternMatchingResult.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Util │ │ └── StringComparisonHelper.cs │ └── baseline.netcore.json └── FS.Physical │ ├── ExclusionFilters.cs │ ├── FS.Physical.csproj │ ├── IPollingChangeToken.cs │ ├── Internal │ ├── Clock.cs │ ├── FileSystemInfoHelper.cs │ ├── IClock.cs │ ├── PathUtils.cs │ └── PhysicalDirectoryContents.cs │ ├── PhysicalDirectoryInfo.cs │ ├── PhysicalFileInfo.cs │ ├── PhysicalFileProvider.cs │ ├── PhysicalFilesWatcher.cs │ ├── PollingFileChangeToken.cs │ ├── PollingWildCardChangeToken.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── baseline.netcore.json ├── test ├── Directory.Build.props ├── FS.Composite.Tests │ ├── CompositeFileProviderTests.cs │ ├── FS.Composite.Tests.csproj │ ├── MockChangeToken.cs │ ├── MockDisposable.cs │ ├── MockFileInfo.cs │ └── MockFileProvider.cs ├── FS.Embedded.Manifest.Task.Test │ ├── FS.Embedded.Manifest.Task.Test.csproj │ ├── GenerateEmbeddedResourcesManifestTest.cs │ └── SetExtensions.cs ├── FS.Embedded.Tests │ ├── EmbeddedFileProviderTests.cs │ ├── FS.Embedded.Tests.csproj │ ├── File.txt │ ├── FileInfoComparer.cs │ ├── Manifest │ │ ├── EmbeddedFilesManifestTests.cs │ │ ├── ManifestEntryTests.cs │ │ ├── ManifestParserTests.cs │ │ └── TestEntry.cs │ ├── ManifestEmbeddedFileProviderTests.cs │ ├── Resources │ │ ├── File.txt │ │ └── ResourcesInSubdirectory │ │ │ └── File3.txt │ ├── TestAssembly.cs │ ├── TestFileInfo.cs │ └── sub │ │ ├── File2.txt │ │ └── dir │ │ └── File3.txt ├── FS.Globbing.Tests │ ├── FS.Globbing.Tests.csproj │ ├── FileAbstractionsTests.cs │ ├── FunctionalTests.cs │ ├── PatternContexts │ │ ├── PatternContextLinearTests.cs │ │ └── PatternContextRaggedTests.cs │ ├── PatternMatchingTests.cs │ ├── PatternSegments │ │ ├── CurrentPathSegmentTests.cs │ │ ├── LiteralPathSegmentTests.cs │ │ ├── ParentPathSegmentTests.cs │ │ ├── RecursiveWildcardSegmentTests.cs │ │ └── WildcardPathSegmentTests.cs │ ├── Patterns │ │ └── PatternTests.cs │ └── TestUtility │ │ ├── DisposableFileSystem.cs │ │ ├── FileSystemGlobbingTestContext.cs │ │ ├── FileSystemOperationRecorder.cs │ │ ├── MockDirectoryInfo.cs │ │ ├── MockFileInfoStub.cs │ │ ├── MockLinearPatternBuilder.cs │ │ ├── MockNonRecursivePathSegment.cs │ │ ├── MockRaggedPatternBuilder.cs │ │ ├── MockRecursivePathSegment.cs │ │ └── PatternContextHelper.cs └── FS.Physical.Tests │ ├── DisposableFileSystem.cs │ ├── ExclusionFilterTests.cs │ ├── FS.Physical.Tests.csproj │ ├── MockFileSystemWatcher.cs │ ├── PhysicalFileProviderTests.cs │ ├── PhysicalFilesWatcherTests.cs │ ├── PollingWildCardChangeTokenTest.cs │ └── TestClock.cs └── version.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/.vsts-pipelines/builds/ci-internal.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/.vsts-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /FileSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/FileSystem.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGetPackageVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/NuGetPackageVerifier.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/README.md -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/korebuild-lock.txt -------------------------------------------------------------------------------- /korebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/korebuild.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/run.cmd -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/run.sh -------------------------------------------------------------------------------- /shared/EmptyDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/shared/EmptyDisposable.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/FS.Abstractions/FS.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/FS.Abstractions.csproj -------------------------------------------------------------------------------- /src/FS.Abstractions/IDirectoryContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/IDirectoryContents.cs -------------------------------------------------------------------------------- /src/FS.Abstractions/IFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/IFileInfo.cs -------------------------------------------------------------------------------- /src/FS.Abstractions/IFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/IFileProvider.cs -------------------------------------------------------------------------------- /src/FS.Abstractions/NotFoundDirectoryContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/NotFoundDirectoryContents.cs -------------------------------------------------------------------------------- /src/FS.Abstractions/NotFoundFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/NotFoundFileInfo.cs -------------------------------------------------------------------------------- /src/FS.Abstractions/NullChangeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/NullChangeToken.cs -------------------------------------------------------------------------------- /src/FS.Abstractions/NullFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/NullFileProvider.cs -------------------------------------------------------------------------------- /src/FS.Abstractions/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Abstractions/baseline.netcore.json -------------------------------------------------------------------------------- /src/FS.Composite/CompositeDirectoryContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Composite/CompositeDirectoryContents.cs -------------------------------------------------------------------------------- /src/FS.Composite/CompositeFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Composite/CompositeFileProvider.cs -------------------------------------------------------------------------------- /src/FS.Composite/FS.Composite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Composite/FS.Composite.csproj -------------------------------------------------------------------------------- /src/FS.Composite/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Composite/baseline.netcore.json -------------------------------------------------------------------------------- /src/FS.Embedded.Manifest.Task/EmbeddedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded.Manifest.Task/EmbeddedItem.cs -------------------------------------------------------------------------------- /src/FS.Embedded.Manifest.Task/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded.Manifest.Task/Entry.cs -------------------------------------------------------------------------------- /src/FS.Embedded.Manifest.Task/FS.Embedded.Manifest.Task.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded.Manifest.Task/FS.Embedded.Manifest.Task.csproj -------------------------------------------------------------------------------- /src/FS.Embedded.Manifest.Task/GenerateEmbeddedResourcesManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded.Manifest.Task/GenerateEmbeddedResourcesManifest.cs -------------------------------------------------------------------------------- /src/FS.Embedded.Manifest.Task/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded.Manifest.Task/Manifest.cs -------------------------------------------------------------------------------- /src/FS.Embedded/EmbeddedFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/EmbeddedFileProvider.cs -------------------------------------------------------------------------------- /src/FS.Embedded/EmbeddedResourceFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/EmbeddedResourceFileInfo.cs -------------------------------------------------------------------------------- /src/FS.Embedded/EnumerableDirectoryContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/EnumerableDirectoryContents.cs -------------------------------------------------------------------------------- /src/FS.Embedded/FS.Embedded.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/FS.Embedded.csproj -------------------------------------------------------------------------------- /src/FS.Embedded/FS.Embedded.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/FS.Embedded.nuspec -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/EmbeddedFilesManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/EmbeddedFilesManifest.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestDirectory.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestDirectoryContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestDirectoryContents.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestDirectoryInfo.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestEntry.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestFile.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestFileInfo.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestParser.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestRootDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestRootDirectory.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Manifest/ManifestSinkDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Manifest/ManifestSinkDirectory.cs -------------------------------------------------------------------------------- /src/FS.Embedded/ManifestEmbeddedFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/ManifestEmbeddedFileProvider.cs -------------------------------------------------------------------------------- /src/FS.Embedded/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FS.Embedded/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/baseline.netcore.json -------------------------------------------------------------------------------- /src/FS.Embedded/build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props -------------------------------------------------------------------------------- /src/FS.Embedded/build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets -------------------------------------------------------------------------------- /src/FS.Embedded/buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props -------------------------------------------------------------------------------- /src/FS.Embedded/buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Embedded/buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets -------------------------------------------------------------------------------- /src/FS.Globbing/Abstractions/DirectoryInfoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Abstractions/DirectoryInfoBase.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Abstractions/DirectoryInfoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Abstractions/DirectoryInfoWrapper.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Abstractions/FileInfoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Abstractions/FileInfoBase.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Abstractions/FileInfoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Abstractions/FileInfoWrapper.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Abstractions/FileSystemInfoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Abstractions/FileSystemInfoBase.cs -------------------------------------------------------------------------------- /src/FS.Globbing/FS.Globbing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/FS.Globbing.csproj -------------------------------------------------------------------------------- /src/FS.Globbing/FilePatternMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/FilePatternMatch.cs -------------------------------------------------------------------------------- /src/FS.Globbing/InMemoryDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/InMemoryDirectoryInfo.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/ILinearPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/ILinearPattern.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/IPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/IPathSegment.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/IPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/IPattern.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/IPatternContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/IPatternContext.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/IRaggedPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/IRaggedPattern.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/InMemoryFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/InMemoryFileInfo.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/MatcherContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/MatcherContext.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PathSegments/CurrentPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PathSegments/CurrentPathSegment.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PathSegments/LiteralPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PathSegments/LiteralPathSegment.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PathSegments/ParentPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PathSegments/ParentPathSegment.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PathSegments/RecursiveWildcardSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PathSegments/RecursiveWildcardSegment.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PathSegments/WildcardPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PathSegments/WildcardPathSegment.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternContexts/PatternContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternContexts/PatternContext.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternContexts/PatternContextLinear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternContexts/PatternContextLinear.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternContexts/PatternContextLinearExclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternContexts/PatternContextLinearExclude.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternContexts/PatternContextLinearInclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternContexts/PatternContextLinearInclude.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternContexts/PatternContextRagged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternContexts/PatternContextRagged.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternContexts/PatternContextRaggedExclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternContexts/PatternContextRaggedExclude.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternContexts/PatternContextRaggedInclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternContexts/PatternContextRaggedInclude.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/PatternTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/PatternTestResult.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Internal/Patterns/PatternBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Internal/Patterns/PatternBuilder.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Matcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Matcher.cs -------------------------------------------------------------------------------- /src/FS.Globbing/MatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/MatcherExtensions.cs -------------------------------------------------------------------------------- /src/FS.Globbing/PatternMatchingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/PatternMatchingResult.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FS.Globbing/Util/StringComparisonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/Util/StringComparisonHelper.cs -------------------------------------------------------------------------------- /src/FS.Globbing/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Globbing/baseline.netcore.json -------------------------------------------------------------------------------- /src/FS.Physical/ExclusionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/ExclusionFilters.cs -------------------------------------------------------------------------------- /src/FS.Physical/FS.Physical.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/FS.Physical.csproj -------------------------------------------------------------------------------- /src/FS.Physical/IPollingChangeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/IPollingChangeToken.cs -------------------------------------------------------------------------------- /src/FS.Physical/Internal/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/Internal/Clock.cs -------------------------------------------------------------------------------- /src/FS.Physical/Internal/FileSystemInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/Internal/FileSystemInfoHelper.cs -------------------------------------------------------------------------------- /src/FS.Physical/Internal/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/Internal/IClock.cs -------------------------------------------------------------------------------- /src/FS.Physical/Internal/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/Internal/PathUtils.cs -------------------------------------------------------------------------------- /src/FS.Physical/Internal/PhysicalDirectoryContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/Internal/PhysicalDirectoryContents.cs -------------------------------------------------------------------------------- /src/FS.Physical/PhysicalDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/PhysicalDirectoryInfo.cs -------------------------------------------------------------------------------- /src/FS.Physical/PhysicalFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/PhysicalFileInfo.cs -------------------------------------------------------------------------------- /src/FS.Physical/PhysicalFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/PhysicalFileProvider.cs -------------------------------------------------------------------------------- /src/FS.Physical/PhysicalFilesWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/PhysicalFilesWatcher.cs -------------------------------------------------------------------------------- /src/FS.Physical/PollingFileChangeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/PollingFileChangeToken.cs -------------------------------------------------------------------------------- /src/FS.Physical/PollingWildCardChangeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/PollingWildCardChangeToken.cs -------------------------------------------------------------------------------- /src/FS.Physical/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FS.Physical/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/src/FS.Physical/baseline.netcore.json -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/FS.Composite.Tests/CompositeFileProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Composite.Tests/CompositeFileProviderTests.cs -------------------------------------------------------------------------------- /test/FS.Composite.Tests/FS.Composite.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Composite.Tests/FS.Composite.Tests.csproj -------------------------------------------------------------------------------- /test/FS.Composite.Tests/MockChangeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Composite.Tests/MockChangeToken.cs -------------------------------------------------------------------------------- /test/FS.Composite.Tests/MockDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Composite.Tests/MockDisposable.cs -------------------------------------------------------------------------------- /test/FS.Composite.Tests/MockFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Composite.Tests/MockFileInfo.cs -------------------------------------------------------------------------------- /test/FS.Composite.Tests/MockFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Composite.Tests/MockFileProvider.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Manifest.Task.Test/FS.Embedded.Manifest.Task.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Manifest.Task.Test/FS.Embedded.Manifest.Task.Test.csproj -------------------------------------------------------------------------------- /test/FS.Embedded.Manifest.Task.Test/GenerateEmbeddedResourcesManifestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Manifest.Task.Test/GenerateEmbeddedResourcesManifestTest.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Manifest.Task.Test/SetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Manifest.Task.Test/SetExtensions.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/EmbeddedFileProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/EmbeddedFileProviderTests.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/FS.Embedded.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/FS.Embedded.Tests.csproj -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/File.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/FileInfoComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/FileInfoComparer.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/Manifest/EmbeddedFilesManifestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/Manifest/EmbeddedFilesManifestTests.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/Manifest/ManifestEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/Manifest/ManifestEntryTests.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/Manifest/ManifestParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/Manifest/ManifestParserTests.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/Manifest/TestEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/Manifest/TestEntry.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/ManifestEmbeddedFileProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/ManifestEmbeddedFileProviderTests.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/Resources/File.txt: -------------------------------------------------------------------------------- 1 | Resources-Hello -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/Resources/ResourcesInSubdirectory/File3.txt: -------------------------------------------------------------------------------- 1 | Hello3 2 | -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/TestAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/TestAssembly.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/TestFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/TestFileInfo.cs -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/sub/File2.txt: -------------------------------------------------------------------------------- 1 | Hello2 2 | -------------------------------------------------------------------------------- /test/FS.Embedded.Tests/sub/dir/File3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Embedded.Tests/sub/dir/File3.txt -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/FS.Globbing.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/FS.Globbing.Tests.csproj -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/FileAbstractionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/FileAbstractionsTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/FunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/FunctionalTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternContexts/PatternContextLinearTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternContexts/PatternContextLinearTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternContexts/PatternContextRaggedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternContexts/PatternContextRaggedTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternMatchingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternMatchingTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternSegments/CurrentPathSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternSegments/CurrentPathSegmentTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternSegments/LiteralPathSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternSegments/LiteralPathSegmentTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternSegments/ParentPathSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternSegments/ParentPathSegmentTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternSegments/RecursiveWildcardSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternSegments/RecursiveWildcardSegmentTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/PatternSegments/WildcardPathSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/PatternSegments/WildcardPathSegmentTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/Patterns/PatternTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/Patterns/PatternTests.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/DisposableFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/DisposableFileSystem.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/FileSystemGlobbingTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/FileSystemGlobbingTestContext.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/FileSystemOperationRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/FileSystemOperationRecorder.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/MockDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/MockDirectoryInfo.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/MockFileInfoStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/MockFileInfoStub.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/MockLinearPatternBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/MockLinearPatternBuilder.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/MockNonRecursivePathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/MockNonRecursivePathSegment.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/MockRaggedPatternBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/MockRaggedPatternBuilder.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/MockRecursivePathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/MockRecursivePathSegment.cs -------------------------------------------------------------------------------- /test/FS.Globbing.Tests/TestUtility/PatternContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Globbing.Tests/TestUtility/PatternContextHelper.cs -------------------------------------------------------------------------------- /test/FS.Physical.Tests/DisposableFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/DisposableFileSystem.cs -------------------------------------------------------------------------------- /test/FS.Physical.Tests/ExclusionFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/ExclusionFilterTests.cs -------------------------------------------------------------------------------- /test/FS.Physical.Tests/FS.Physical.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/FS.Physical.Tests.csproj -------------------------------------------------------------------------------- /test/FS.Physical.Tests/MockFileSystemWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/MockFileSystemWatcher.cs -------------------------------------------------------------------------------- /test/FS.Physical.Tests/PhysicalFileProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/PhysicalFileProviderTests.cs -------------------------------------------------------------------------------- /test/FS.Physical.Tests/PhysicalFilesWatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/PhysicalFilesWatcherTests.cs -------------------------------------------------------------------------------- /test/FS.Physical.Tests/PollingWildCardChangeTokenTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/PollingWildCardChangeTokenTest.cs -------------------------------------------------------------------------------- /test/FS.Physical.Tests/TestClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/test/FS.Physical.Tests/TestClock.cs -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/FileSystem/HEAD/version.props --------------------------------------------------------------------------------