├── .config └── dotnet-tools.json ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── .editorconfig ├── FUNDING.yml ├── actions │ └── publish-artifacts │ │ └── action.yaml ├── copilot-instructions.md ├── renovate.json ├── signfiles.txt └── workflows │ ├── build.yml │ ├── codeql.yml │ ├── copilot-setup-steps.yml │ ├── docs.yml │ ├── libtemplate-update.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.rsp ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── NOTICE ├── Nerdbank.Streams.slnx ├── README.md ├── SECURITY.md ├── azurepipelines-coverage.yml ├── docfx ├── .gitignore ├── docfx.json ├── docs │ ├── AsStream.md │ ├── BufferTextWriter.md │ ├── DuplexPipe.md │ ├── FullDuplexStream.md │ ├── MonitoringStream.md │ ├── MultiplexingStream.md │ ├── PrefixingBufferWriter.md │ ├── ReadBlockAsync.md │ ├── ReadSlice.md │ ├── Sequence.md │ ├── SequenceTextReader.md │ ├── SimplexStream.md │ ├── Substream.md │ ├── UsePipe.md │ ├── features.md │ ├── getting-started.md │ └── toc.yml ├── index.md └── toc.yml ├── ext └── .editorconfig ├── global.json ├── init.cmd ├── init.ps1 ├── nuget.config ├── release.snk ├── settings.VisualStudio.json ├── spec └── support │ └── jasmine.json ├── src ├── .editorconfig ├── AssemblyInfo.cs ├── AssemblyInfo.vb ├── Directory.Build.props ├── Directory.Build.targets ├── Nerdbank.Streams │ ├── .editorconfig │ ├── BufferTextWriter.cs │ ├── BufferWriterExtensions.cs │ ├── BufferWriterStream.cs │ ├── CompatibilitySuppressions.xml │ ├── DuplexPipe.cs │ ├── FullDuplexStream.cs │ ├── HalfDuplexStream.cs │ ├── MonitoringStream.cs │ ├── MultiplexingProtocolException.cs │ ├── MultiplexingStream.Channel.cs │ ├── MultiplexingStream.ChannelOfferEventArgs.cs │ ├── MultiplexingStream.ChannelOptions.cs │ ├── MultiplexingStream.ControlCode.cs │ ├── MultiplexingStream.Formatters.cs │ ├── MultiplexingStream.FrameHeader.cs │ ├── MultiplexingStream.Options.cs │ ├── MultiplexingStream.QualifiedChannelId.cs │ ├── MultiplexingStream.cs │ ├── Nerdbank.Streams.csproj │ ├── NestedPipeReader.cs │ ├── NestedStream.cs │ ├── PipeExtensions.cs │ ├── PipeReaderCompletionWatcher.cs │ ├── PipeWriterCompletionWatcher.cs │ ├── PrefixingBufferWriter`1.cs │ ├── README.md │ ├── ReadOnlySequenceExtensions.cs │ ├── ReadOnlySequenceStream.cs │ ├── SequenceReader.Search.cs │ ├── SequenceReader.cs │ ├── SequenceReaderExtensions.cs │ ├── SequenceTextReader.cs │ ├── Sequence`1.cs │ ├── SimplexStream.cs │ ├── SpanPolyfillExtensions.cs │ ├── StreamExtensions.cs │ ├── StreamPipeReader.cs │ ├── StreamPipeWriter.cs │ ├── Strings.Designer.cs │ ├── Strings.resx │ ├── Substream.cs │ ├── SubstreamReader.cs │ ├── ThrowHelper.cs │ ├── UnownedPipeReader.cs │ ├── Utilities.cs │ └── WebSocketStream.cs └── nerdbank-streams │ ├── .eslintrc.json │ ├── .gitignore │ ├── .jshintrc │ ├── .vscode │ ├── extensions.json │ ├── settings.json │ └── tasks.json │ ├── CONTRIBUTING.md │ ├── README.md │ ├── asyncprocess.ts │ ├── gulpfile.ts │ ├── gulpfile.tsconfig.json │ ├── jest.config.ts │ ├── nerdbank-streams.njsproj │ ├── package.json │ ├── src │ ├── AcceptanceParameters.ts │ ├── Channel.ts │ ├── ChannelOptions.ts │ ├── ControlCode.ts │ ├── Deferred.ts │ ├── FrameHeader.ts │ ├── FullDuplexStream.ts │ ├── IChannelOfferEventArgs.ts │ ├── IDisposableObservable.ts │ ├── MultiplexingStream.ts │ ├── MultiplexingStreamFormatters.ts │ ├── MultiplexingStreamOptions.ts │ ├── OfferParameters.ts │ ├── QualifiedChannelId.ts │ ├── Utilities.ts │ ├── index.ts │ └── tests │ │ ├── Deferred.spec.ts │ │ ├── FullDuplexStream.spec.ts │ │ ├── MultiplexingStream.Interop.spec.ts │ │ ├── MultiplexingStream.SeededChannels.spec.ts │ │ ├── MultiplexingStream.spec.ts │ │ ├── Substream.spec.ts │ │ ├── Timeout.ts │ │ └── jsonRpcStreams.ts │ ├── tsconfig.json │ └── yarn.lock ├── stylecop.json ├── test ├── .editorconfig ├── Directory.Build.props ├── Directory.Build.targets ├── IsolatedTestHost │ ├── ExitCodes.cs │ ├── IsolatedTestHost.csproj │ ├── IsolatedTestHost.ruleset │ ├── Program.cs │ └── TestOutputHelper.cs ├── NativeAOTCompatibility │ ├── NativeAOTCompatibility.csproj │ └── Program.cs ├── Nerdbank.Streams.Benchmark │ ├── BenchmarkConfig.cs │ ├── Nerdbank.Streams.Benchmark.csproj │ ├── Nerdbank.Streams.Benchmark.ruleset │ ├── Program.cs │ └── SequenceBenchmark.cs ├── Nerdbank.Streams.Interop.Tests │ ├── Nerdbank.Streams.Interop.Tests.csproj │ └── Program.cs └── Nerdbank.Streams.Tests │ ├── BufferTextWriterTests.cs │ ├── BufferWriterExtensionsTests.cs │ ├── BufferWriterStreamTests.cs │ ├── DuplexPipeTests.cs │ ├── FullDuplexStreamCombineTests.cs │ ├── FullDuplexStreamPairTests.cs │ ├── HalfDuplexStreamTests.cs │ ├── IOPipelinesStreamPipeReaderTests.cs │ ├── LanguageExtensions.cs │ ├── MockArrayPool`1.cs │ ├── MockInterruptedFullDuplexStream.cs │ ├── MockInterruptedWebSocket.cs │ ├── MockMemoryPool`1.cs │ ├── MockWebSocket.cs │ ├── MonitoringStreamTests.cs │ ├── MultiplexingProtocolExceptionTests.cs │ ├── MultiplexingStreamBasicTests.cs │ ├── MultiplexingStreamChannelOptionsTests.cs │ ├── MultiplexingStreamOptionsTests.cs │ ├── MultiplexingStreamPerfTests.cs │ ├── MultiplexingStreamSeededChannelTests.cs │ ├── MultiplexingStreamTests.cs │ ├── MultiplexingStreamV2Tests.cs │ ├── MultiplexingStreamV3Tests.cs │ ├── Nerdbank.Streams.Tests.csproj │ ├── NestedPipeReaderTests.cs │ ├── NestedStreamTests.cs │ ├── OneWayStreamWrapper.cs │ ├── PipeExtensionsTests.cs │ ├── PipeReaderCompletionWatcherTests.cs │ ├── PipeStreamTests.cs │ ├── PipeWriterCompletionWatcherTests.cs │ ├── PrefixingBufferWriterTests.cs │ ├── ProcessJobTracker.cs │ ├── ReadOnlySequenceExtensionsTests.cs │ ├── ReadOnlySequenceStreamTests.cs │ ├── SequenceReader │ ├── Advance.cs │ ├── BasicTests.cs │ ├── BinaryExtensions.cs │ ├── BufferSegment.cs │ ├── CopyTo.cs │ ├── IsNext.cs │ ├── NOTICE │ ├── OwnedArray.cs │ ├── ReadOnlySequenceFactory.byte.cs │ ├── ReadOnlySequenceFactory.char.cs │ ├── ReadTo.cs │ ├── Rewind.cs │ ├── SequenceFactory.cs │ ├── SequenceSegment.cs │ ├── SkipDelimiter.cs │ └── SpanLiteralExtensions.cs │ ├── SequenceTests.cs │ ├── SequenceTextReaderTests.cs │ ├── SimplexStreamTests.cs │ ├── StreamExtensionsTests.cs │ ├── StreamPipeReaderTestBase.cs │ ├── StreamPipeWriterTestBase.cs │ ├── StreamUsePipeReaderTests.cs │ ├── StreamUsePipeWriterTests.cs │ ├── StreamUseStrictPipeReaderTests.cs │ ├── StreamUseStrictPipeWriterTests.cs │ ├── SubstreamTests.cs │ ├── TestBase.cs │ ├── WebSocketStreamTests.cs │ ├── XunitTraceListener.cs │ └── xunit.runner.json ├── tools ├── Check-DotNetRuntime.ps1 ├── Check-DotNetSdk.ps1 ├── Get-3rdPartySymbolFiles.ps1 ├── Get-ArtifactsStagingDirectory.ps1 ├── Get-CodeCovTool.ps1 ├── Get-LibTemplateBasis.ps1 ├── Get-NuGetTool.ps1 ├── Get-ProcDump.ps1 ├── Get-SymbolFiles.ps1 ├── Get-TempToolsPath.ps1 ├── Install-DotNetSdk.ps1 ├── Install-NuGetCredProvider.ps1 ├── Install-NuGetPackage.ps1 ├── MergeFrom-Template.ps1 ├── Set-EnvVars.ps1 ├── artifacts │ ├── Variables.ps1 │ ├── _all.ps1 │ ├── _stage_all.ps1 │ ├── build_logs.ps1 │ ├── coverageResults.ps1 │ ├── deployables.ps1 │ ├── projectAssetsJson.ps1 │ ├── symbols.ps1 │ ├── testResults.ps1 │ └── test_symbols.ps1 ├── dotnet-test-cloud.ps1 ├── publish-CodeCov.ps1 ├── test.runsettings └── variables │ ├── DotNetSdkVersion.ps1 │ ├── _all.ps1 │ └── _define.ps1 └── version.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- 1 | [renovate.json*] 2 | indent_style = tab 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/publish-artifacts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/actions/publish-artifacts/action.yaml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/signfiles.txt: -------------------------------------------------------------------------------- 1 | **/Nerdbank.Streams.dll 2 | **/*.js 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/libtemplate-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/workflows/libtemplate-update.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/NOTICE -------------------------------------------------------------------------------- /Nerdbank.Streams.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/Nerdbank.Streams.slnx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azurepipelines-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/azurepipelines-coverage.yml -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | api/ 3 | -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/docs/AsStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/AsStream.md -------------------------------------------------------------------------------- /docfx/docs/BufferTextWriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/BufferTextWriter.md -------------------------------------------------------------------------------- /docfx/docs/DuplexPipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/DuplexPipe.md -------------------------------------------------------------------------------- /docfx/docs/FullDuplexStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/FullDuplexStream.md -------------------------------------------------------------------------------- /docfx/docs/MonitoringStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/MonitoringStream.md -------------------------------------------------------------------------------- /docfx/docs/MultiplexingStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/MultiplexingStream.md -------------------------------------------------------------------------------- /docfx/docs/PrefixingBufferWriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/PrefixingBufferWriter.md -------------------------------------------------------------------------------- /docfx/docs/ReadBlockAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/ReadBlockAsync.md -------------------------------------------------------------------------------- /docfx/docs/ReadSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/ReadSlice.md -------------------------------------------------------------------------------- /docfx/docs/Sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/Sequence.md -------------------------------------------------------------------------------- /docfx/docs/SequenceTextReader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/SequenceTextReader.md -------------------------------------------------------------------------------- /docfx/docs/SimplexStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/SimplexStream.md -------------------------------------------------------------------------------- /docfx/docs/Substream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/Substream.md -------------------------------------------------------------------------------- /docfx/docs/UsePipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/UsePipe.md -------------------------------------------------------------------------------- /docfx/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/features.md -------------------------------------------------------------------------------- /docfx/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/getting-started.md -------------------------------------------------------------------------------- /docfx/docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/docs/toc.yml -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /ext/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/ext/.editorconfig -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/global.json -------------------------------------------------------------------------------- /init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/init.cmd -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/init.ps1 -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/nuget.config -------------------------------------------------------------------------------- /release.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/release.snk -------------------------------------------------------------------------------- /settings.VisualStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/settings.VisualStudio.json -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Nerdbank.Streams/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/.editorconfig -------------------------------------------------------------------------------- /src/Nerdbank.Streams/BufferTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/BufferTextWriter.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/BufferWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/BufferWriterExtensions.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/BufferWriterStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/BufferWriterStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/CompatibilitySuppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/CompatibilitySuppressions.xml -------------------------------------------------------------------------------- /src/Nerdbank.Streams/DuplexPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/DuplexPipe.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/FullDuplexStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/FullDuplexStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/HalfDuplexStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/HalfDuplexStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MonitoringStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MonitoringStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingProtocolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingProtocolException.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.Channel.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.ChannelOfferEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.ChannelOfferEventArgs.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.ChannelOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.ChannelOptions.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.ControlCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.ControlCode.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.Formatters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.Formatters.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.FrameHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.FrameHeader.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.Options.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.QualifiedChannelId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.QualifiedChannelId.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/MultiplexingStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/MultiplexingStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/Nerdbank.Streams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/Nerdbank.Streams.csproj -------------------------------------------------------------------------------- /src/Nerdbank.Streams/NestedPipeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/NestedPipeReader.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/NestedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/NestedStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/PipeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/PipeExtensions.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/PipeReaderCompletionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/PipeReaderCompletionWatcher.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/PipeWriterCompletionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/PipeWriterCompletionWatcher.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/PrefixingBufferWriter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/PrefixingBufferWriter`1.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/README.md -------------------------------------------------------------------------------- /src/Nerdbank.Streams/ReadOnlySequenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/ReadOnlySequenceExtensions.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/ReadOnlySequenceStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/ReadOnlySequenceStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/SequenceReader.Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/SequenceReader.Search.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/SequenceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/SequenceReader.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/SequenceReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/SequenceReaderExtensions.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/SequenceTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/SequenceTextReader.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/Sequence`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/Sequence`1.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/SimplexStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/SimplexStream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/SpanPolyfillExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/SpanPolyfillExtensions.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/StreamExtensions.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/StreamPipeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/StreamPipeReader.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/StreamPipeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/StreamPipeWriter.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/Strings.Designer.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/Strings.resx -------------------------------------------------------------------------------- /src/Nerdbank.Streams/Substream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/Substream.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/SubstreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/SubstreamReader.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/ThrowHelper.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/UnownedPipeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/UnownedPipeReader.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/Utilities.cs -------------------------------------------------------------------------------- /src/Nerdbank.Streams/WebSocketStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/Nerdbank.Streams/WebSocketStream.cs -------------------------------------------------------------------------------- /src/nerdbank-streams/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/.eslintrc.json -------------------------------------------------------------------------------- /src/nerdbank-streams/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/.gitignore -------------------------------------------------------------------------------- /src/nerdbank-streams/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } -------------------------------------------------------------------------------- /src/nerdbank-streams/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/.vscode/extensions.json -------------------------------------------------------------------------------- /src/nerdbank-streams/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/.vscode/settings.json -------------------------------------------------------------------------------- /src/nerdbank-streams/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/.vscode/tasks.json -------------------------------------------------------------------------------- /src/nerdbank-streams/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/nerdbank-streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/README.md -------------------------------------------------------------------------------- /src/nerdbank-streams/asyncprocess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/asyncprocess.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/gulpfile.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/gulpfile.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/gulpfile.tsconfig.json -------------------------------------------------------------------------------- /src/nerdbank-streams/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/jest.config.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/nerdbank-streams.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/nerdbank-streams.njsproj -------------------------------------------------------------------------------- /src/nerdbank-streams/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/package.json -------------------------------------------------------------------------------- /src/nerdbank-streams/src/AcceptanceParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/AcceptanceParameters.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/Channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/Channel.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/ChannelOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/ChannelOptions.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/ControlCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/ControlCode.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/Deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/Deferred.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/FrameHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/FrameHeader.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/FullDuplexStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/FullDuplexStream.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/IChannelOfferEventArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/IChannelOfferEventArgs.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/IDisposableObservable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/IDisposableObservable.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/MultiplexingStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/MultiplexingStream.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/MultiplexingStreamFormatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/MultiplexingStreamFormatters.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/MultiplexingStreamOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/MultiplexingStreamOptions.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/OfferParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/OfferParameters.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/QualifiedChannelId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/QualifiedChannelId.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/Utilities.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/index.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/Deferred.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/Deferred.spec.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/FullDuplexStream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/FullDuplexStream.spec.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/MultiplexingStream.Interop.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/MultiplexingStream.Interop.spec.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/MultiplexingStream.SeededChannels.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/MultiplexingStream.SeededChannels.spec.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/MultiplexingStream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/MultiplexingStream.spec.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/Substream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/Substream.spec.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/Timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/Timeout.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/src/tests/jsonRpcStreams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/src/tests/jsonRpcStreams.ts -------------------------------------------------------------------------------- /src/nerdbank-streams/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/tsconfig.json -------------------------------------------------------------------------------- /src/nerdbank-streams/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/src/nerdbank-streams/yarn.lock -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/IsolatedTestHost/ExitCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/IsolatedTestHost/ExitCodes.cs -------------------------------------------------------------------------------- /test/IsolatedTestHost/IsolatedTestHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/IsolatedTestHost/IsolatedTestHost.csproj -------------------------------------------------------------------------------- /test/IsolatedTestHost/IsolatedTestHost.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/IsolatedTestHost/IsolatedTestHost.ruleset -------------------------------------------------------------------------------- /test/IsolatedTestHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/IsolatedTestHost/Program.cs -------------------------------------------------------------------------------- /test/IsolatedTestHost/TestOutputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/IsolatedTestHost/TestOutputHelper.cs -------------------------------------------------------------------------------- /test/NativeAOTCompatibility/NativeAOTCompatibility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/NativeAOTCompatibility/NativeAOTCompatibility.csproj -------------------------------------------------------------------------------- /test/NativeAOTCompatibility/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/NativeAOTCompatibility/Program.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Benchmark/BenchmarkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Benchmark/BenchmarkConfig.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Benchmark/Nerdbank.Streams.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Benchmark/Nerdbank.Streams.Benchmark.csproj -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Benchmark/Nerdbank.Streams.Benchmark.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Benchmark/Nerdbank.Streams.Benchmark.ruleset -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Benchmark/Program.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Benchmark/SequenceBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Benchmark/SequenceBenchmark.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Interop.Tests/Nerdbank.Streams.Interop.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Interop.Tests/Nerdbank.Streams.Interop.Tests.csproj -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Interop.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Interop.Tests/Program.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/BufferTextWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/BufferTextWriterTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/BufferWriterExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/BufferWriterExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/BufferWriterStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/BufferWriterStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/DuplexPipeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/DuplexPipeTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/FullDuplexStreamCombineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/FullDuplexStreamCombineTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/FullDuplexStreamPairTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/FullDuplexStreamPairTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/HalfDuplexStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/HalfDuplexStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/IOPipelinesStreamPipeReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/IOPipelinesStreamPipeReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/LanguageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/LanguageExtensions.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MockArrayPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MockArrayPool`1.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MockInterruptedFullDuplexStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MockInterruptedFullDuplexStream.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MockInterruptedWebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MockInterruptedWebSocket.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MockMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MockMemoryPool`1.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MockWebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MockWebSocket.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MonitoringStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MonitoringStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingProtocolExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingProtocolExceptionTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamBasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamBasicTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamChannelOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamChannelOptionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamOptionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamPerfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamPerfTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamSeededChannelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamSeededChannelTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamV2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamV2Tests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/MultiplexingStreamV3Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/MultiplexingStreamV3Tests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/Nerdbank.Streams.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/Nerdbank.Streams.Tests.csproj -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/NestedPipeReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/NestedPipeReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/NestedStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/NestedStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/OneWayStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/OneWayStreamWrapper.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/PipeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/PipeExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/PipeReaderCompletionWatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/PipeReaderCompletionWatcherTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/PipeStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/PipeStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/PipeWriterCompletionWatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/PipeWriterCompletionWatcherTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/PrefixingBufferWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/PrefixingBufferWriterTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/ProcessJobTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/ProcessJobTracker.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/ReadOnlySequenceExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/ReadOnlySequenceExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/ReadOnlySequenceStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/ReadOnlySequenceStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/Advance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/Advance.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/BasicTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/BinaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/BinaryExtensions.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/BufferSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/BufferSegment.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/CopyTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/CopyTo.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/IsNext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/IsNext.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/NOTICE -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/OwnedArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/OwnedArray.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/ReadOnlySequenceFactory.byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/ReadOnlySequenceFactory.byte.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/ReadOnlySequenceFactory.char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/ReadOnlySequenceFactory.char.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/ReadTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/ReadTo.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/Rewind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/Rewind.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/SequenceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/SequenceFactory.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/SequenceSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/SequenceSegment.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/SkipDelimiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/SkipDelimiter.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceReader/SpanLiteralExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceReader/SpanLiteralExtensions.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SequenceTextReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SequenceTextReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SimplexStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SimplexStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/StreamExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/StreamExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/StreamPipeReaderTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/StreamPipeReaderTestBase.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/StreamPipeWriterTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/StreamPipeWriterTestBase.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/StreamUsePipeReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/StreamUsePipeReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/StreamUsePipeWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/StreamUsePipeWriterTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/StreamUseStrictPipeReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/StreamUseStrictPipeReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/StreamUseStrictPipeWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/StreamUseStrictPipeWriterTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/SubstreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/SubstreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/TestBase.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/WebSocketStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/WebSocketStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/XunitTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/XunitTraceListener.cs -------------------------------------------------------------------------------- /test/Nerdbank.Streams.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/test/Nerdbank.Streams.Tests/xunit.runner.json -------------------------------------------------------------------------------- /tools/Check-DotNetRuntime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Check-DotNetRuntime.ps1 -------------------------------------------------------------------------------- /tools/Check-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Check-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Get-3rdPartySymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-3rdPartySymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-ArtifactsStagingDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-ArtifactsStagingDirectory.ps1 -------------------------------------------------------------------------------- /tools/Get-CodeCovTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-CodeCovTool.ps1 -------------------------------------------------------------------------------- /tools/Get-LibTemplateBasis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-LibTemplateBasis.ps1 -------------------------------------------------------------------------------- /tools/Get-NuGetTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-NuGetTool.ps1 -------------------------------------------------------------------------------- /tools/Get-ProcDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-ProcDump.ps1 -------------------------------------------------------------------------------- /tools/Get-SymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-SymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-TempToolsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Get-TempToolsPath.ps1 -------------------------------------------------------------------------------- /tools/Install-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Install-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetCredProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Install-NuGetCredProvider.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Install-NuGetPackage.ps1 -------------------------------------------------------------------------------- /tools/MergeFrom-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/MergeFrom-Template.ps1 -------------------------------------------------------------------------------- /tools/Set-EnvVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/Set-EnvVars.ps1 -------------------------------------------------------------------------------- /tools/artifacts/Variables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/Variables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_stage_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/_stage_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/build_logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/build_logs.ps1 -------------------------------------------------------------------------------- /tools/artifacts/coverageResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/coverageResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/deployables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/deployables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/projectAssetsJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/projectAssetsJson.ps1 -------------------------------------------------------------------------------- /tools/artifacts/symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/symbols.ps1 -------------------------------------------------------------------------------- /tools/artifacts/testResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/testResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/test_symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/artifacts/test_symbols.ps1 -------------------------------------------------------------------------------- /tools/dotnet-test-cloud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/dotnet-test-cloud.ps1 -------------------------------------------------------------------------------- /tools/publish-CodeCov.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/publish-CodeCov.ps1 -------------------------------------------------------------------------------- /tools/test.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/test.runsettings -------------------------------------------------------------------------------- /tools/variables/DotNetSdkVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/variables/DotNetSdkVersion.ps1 -------------------------------------------------------------------------------- /tools/variables/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/variables/_all.ps1 -------------------------------------------------------------------------------- /tools/variables/_define.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/tools/variables/_define.ps1 -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.Streams/HEAD/version.json --------------------------------------------------------------------------------