├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── lib └── Mono.Posix.dll ├── nuspec ├── Platform.VirtualFileSystem.DataFile │ ├── Platform.VirtualFileSystem.DataFile.nuspec │ └── content │ │ ├── app.config.transform │ │ └── web.config.transform ├── Platform.VirtualFileSystem.Providers.Zip │ └── Platform.VirtualFileSystem.Providers.Zip.nuspec └── Platform.VirtualFileSystem │ ├── Platform.VirtualFileSystem.nuspec │ └── content │ ├── App.config.transform │ └── Web.config.transform ├── src ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── Platform.Network.ExtensibleServer │ ├── AnyRunLevel.cs │ ├── AssemblyInfo.cs │ ├── CommandServer │ │ ├── Command.cs │ │ ├── CommandBuildException.cs │ │ ├── CommandBuilder.cs │ │ ├── CommandBuilderFactory.cs │ │ ├── CommandConnection.cs │ │ ├── CommandNetworkServer.cs │ │ ├── CommandNotSupportedException.cs │ │ ├── CommandProcessor.cs │ │ ├── CommandProcessorProvider.cs │ │ ├── CommandProcessorProviderFactory.cs │ │ ├── ITextConnection.cs │ │ ├── TextCommand.cs │ │ ├── TextCommandBuilder.cs │ │ ├── TextCommandProcessor.cs │ │ ├── TextCommandProcessorProvider.cs │ │ └── TextCommandSpecificationAttribute.cs │ ├── Connection.cs │ ├── ConnectionFactory.cs │ ├── DisconnectedRunLevel.cs │ ├── NetworkServer.cs │ ├── NormalRunLevel.cs │ ├── NullRunLevel.cs │ ├── Platform.Network.ExtensibleServer.csproj │ └── RunLevel.cs ├── Platform.VirtualFileSystem.DataFile │ ├── DataFile.cs │ ├── DataFileLoadFlags.cs │ ├── DataFileNodeType.cs │ ├── DataFileResolutionFilter.cs │ ├── IDataFileLoaderSaver.cs │ ├── IObjectWithGeneratedDefaults.cs │ ├── Platform.VirtualFileSystem.DataFile.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── XmlDocumentFileLoaderSaver.cs │ └── XmlObjectFileLoaderSaver.cs ├── Platform.VirtualFileSystem.Multimedia │ ├── AbstractMediaFile.cs │ ├── CompositeMediaFileFactory.cs │ ├── ConfigurationSection.cs │ ├── IMediaFile.cs │ ├── ISoundFile.cs │ ├── IVideoFile.cs │ ├── MediaFileFactory.cs │ ├── MediaFileMonitor.cs │ ├── MediaFileNodeResolutionFilter.cs │ ├── MediaFileNodeType.cs │ ├── MediaFileType.cs │ ├── MultimediaException.cs │ ├── Platform.VirtualFileSystem.Multimedia.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VolumeFader.cs │ ├── VolumeFaderNodeServiceProvider.cs │ ├── VolumeFaderService.cs │ ├── VolumeFaderServiceType.cs │ └── VolumeLevel.cs ├── Platform.VirtualFileSystem.Network.Server │ ├── Configuration.cs │ ├── Platform.VirtualFileSystem.Network.Server.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TextBasedServer.cs │ └── packages.config ├── Platform.VirtualFileSystem.Network.Text.Server │ ├── AdhocEncryptionCommandProcessor.cs │ ├── AttributesCommands.cs │ ├── ClaimCommandProcessor.cs │ ├── CommandLineError.cs │ ├── CommandOptionAttribute.cs │ ├── CommandOptionChoicesAttribute.cs │ ├── CommandOptionsSerializer.cs │ ├── CommandOptionsSerializerEventArgs.cs │ ├── ComputeHashCommandProcessor.cs │ ├── CopyCommandProcessor.cs │ ├── CreateCommandProcessor.cs │ ├── CreateHardLinkCommandProcessor.cs │ ├── DeleteCommandProcessor.cs │ ├── DisconnectedException.cs │ ├── DownloadCommandProcessor.cs │ ├── DownloadRunLevel.cs │ ├── DownloadTicket.cs │ ├── ExitCommandProcessor.cs │ ├── FileSystemCommandConnection.cs │ ├── FileSystemNetworkServer.cs │ ├── FileSystemServerException.cs │ ├── FileSystemTextCommandProcessor.cs │ ├── FileSystemTextCommandProcessorWithOptions.cs │ ├── GetAttributesCommandProcessor.cs │ ├── GetLengthCommandProcessor.cs │ ├── GetPositionCommandProcessor.cs │ ├── HandshakeRunLevel.cs │ ├── ListCommandProcessor.cs │ ├── ListCommandsCommandProcessor.cs │ ├── LoginCommandProcessor.cs │ ├── MoveCommandProcessor.cs │ ├── NOOPCommandProcessor.cs │ ├── OldListCommandProcessor.cs │ ├── OptionsSerializer.cs │ ├── Platform.VirtualFileSystem.Network.Text.Server.csproj │ ├── PrintBinaryCommandProcessor.cs │ ├── PrintCommandProcessor.cs │ ├── ProcessNextCommandException.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProtocolReadLog.cs │ ├── ProtocolTrafficLog.cs │ ├── ProtocolWriteLog.cs │ ├── QuitCommandProcessor.cs │ ├── RandomAccessCommandProcessor.cs │ ├── RandomAccessGetLengthCommandProcessor.cs │ ├── RandomAccessRunLevel.cs │ ├── ReadCommandProcessor.cs │ ├── SeekCommandProcessor.cs │ ├── ServerStatsCommandProcessor.cs │ ├── SetAttributesCommandProcessor.cs │ ├── SetLengthCommandProcessor.cs │ ├── SetPositionCommandProcessor.cs │ ├── TextCommandProcessorProvider.cs │ ├── Ticket.cs │ ├── WriteCommandProcessor.cs │ └── packages.config ├── Platform.VirtualFileSystem.Network.Text │ ├── CommandResponse.cs │ ├── InteractiveDeflatorOutputStream.cs │ ├── InteractiveInflaterInputStream.cs │ ├── Platform.VirtualFileSystem.Network.Text.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Protocol │ │ ├── ErrorCodes.cs │ │ ├── ProtocolTypes.cs │ │ ├── RemoteVirtualFileSystemException.cs │ │ ├── ResponseCodes.cs │ │ ├── TextNetworkProtocol.cs │ │ └── TextNetworkProtocolException.cs │ ├── TextNetworkFileSystemClient.cs │ ├── TextRandomAccessNetworkFileSystemStream.cs │ └── packages.config ├── Platform.VirtualFileSystem.Network │ ├── Client │ │ ├── AbstractNetworkFileSystemClient.cs │ │ └── INetworkFileSystemClient.cs │ ├── INetworkFileSystemClient.cs │ ├── NetworkDirectory.cs │ ├── NetworkDirectoryHashingService.cs │ ├── NetworkFile.cs │ ├── NetworkFileHashingService.cs │ ├── NetworkFileSystem.cs │ ├── NetworkFileSystemEntry.cs │ ├── NetworkFileSystemManager.cs │ ├── NetworkNode.cs │ ├── NetworkNodeAddress.cs │ ├── NetworkNodeAndFileAttributes.cs │ ├── NetworkNodeProvider.cs │ ├── NetworkStreamHashingService.cs │ ├── Platform.VirtualFileSystem.Network.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Protocol │ │ ├── ErrorCode.cs │ │ ├── ProtocolTypes.cs │ │ └── RemoteVirtualFileSystemException.cs │ ├── Server │ │ └── INetworkFileSystemServer.cs │ └── packages.config ├── Platform.VirtualFileSystem.Providers.Zip │ ├── ConfigurationSection.cs │ ├── ConfigurationSectionHandler.cs │ ├── GlobalSuppressions.cs │ ├── IZipNode.cs │ ├── Platform.VirtualFileSystem.Providers.Zip.csproj │ ├── Platform.VirtualFileSystem.Providers.Zip.wdx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StreamDataSource.cs │ ├── ZipDirectory.cs │ ├── ZipDirectoryInfo.cs │ ├── ZipFile.cs │ ├── ZipFileAttributes.cs │ ├── ZipFileInfo.cs │ ├── ZipFileStream.cs │ ├── ZipFileSystem.cs │ ├── ZipNodeAttributes.cs │ ├── ZipNodeInfo.cs │ ├── ZipNodeProvider.cs │ └── packages.config ├── Platform.VirtualFileSystem.sln ├── Platform.VirtualFileSystem │ ├── AbstractFileSystemManager.cs │ ├── AbstractResolver.cs │ ├── AbstractService.cs │ ├── AccessPermissionVerifier.cs │ ├── AccessPermissionVerifierConfigurationEntry.cs │ ├── AccessVerificationContext.cs │ ├── AddressScope.cs │ ├── AddressScopeValidationException.cs │ ├── AttributeChangeDeterminer.cs │ ├── Attributes.cs │ ├── ConfigurationSection.cs │ ├── ConfigurationSectionHandler.cs │ ├── CoreNodeServicesProvider.cs │ ├── DefaultFileSystemManager.cs │ ├── DefaultNodeCache.cs │ ├── DefaultNodeOperationFilter.cs │ ├── DelegatingResolver.cs │ ├── DirectoryHashingServiceType.cs │ ├── DirectoryNodeNotFoundException.cs │ ├── DirectoryRefreshMask.cs │ ├── FileAttributes.cs │ ├── FileComparingFlags.cs │ ├── FileComparingServiceType.cs │ ├── FileHashingServiceType.cs │ ├── FileNodeNotFoundException.cs │ ├── FileSystemAccessType.cs │ ├── FileSystemActivity.cs │ ├── FileSystemEventArgs.cs │ ├── FileSystemExtenders.cs │ ├── FileSystemManager.cs │ ├── FileSystemOptions.cs │ ├── FileSystemRenamedActivityEventArgs.cs │ ├── FileSystemSecuredOperation.cs │ ├── FileSystemSecurityContext.cs │ ├── FileSystemSecurityException.cs │ ├── FileSystemSecurityManager.cs │ ├── FileSystemVariablesCollection.cs │ ├── FileTransferServiceEventArgs.cs │ ├── FileTransferServiceType.cs │ ├── HashingServiceType.cs │ ├── IAttributesMap.cs │ ├── IDirectory.cs │ ├── IDirectoryHashingService.cs │ ├── IFile.cs │ ├── IFileAttributes.cs │ ├── IFileComparingService.cs │ ├── IFileDetails.cs │ ├── IFileHashingService.cs │ ├── IFileSystem.cs │ ├── IFileSystemManager.cs │ ├── IFileTransferService.cs │ ├── IHashingService.cs │ ├── ILockingService.cs │ ├── IMutableNodeAttributes.cs │ ├── INativePathService.cs │ ├── INode.cs │ ├── INodeAdapter.cs │ ├── INodeAddress.cs │ ├── INodeAttributes.cs │ ├── INodeAttributesUpdateContext.cs │ ├── INodeCache.cs │ ├── INodeCacheKeyProvider.cs │ ├── INodeContent.cs │ ├── INodeCopyingService.cs │ ├── INodeDeletingService.cs │ ├── INodeMovingService.cs │ ├── INodeOperationFilter.cs │ ├── INodeOperator.cs │ ├── INodeProvider.cs │ ├── INodeResolutionFilter.cs │ ├── INodeService.cs │ ├── INodeServiceProvider.cs │ ├── INodeTaskService.cs │ ├── INodeTaskServiceWithTarget.cs │ ├── INodeTransformationFilter.cs │ ├── IResolver.cs │ ├── IRunnableNodeService.cs │ ├── IRunnableNodeServiceWithTarget.cs │ ├── IRunnableService.cs │ ├── IService.cs │ ├── IStreamHashingService.cs │ ├── ITaskService.cs │ ├── ITempIdentityFileService.cs │ ├── ITransactionService.cs │ ├── JumpPointEventArgs.cs │ ├── MalformedUriException.cs │ ├── MissingNodeResolver.cs │ ├── MultipleTaskServicesService.cs │ ├── NameScope.cs │ ├── NodeAttributes.cs │ ├── NodeCopyingMovingServiceType.cs │ ├── NodeCopyingServiceType.cs │ ├── NodeDeletingServiceType.cs │ ├── NodeEventHandler.cs │ ├── NodeExtensions.cs │ ├── NodeFilters.cs │ ├── NodeMovingServiceType.cs │ ├── NodeNameAndTypeComparer.cs │ ├── NodeNotFoundException.cs │ ├── NodeType.cs │ ├── NodeTypeNotSupportedException.cs │ ├── NullNodeCache.cs │ ├── OldStandardFileTransferService.cs │ ├── PathKeyedNodeCache.cs │ ├── Platform.VirtualFileSystem.csproj │ ├── Platform.VirtualFileSystem.wdx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── AbstractDirectory.cs │ │ ├── AbstractDirectoryHashingService.cs │ │ ├── AbstractFile.cs │ │ ├── AbstractFileDetails.cs │ │ ├── AbstractFileHashingService.cs │ │ ├── AbstractFileSystem.cs │ │ ├── AbstractHashingService.cs │ │ ├── AbstractMultiFileSystemNodeProvider.cs │ │ ├── AbstractNode.cs │ │ ├── AbstractNodeAddress.cs │ │ ├── AbstractNodeAddressWithRootPart.cs │ │ ├── AbstractNodeAttributes.cs │ │ ├── AbstractNodeContent.cs │ │ ├── AbstractNodeDetails.cs │ │ ├── AbstractNodeProvider.cs │ │ ├── AbstractNodeResolutionFilter.cs │ │ ├── AbstractNodeService.cs │ │ ├── AbstractNodeTransformationFilter.cs │ │ ├── AbstractResolver.cs │ │ ├── AbstractRunnableService.cs │ │ ├── AbstractService.cs │ │ ├── AbstractStreamHashingService.cs │ │ ├── AbstractTypeBasedFileAttributes.cs │ │ ├── AbstractTypeBasedNodeAttributes.cs │ │ ├── AutoRefreshingNodeAttributes.cs │ │ ├── AutoRefreshingNodeDetails.cs │ │ ├── BasicNodeAddress.cs │ │ ├── DefaultFileDetails.cs │ │ ├── DefaultNodeDetails.cs │ │ ├── DictionaryBasedNodeAttributes.cs │ │ ├── DirectoryConsultationWrapper.cs │ │ ├── DirectoryDelegationWrapper.cs │ │ ├── FileDetailsWrapper.cs │ │ ├── FileWrapper.cs │ │ ├── GenericNodeAddress.cs │ │ ├── IRunnableService.cs │ │ ├── Imaginary │ │ │ ├── ImaginaryDirectory.cs │ │ │ ├── ImaginaryFile.cs │ │ │ ├── ImaginaryFileSystem.cs │ │ │ ├── ImaginaryMemoryFile.cs │ │ │ └── ImaginaryNodeProvider.cs │ │ ├── JumpPointDirectory.cs │ │ ├── JumpPointFile.cs │ │ ├── JumpPointResolver.cs │ │ ├── LayeredNodeAddress.cs │ │ ├── Local │ │ │ ├── LocalDirectory.cs │ │ │ ├── LocalFile.cs │ │ │ ├── LocalFileAttributes.cs │ │ │ ├── LocalFileDetails.cs │ │ │ ├── LocalFileSystem.cs │ │ │ ├── LocalFileSystemEventArgs.cs │ │ │ ├── LocalNodeAddress.cs │ │ │ ├── LocalNodeAttributes.cs │ │ │ ├── LocalNodeDetails.cs │ │ │ ├── LocalNodeProvider.cs │ │ │ ├── Native.cs │ │ │ ├── NativeManaged.cs │ │ │ ├── NativePosix.cs │ │ │ └── NativeWin32.cs │ │ ├── MyComputer │ │ │ └── MyComputerNodeProvider.cs │ │ ├── NodeAddressWrapper.cs │ │ ├── NodeAttributeAttribute.cs │ │ ├── NodeAttributesWrapper.cs │ │ ├── NodeBackedFileDeleterService.cs │ │ ├── NodeConsultationWrapper.cs │ │ ├── NodeContentWrapper.cs │ │ ├── NodeDelegationWrapper.cs │ │ ├── NodeDetailsWrapper.cs │ │ ├── NodeProviderConfiguration.cs │ │ ├── NodeToFileAttributes.cs │ │ ├── Overlayed │ │ │ ├── OverlayedDirectory.cs │ │ │ ├── OverlayedFile.cs │ │ │ ├── OverlayedFileSystem.cs │ │ │ ├── OverlayedNodeContent.cs │ │ │ └── OverlayedNodeProvider.cs │ │ ├── Shadow │ │ │ ├── ShadowFile.cs │ │ │ ├── ShadowNodeContent.cs │ │ │ ├── ShadowNodeProvider.cs │ │ │ └── ShadowNodeResolutionFilter.cs │ │ ├── StandardDirectoryHashingService.cs │ │ ├── StandardFileComparingService.cs │ │ ├── StandardFileCopyingService.cs │ │ ├── StandardFileHashingService.cs │ │ ├── StandardFileMovingService.cs │ │ ├── StandardFileTransferService.cs │ │ ├── StandardNodeAttributesUpdateContext.cs │ │ ├── StandardNodeDecorator.cs │ │ ├── StandardStreamHashingService.cs │ │ ├── SystemInfo │ │ │ ├── EnvironmentVariablesDirectory.cs │ │ │ └── SystemInfoNodeProvider.cs │ │ ├── Temp │ │ │ ├── TempNodeProvider.cs │ │ │ └── _svn │ │ │ │ ├── README.txt │ │ │ │ ├── dir-prop-base │ │ │ │ ├── dir-props │ │ │ │ ├── empty-file │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ ├── prop-base │ │ │ │ └── TempNodeProvider.cs.svn-base │ │ │ │ ├── props │ │ │ │ └── TempNodeProvider.cs.svn-work │ │ │ │ └── text-base │ │ │ │ └── TempNodeProvider.cs.svn-base │ │ ├── View │ │ │ ├── ViewDirectory.cs │ │ │ ├── ViewFile.cs │ │ │ ├── ViewFileSystem.cs │ │ │ ├── ViewNodeAddress.cs │ │ │ ├── ViewNodeProvider.cs │ │ │ └── ViewResolver.cs │ │ ├── Web │ │ │ ├── WebDirectory.cs │ │ │ ├── WebFile.cs │ │ │ ├── WebFileSystem.cs │ │ │ ├── WebNodeAttributes.cs │ │ │ ├── WebNodeDetails.cs │ │ │ └── WebNodeProvider.cs │ │ └── standardnodeaddress.cs │ ├── RegexBasedNodePredicateHelper.cs │ ├── RetryNodeOperationFilter.cs │ ├── ServiceType.cs │ ├── StandardFileSystemManager.cs │ ├── StandardHashingService.cs │ ├── StandardTempIdentityFileService.cs │ ├── StreamHashingServiceType.cs │ ├── TempIdentityFileNodeResolutionFilter.cs │ ├── TempIdentityFileServiceType.cs │ ├── TooManyLinksException.cs │ ├── WeakReferenceBasedNodeCache.cs │ └── packages.config └── nuget.config └── tests └── Platform.VirtualFileSystem.Tests ├── AttributesTests.cs ├── BasicTests.cs ├── ComputeHashTests.cs ├── DataFileTests.cs ├── ImaginaryFileSystemTests.cs ├── JumpPointTests.cs ├── LocalNodeAddressTests.cs ├── MyComputerTests.cs ├── NetworkServerTests.cs ├── OperationFilter.cs ├── OverlayedFileSystemTests.cs ├── Platform.Collections.wdx ├── Platform.VirtualFileSystem.Tests.csproj ├── Platform.VirtualFileSystem.Tests.wdx ├── Properties └── AssemblyInfo.cs ├── SecurityTests.cs ├── SetUpClass.cs ├── TestAlternateStreams.cs ├── TestFiles ├── DataFile1.xml ├── Directory1 │ ├── A.txt │ ├── B.txt │ ├── SubDirectory1 │ │ └── A.csv │ └── SubDirectory2 │ │ ├── A.csv │ │ └── B.csv ├── Directory2 │ ├── C.txt │ └── SubDirectory1 │ │ └── A.csv ├── Temp │ └── Temp.txt ├── TestWalkZipDir.zip ├── TextFile1.txt └── TextFile2.txt ├── TestsBase.cs ├── TransferServiceTests.cs ├── WebFileSystemTests.cs ├── ZipFileSystemTests.cs ├── app.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/README.md -------------------------------------------------------------------------------- /lib/Mono.Posix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/lib/Mono.Posix.dll -------------------------------------------------------------------------------- /nuspec/Platform.VirtualFileSystem.DataFile/Platform.VirtualFileSystem.DataFile.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/nuspec/Platform.VirtualFileSystem.DataFile/Platform.VirtualFileSystem.DataFile.nuspec -------------------------------------------------------------------------------- /nuspec/Platform.VirtualFileSystem.DataFile/content/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/nuspec/Platform.VirtualFileSystem.DataFile/content/app.config.transform -------------------------------------------------------------------------------- /nuspec/Platform.VirtualFileSystem.DataFile/content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/nuspec/Platform.VirtualFileSystem.DataFile/content/web.config.transform -------------------------------------------------------------------------------- /nuspec/Platform.VirtualFileSystem.Providers.Zip/Platform.VirtualFileSystem.Providers.Zip.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/nuspec/Platform.VirtualFileSystem.Providers.Zip/Platform.VirtualFileSystem.Providers.Zip.nuspec -------------------------------------------------------------------------------- /nuspec/Platform.VirtualFileSystem/Platform.VirtualFileSystem.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/nuspec/Platform.VirtualFileSystem/Platform.VirtualFileSystem.nuspec -------------------------------------------------------------------------------- /nuspec/Platform.VirtualFileSystem/content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/nuspec/Platform.VirtualFileSystem/content/App.config.transform -------------------------------------------------------------------------------- /nuspec/Platform.VirtualFileSystem/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/nuspec/Platform.VirtualFileSystem/content/Web.config.transform -------------------------------------------------------------------------------- /src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/AnyRunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/AnyRunLevel.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/Command.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandBuildException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandBuildException.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandBuilder.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandBuilderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandBuilderFactory.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandConnection.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandNetworkServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandNetworkServer.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandNotSupportedException.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandProcessorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandProcessorProvider.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/CommandProcessorProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/CommandProcessorProviderFactory.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/ITextConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/ITextConnection.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/TextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/TextCommand.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/TextCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/TextCommandBuilder.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/TextCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/TextCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/TextCommandProcessorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/TextCommandProcessorProvider.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/CommandServer/TextCommandSpecificationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/CommandServer/TextCommandSpecificationAttribute.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/Connection.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/ConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/ConnectionFactory.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/DisconnectedRunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/DisconnectedRunLevel.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/NetworkServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/NetworkServer.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/NormalRunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/NormalRunLevel.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/NullRunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/NullRunLevel.cs -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/Platform.Network.ExtensibleServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/Platform.Network.ExtensibleServer.csproj -------------------------------------------------------------------------------- /src/Platform.Network.ExtensibleServer/RunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.Network.ExtensibleServer/RunLevel.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/DataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/DataFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/DataFileLoadFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/DataFileLoadFlags.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/DataFileNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/DataFileNodeType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/DataFileResolutionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/DataFileResolutionFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/IDataFileLoaderSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/IDataFileLoaderSaver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/IObjectWithGeneratedDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/IObjectWithGeneratedDefaults.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/Platform.VirtualFileSystem.DataFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/Platform.VirtualFileSystem.DataFile.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/XmlDocumentFileLoaderSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/XmlDocumentFileLoaderSaver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.DataFile/XmlObjectFileLoaderSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.DataFile/XmlObjectFileLoaderSaver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/AbstractMediaFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/AbstractMediaFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/CompositeMediaFileFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/CompositeMediaFileFactory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/ConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/ConfigurationSection.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/IMediaFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/IMediaFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/ISoundFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/ISoundFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/IVideoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/IVideoFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/MediaFileFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/MediaFileFactory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/MediaFileMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/MediaFileMonitor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/MediaFileNodeResolutionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/MediaFileNodeResolutionFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/MediaFileNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/MediaFileNodeType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/MediaFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/MediaFileType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/MultimediaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/MultimediaException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/Platform.VirtualFileSystem.Multimedia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/Platform.VirtualFileSystem.Multimedia.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/VolumeFader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/VolumeFader.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/VolumeFaderNodeServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/VolumeFaderNodeServiceProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/VolumeFaderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/VolumeFaderService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/VolumeFaderServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/VolumeFaderServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Multimedia/VolumeLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Multimedia/VolumeLevel.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Server/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Server/Configuration.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Server/Platform.VirtualFileSystem.Network.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Server/Platform.VirtualFileSystem.Network.Server.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Server/TextBasedServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Server/TextBasedServer.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Server/packages.config -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/AdhocEncryptionCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/AdhocEncryptionCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/AttributesCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/AttributesCommands.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ClaimCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ClaimCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CommandLineError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CommandLineError.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionAttribute.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionChoicesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionChoicesAttribute.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionsSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionsSerializer.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionsSerializerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CommandOptionsSerializerEventArgs.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ComputeHashCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ComputeHashCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CopyCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CopyCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CreateCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CreateCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/CreateHardLinkCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/CreateHardLinkCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/DeleteCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/DeleteCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/DisconnectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/DisconnectedException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/DownloadCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/DownloadCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/DownloadRunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/DownloadRunLevel.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/DownloadTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/DownloadTicket.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ExitCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ExitCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemCommandConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemCommandConnection.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemNetworkServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemNetworkServer.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemServerException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemTextCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemTextCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemTextCommandProcessorWithOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/FileSystemTextCommandProcessorWithOptions.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/GetAttributesCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/GetAttributesCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/GetLengthCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/GetLengthCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/GetPositionCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/GetPositionCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/HandshakeRunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/HandshakeRunLevel.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ListCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ListCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ListCommandsCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ListCommandsCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/LoginCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/LoginCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/MoveCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/MoveCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/NOOPCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/NOOPCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/OldListCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/OldListCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/OptionsSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/OptionsSerializer.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/Platform.VirtualFileSystem.Network.Text.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/Platform.VirtualFileSystem.Network.Text.Server.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/PrintBinaryCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/PrintBinaryCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/PrintCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/PrintCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ProcessNextCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ProcessNextCommandException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ProtocolReadLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ProtocolReadLog.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ProtocolTrafficLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ProtocolTrafficLog.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ProtocolWriteLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ProtocolWriteLog.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/QuitCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/QuitCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/RandomAccessCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/RandomAccessCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/RandomAccessGetLengthCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/RandomAccessGetLengthCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/RandomAccessRunLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/RandomAccessRunLevel.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ReadCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ReadCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/SeekCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/SeekCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/ServerStatsCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/ServerStatsCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/SetAttributesCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/SetAttributesCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/SetLengthCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/SetLengthCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/SetPositionCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/SetPositionCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/TextCommandProcessorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/TextCommandProcessorProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/Ticket.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/WriteCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/WriteCommandProcessor.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text.Server/packages.config -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/CommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/CommandResponse.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/InteractiveDeflatorOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/InteractiveDeflatorOutputStream.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/InteractiveInflaterInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/InteractiveInflaterInputStream.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Platform.VirtualFileSystem.Network.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Platform.VirtualFileSystem.Network.Text.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Protocol/ErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Protocol/ErrorCodes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Protocol/ProtocolTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Protocol/ProtocolTypes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Protocol/RemoteVirtualFileSystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Protocol/RemoteVirtualFileSystemException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Protocol/ResponseCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Protocol/ResponseCodes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Protocol/TextNetworkProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Protocol/TextNetworkProtocol.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/Protocol/TextNetworkProtocolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/Protocol/TextNetworkProtocolException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/TextNetworkFileSystemClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/TextNetworkFileSystemClient.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/TextRandomAccessNetworkFileSystemStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/TextRandomAccessNetworkFileSystemStream.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network.Text/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network.Text/packages.config -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Client/AbstractNetworkFileSystemClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Client/AbstractNetworkFileSystemClient.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Client/INetworkFileSystemClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Client/INetworkFileSystemClient.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/INetworkFileSystemClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/INetworkFileSystemClient.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkDirectoryHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkDirectoryHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkFileHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkFileHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkFileSystemEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkFileSystemEntry.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkFileSystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkFileSystemManager.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkNode.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkNodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkNodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkNodeAndFileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkNodeAndFileAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/NetworkStreamHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/NetworkStreamHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Platform.VirtualFileSystem.Network.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Platform.VirtualFileSystem.Network.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Protocol/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Protocol/ErrorCode.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Protocol/ProtocolTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Protocol/ProtocolTypes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Protocol/RemoteVirtualFileSystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Protocol/RemoteVirtualFileSystemException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/Server/INetworkFileSystemServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/Server/INetworkFileSystemServer.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Network/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Network/packages.config -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ConfigurationSection.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ConfigurationSectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ConfigurationSectionHandler.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/IZipNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/IZipNode.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/Platform.VirtualFileSystem.Providers.Zip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/Platform.VirtualFileSystem.Providers.Zip.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/Platform.VirtualFileSystem.Providers.Zip.wdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/Platform.VirtualFileSystem.Providers.Zip.wdx -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/StreamDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/StreamDataSource.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipDirectoryInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipFileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipFileAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipFileInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipFileStream.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipNodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipNodeInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/ZipNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/ZipNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.Providers.Zip/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.Providers.Zip/packages.config -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem.sln -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AbstractFileSystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AbstractFileSystemManager.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AbstractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AbstractResolver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AbstractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AbstractService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AccessPermissionVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AccessPermissionVerifier.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AccessPermissionVerifierConfigurationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AccessPermissionVerifierConfigurationEntry.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AccessVerificationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AccessVerificationContext.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AddressScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AddressScope.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AddressScopeValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AddressScopeValidationException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/AttributeChangeDeterminer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/AttributeChangeDeterminer.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Attributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/ConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/ConfigurationSection.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/ConfigurationSectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/ConfigurationSectionHandler.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/CoreNodeServicesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/CoreNodeServicesProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/DefaultFileSystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/DefaultFileSystemManager.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/DefaultNodeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/DefaultNodeCache.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/DefaultNodeOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/DefaultNodeOperationFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/DelegatingResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/DelegatingResolver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/DirectoryHashingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/DirectoryHashingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/DirectoryNodeNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/DirectoryNodeNotFoundException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/DirectoryRefreshMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/DirectoryRefreshMask.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileComparingFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileComparingFlags.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileComparingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileComparingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileHashingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileHashingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileNodeNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileNodeNotFoundException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemAccessType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemAccessType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemActivity.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemEventArgs.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemExtenders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemExtenders.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemManager.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemOptions.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemRenamedActivityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemRenamedActivityEventArgs.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemSecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemSecuredOperation.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemSecurityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemSecurityContext.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemSecurityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemSecurityException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemSecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemSecurityManager.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileSystemVariablesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileSystemVariablesCollection.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileTransferServiceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileTransferServiceEventArgs.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/FileTransferServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/FileTransferServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/HashingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/HashingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IAttributesMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IAttributesMap.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IDirectoryHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IDirectoryHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFileAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFileComparingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFileComparingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFileDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFileDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFileHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFileHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFileSystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFileSystemManager.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IFileTransferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IFileTransferService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/ILockingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/ILockingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IMutableNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IMutableNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INativePathService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INativePathService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INode.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeAdapter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeAttributesUpdateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeAttributesUpdateContext.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeCache.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeCacheKeyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeCacheKeyProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeContent.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeCopyingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeCopyingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeDeletingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeDeletingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeMovingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeMovingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeOperationFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeOperator.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeResolutionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeResolutionFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeServiceProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeTaskService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeTaskServiceWithTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeTaskServiceWithTarget.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/INodeTransformationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/INodeTransformationFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IResolver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IRunnableNodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IRunnableNodeService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IRunnableNodeServiceWithTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IRunnableNodeServiceWithTarget.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IRunnableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IRunnableService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/IStreamHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/IStreamHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/ITaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/ITaskService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/ITempIdentityFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/ITempIdentityFileService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/ITransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/ITransactionService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/JumpPointEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/JumpPointEventArgs.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/MalformedUriException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/MalformedUriException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/MissingNodeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/MissingNodeResolver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/MultipleTaskServicesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/MultipleTaskServicesService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NameScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NameScope.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeCopyingMovingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeCopyingMovingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeCopyingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeCopyingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeDeletingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeDeletingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeEventHandler.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeExtensions.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeFilters.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeMovingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeMovingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeNameAndTypeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeNameAndTypeComparer.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeNotFoundException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NodeTypeNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NodeTypeNotSupportedException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/NullNodeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/NullNodeCache.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/OldStandardFileTransferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/OldStandardFileTransferService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/PathKeyedNodeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/PathKeyedNodeCache.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Platform.VirtualFileSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Platform.VirtualFileSystem.csproj -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Platform.VirtualFileSystem.wdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Platform.VirtualFileSystem.wdx -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractDirectoryHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractDirectoryHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractFileDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractFileDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractFileHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractFileHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractMultiFileSystemNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractMultiFileSystemNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNode.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeAddressWithRootPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeAddressWithRootPart.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeContent.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeResolutionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeResolutionFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractNodeTransformationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractNodeTransformationFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractResolver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractRunnableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractRunnableService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractStreamHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractStreamHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractTypeBasedFileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractTypeBasedFileAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AbstractTypeBasedNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AbstractTypeBasedNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AutoRefreshingNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AutoRefreshingNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/AutoRefreshingNodeDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/AutoRefreshingNodeDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/BasicNodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/BasicNodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/DefaultFileDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/DefaultFileDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/DefaultNodeDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/DefaultNodeDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/DictionaryBasedNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/DictionaryBasedNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/DirectoryConsultationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/DirectoryConsultationWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/DirectoryDelegationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/DirectoryDelegationWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/FileDetailsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/FileDetailsWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/FileWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/FileWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/GenericNodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/GenericNodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/IRunnableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/IRunnableService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryMemoryFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryMemoryFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Imaginary/ImaginaryNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/JumpPointDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/JumpPointDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/JumpPointFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/JumpPointFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/JumpPointResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/JumpPointResolver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/LayeredNodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/LayeredNodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalFileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalFileAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalFileDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalFileDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalFileSystemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalFileSystemEventArgs.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalNodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalNodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalNodeDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalNodeDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/LocalNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/LocalNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/Native.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/NativeManaged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/NativeManaged.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/NativePosix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/NativePosix.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Local/NativeWin32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Local/NativeWin32.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/MyComputer/MyComputerNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/MyComputer/MyComputerNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeAddressWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeAddressWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeAttributeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeAttributeAttribute.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeAttributesWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeAttributesWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeBackedFileDeleterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeBackedFileDeleterService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeConsultationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeConsultationWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeContentWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeContentWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeDelegationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeDelegationWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeDetailsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeDetailsWrapper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeProviderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeProviderConfiguration.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/NodeToFileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/NodeToFileAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedNodeContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedNodeContent.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Overlayed/OverlayedNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Shadow/ShadowFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Shadow/ShadowFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Shadow/ShadowNodeContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Shadow/ShadowNodeContent.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Shadow/ShadowNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Shadow/ShadowNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Shadow/ShadowNodeResolutionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Shadow/ShadowNodeResolutionFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardDirectoryHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardDirectoryHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardFileComparingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardFileComparingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardFileCopyingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardFileCopyingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardFileHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardFileHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardFileMovingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardFileMovingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardFileTransferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardFileTransferService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardNodeAttributesUpdateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardNodeAttributesUpdateContext.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardNodeDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardNodeDecorator.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/StandardStreamHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/StandardStreamHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/SystemInfo/EnvironmentVariablesDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/SystemInfo/EnvironmentVariablesDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/SystemInfo/SystemInfoNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/SystemInfo/SystemInfoNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/TempNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Temp/TempNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Temp/_svn/README.txt -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 10 2 | svn:ignore 3 | V 18 4 | obj 5 | bin 6 | Thumbs.db 7 | 8 | END 9 | -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/dir-props: -------------------------------------------------------------------------------- 1 | K 10 2 | svn:ignore 3 | V 18 4 | obj 5 | bin 6 | Thumbs.db 7 | 8 | END 9 | -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/empty-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Temp/_svn/entries -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/format: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/prop-base/TempNodeProvider.cs.svn-base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/props/TempNodeProvider.cs.svn-work: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Temp/_svn/text-base/TempNodeProvider.cs.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Temp/_svn/text-base/TempNodeProvider.cs.svn-base -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/View/ViewDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/View/ViewDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/View/ViewFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/View/ViewFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/View/ViewFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/View/ViewFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/View/ViewNodeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/View/ViewNodeAddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/View/ViewNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/View/ViewNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/View/ViewResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/View/ViewResolver.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Web/WebDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Web/WebDirectory.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Web/WebFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Web/WebFile.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Web/WebFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Web/WebFileSystem.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Web/WebNodeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Web/WebNodeAttributes.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Web/WebNodeDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Web/WebNodeDetails.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/Web/WebNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/Web/WebNodeProvider.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/Providers/standardnodeaddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/Providers/standardnodeaddress.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/RegexBasedNodePredicateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/RegexBasedNodePredicateHelper.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/RetryNodeOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/RetryNodeOperationFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/ServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/ServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/StandardFileSystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/StandardFileSystemManager.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/StandardHashingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/StandardHashingService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/StandardTempIdentityFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/StandardTempIdentityFileService.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/StreamHashingServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/StreamHashingServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/TempIdentityFileNodeResolutionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/TempIdentityFileNodeResolutionFilter.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/TempIdentityFileServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/TempIdentityFileServiceType.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/TooManyLinksException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/TooManyLinksException.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/WeakReferenceBasedNodeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/WeakReferenceBasedNodeCache.cs -------------------------------------------------------------------------------- /src/Platform.VirtualFileSystem/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/Platform.VirtualFileSystem/packages.config -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/src/nuget.config -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/AttributesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/AttributesTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/BasicTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/ComputeHashTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/ComputeHashTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/DataFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/DataFileTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/ImaginaryFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/ImaginaryFileSystemTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/JumpPointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/JumpPointTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/LocalNodeAddressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/LocalNodeAddressTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/MyComputerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/MyComputerTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/NetworkServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/NetworkServerTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/OperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/OperationFilter.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/OverlayedFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/OverlayedFileSystemTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/Platform.Collections.wdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/Platform.Collections.wdx -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/Platform.VirtualFileSystem.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/Platform.VirtualFileSystem.Tests.csproj -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/Platform.VirtualFileSystem.Tests.wdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/Platform.VirtualFileSystem.Tests.wdx -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/SecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/SecurityTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/SetUpClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/SetUpClass.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestAlternateStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/TestAlternateStreams.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/DataFile1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/TestFiles/DataFile1.xml -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Directory1/A.txt: -------------------------------------------------------------------------------- 1 | A.txt -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Directory1/B.txt: -------------------------------------------------------------------------------- 1 | B.txt -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Directory1/SubDirectory1/A.csv: -------------------------------------------------------------------------------- 1 | A.csv -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Directory1/SubDirectory2/A.csv: -------------------------------------------------------------------------------- 1 | A.csv -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Directory1/SubDirectory2/B.csv: -------------------------------------------------------------------------------- 1 | B.csv -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Directory2/C.txt: -------------------------------------------------------------------------------- 1 | C.txt -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Directory2/SubDirectory1/A.csv: -------------------------------------------------------------------------------- 1 | A.csv(2) -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/Temp/Temp.txt: -------------------------------------------------------------------------------- 1 | Temp.txt -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/TestWalkZipDir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/TestFiles/TestWalkZipDir.zip -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/TextFile1.txt: -------------------------------------------------------------------------------- 1 | TextFile1.txt -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestFiles/TextFile2.txt: -------------------------------------------------------------------------------- 1 | TextFile2.txt -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/TestsBase.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/TransferServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/TransferServiceTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/WebFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/WebFileSystemTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/ZipFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/ZipFileSystemTests.cs -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/app.config -------------------------------------------------------------------------------- /tests/Platform.VirtualFileSystem.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformdotnet/Platform.VirtualFileSystem/HEAD/tests/Platform.VirtualFileSystem.Tests/packages.config --------------------------------------------------------------------------------