├── .appveyor.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vsts-pipelines └── builds │ ├── ci-internal.yml │ └── ci-public.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── DotNetTools.sln ├── LICENSE.txt ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── samples └── dotnet-watch │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── LaunchAnyCommand │ ├── LaunchAnyCommand.csproj │ ├── README.md │ ├── package.json │ └── say-hello.js │ ├── README.md │ ├── WatchJavascriptFiles │ ├── Program.cs │ ├── README.md │ ├── WatchJavascriptFiles.csproj │ └── wwwroot │ │ └── app.js │ └── WatchMultipleProjects │ ├── README.md │ ├── Test │ ├── Test.csproj │ └── UnitTest1.cs │ ├── Web │ ├── Program.cs │ └── Web.csproj │ └── watch.csproj ├── shared ├── CliContext.cs ├── CommandLineApplicationExtensions.cs ├── ConsoleReporter.cs ├── DebugHelper.cs ├── Ensure.cs ├── IConsole.cs ├── IReporter.cs ├── NullReporter.cs └── PhysicalConsole.cs ├── src ├── Directory.Build.props ├── Directory.Build.targets ├── Microsoft.AspNetCore.DeveloperCertificates.XPlat │ ├── CertificateGenerator.cs │ └── Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj ├── Microsoft.HttpRepl │ ├── AggregateDirectoryStructure.cs │ ├── Commands │ │ ├── BaseHttpCommand.cs │ │ ├── ChangeDirectoryCommand.cs │ │ ├── ClearCommand.cs │ │ ├── ConfigCommand.cs │ │ ├── DeleteCommand.cs │ │ ├── EchoCommand.cs │ │ ├── ExitCommand.cs │ │ ├── Formatter.cs │ │ ├── GetCommand.cs │ │ ├── HeadCommand.cs │ │ ├── HelpCommand.cs │ │ ├── ListCommand.cs │ │ ├── OptionsCommand.cs │ │ ├── PatchCommand.cs │ │ ├── PostCommand.cs │ │ ├── PrefCommand.cs │ │ ├── PutCommand.cs │ │ ├── RunCommand.cs │ │ ├── SetBaseCommand.cs │ │ ├── SetDiagCommand.cs │ │ ├── SetHeaderCommand.cs │ │ ├── SetSwaggerCommand.cs │ │ ├── TreeNode.cs │ │ └── UICommand.cs │ ├── Diagnostics │ │ ├── ConfigItem.cs │ │ ├── DiagEndpoint.cs │ │ ├── DiagEndpointMetadata.cs │ │ ├── DiagItem.cs │ │ └── DiagnosticsState.cs │ ├── DirectoryStructure.cs │ ├── DirectoryStructureExtensions.cs │ ├── Formatting │ │ └── JsonVisitor.cs │ ├── HttpState.cs │ ├── IDirectoryStructure.cs │ ├── IRequestInfo.cs │ ├── Microsoft.HttpRepl.csproj │ ├── OpenApi │ │ ├── Either.cs │ │ ├── EitherConverter.cs │ │ ├── EndpointMetadata.cs │ │ ├── EndpointMetadataReader.cs │ │ ├── IEndpointMetadataReader.cs │ │ ├── OpenApiV3EndpointMetadataReader.cs │ │ ├── Parameter.cs │ │ ├── PointerUtil.cs │ │ ├── Schema.cs │ │ ├── SwaggerV1EndpointMetadataReader.cs │ │ └── SwaggerV2EndpointMetadataReader.cs │ ├── Preferences │ │ ├── IJsonConfig.cs │ │ ├── JsonConfig.cs │ │ ├── RequestConfig.cs │ │ ├── RequestOrResponseConfig.cs │ │ ├── ResponseConfig.cs │ │ └── WellKnownPreference.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Suggestions │ │ ├── HeaderCompletion.cs │ │ └── ServerPathCompletion.cs ├── Microsoft.Repl │ ├── Commanding │ │ ├── CommandHistory.cs │ │ ├── CommandInputLocation.cs │ │ ├── CommandInputProcessingIssue.cs │ │ ├── CommandInputProcessingIssueKind.cs │ │ ├── CommandInputSpecification.cs │ │ ├── CommandInputSpecificationBuilder.cs │ │ ├── CommandOptionSpecification.cs │ │ ├── CommandWithStructuredInputBase.cs │ │ ├── DefaultCommandDispatcher.cs │ │ ├── DefaultCommandInput.cs │ │ ├── ICommand.cs │ │ ├── ICommandDispatcher.cs │ │ ├── ICommandHistory.cs │ │ └── InputElement.cs │ ├── ConsoleHandling │ │ ├── AllowedColors.cs │ │ ├── AnsiColorExtensions.cs │ │ ├── AnsiConsole.cs │ │ ├── ConsoleManager.cs │ │ ├── IConsoleManager.cs │ │ ├── IWritable.cs │ │ ├── Point.cs │ │ ├── Reporter.cs │ │ └── Writable.cs │ ├── Disposable.cs │ ├── IShellState.cs │ ├── Input │ │ ├── AsyncKeyPressHandler.cs │ │ ├── IInputManager.cs │ │ ├── InputManager.cs │ │ └── KeyHandlers.cs │ ├── Microsoft.Repl.csproj │ ├── Parsing │ │ ├── CoreParseResult.cs │ │ ├── CoreParser.cs │ │ ├── ICoreParseResult.cs │ │ └── IParser.cs │ ├── Scripting │ │ ├── IScriptExecutor.cs │ │ └── ScriptExecutor.cs │ ├── Shell.cs │ ├── ShellState.cs │ ├── Suggestions │ │ ├── FileSystemCompletion.cs │ │ ├── ISuggestionManager.cs │ │ └── SuggestionManager.cs │ └── Utils.cs ├── dotnet-dev-certs │ ├── Program.cs │ ├── README.md │ └── dotnet-dev-certs.csproj ├── dotnet-sql-cache │ ├── Program.cs │ ├── README.md │ ├── SqlQueries.cs │ └── dotnet-sql-cache.csproj ├── dotnet-user-secrets │ ├── CommandLineOptions.cs │ ├── Internal │ │ ├── ClearCommand.cs │ │ ├── CommandContext.cs │ │ ├── ICommand.cs │ │ ├── InitCommand.cs │ │ ├── ListCommand.cs │ │ ├── MsBuildProjectFinder.cs │ │ ├── ProjectIdResolver.cs │ │ ├── ReadableJsonConfigurationSource.cs │ │ ├── RemoveCommand.cs │ │ ├── SecretsStore.cs │ │ └── SetCommand.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── README.md │ ├── Resources.resx │ ├── assets │ │ └── SecretManager.targets │ └── dotnet-user-secrets.csproj └── dotnet-watch │ ├── CommandLineOptions.cs │ ├── DotNetWatcher.cs │ ├── IFileSet.cs │ ├── IFileSetFactory.cs │ ├── Internal │ ├── FileSet.cs │ ├── FileSetWatcher.cs │ ├── FileWatcher.cs │ ├── FileWatcher │ │ ├── DotnetFileWatcher.cs │ │ ├── FileWatcherFactory.cs │ │ ├── IFileSystemWatcher.cs │ │ └── PollingFileWatcher.cs │ ├── MsBuildFileSetFactory.cs │ ├── MsBuildProjectFinder.cs │ ├── OutputCapture.cs │ ├── OutputSink.cs │ └── ProcessRunner.cs │ ├── PrefixConsoleReporter.cs │ ├── ProcessSpec.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── Resources.Designer.cs │ ├── README.md │ ├── Resources.resx │ ├── assets │ └── DotNetWatch.targets │ └── dotnet-watch.csproj ├── test ├── Directory.Build.props ├── Microsoft.HttpRepl.Tests │ ├── JsonVisitorTests.cs │ └── Microsoft.HttpRepl.Tests.csproj ├── Microsoft.Repl.Tests │ ├── Microsoft.Repl.Tests.csproj │ └── ParserTests.cs ├── Shared │ ├── TestConsole.cs │ └── TestReporter.cs ├── dotnet-user-secrets.Tests │ ├── InitCommandTest.cs │ ├── MsBuildProjectFinderTest.cs │ ├── SecretManagerTests.cs │ ├── SetCommandTest.cs │ ├── TemporaryFileProvider.cs │ ├── UserSecretsTestFixture.cs │ └── dotnet-user-secrets.Tests.csproj ├── dotnet-watch.FunctionalTests │ ├── AppWithDepsTests.cs │ ├── AwaitableProcess.cs │ ├── DotNetWatcherTests.cs │ ├── FileWatcherTests.cs │ ├── GlobbingAppTests.cs │ ├── NoDepsAppTests.cs │ ├── Scenario │ │ ├── ProjectToolScenario.cs │ │ └── WatchableApp.cs │ ├── TestProjects │ │ ├── AppWithDeps │ │ │ ├── AppWithDeps.csproj │ │ │ └── Program.cs │ │ ├── Dependency │ │ │ ├── Dependency.csproj │ │ │ └── Foo.cs │ │ ├── GlobbingApp │ │ │ ├── GlobbingApp.csproj │ │ │ ├── Program.cs │ │ │ ├── exclude │ │ │ │ └── Baz.cs │ │ │ └── include │ │ │ │ └── Foo.cs │ │ ├── KitchenSink │ │ │ ├── KitchenSink.csproj │ │ │ └── Program.cs │ │ └── NoDepsApp │ │ │ ├── NoDepsApp.csproj │ │ │ └── Program.cs │ └── dotnet-watch.FunctionalTests.csproj └── dotnet-watch.Tests │ ├── AssertEx.cs │ ├── CommandLineOptionsTests.cs │ ├── ConsoleReporterTests.cs │ ├── MsBuildFileSetFactoryTest.cs │ ├── ProgramTests.cs │ ├── Utilities │ ├── TemporaryCSharpProject.cs │ ├── TemporaryDirectory.cs │ └── TestProjectGraph.cs │ └── dotnet-watch.Tests.csproj ├── tooling ├── Microsoft.VisualStudio.SecretManager.TestExtension │ ├── Key.snk │ ├── Microsoft.VisualStudio.SecretManager.TestExtension.csproj │ ├── NotifyPropertyChanged.cs │ ├── ProjectViewModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RelayCommand.cs │ ├── Resources │ │ ├── SecretManagerTestCommand.png │ │ └── SecretManagerTestPackage.ico │ ├── SecretManagerTestCommand.cs │ ├── SecretManagerTestControl.xaml │ ├── SecretManagerTestControl.xaml.cs │ ├── SecretManagerTestPackage.cs │ ├── SecretManagerTestPackage.vsct │ ├── SecretManagerTestWindow.cs │ ├── SecretManagerViewModel.cs │ ├── VSPackage.resx │ ├── app.config │ └── source.extension.vsixmanifest └── Microsoft.VisualStudio.SecretManager │ ├── Microsoft.VisualStudio.SecretManager.csproj │ ├── ProjectLocalSecretsManager.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SecretManagerFactory.cs │ ├── SecretStore.cs │ ├── Sources │ ├── ConfigurationPath.cs │ ├── JsonConfigurationFileParser.cs │ └── PathHelper.cs │ └── source.extension.vsixmanifest └── version.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/.vsts-pipelines/builds/ci-internal.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/.vsts-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /DotNetTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/DotNetTools.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGetPackageVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/NuGetPackageVerifier.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/README.md -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/korebuild-lock.txt -------------------------------------------------------------------------------- /korebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/korebuild.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/run.cmd -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/run.sh -------------------------------------------------------------------------------- /samples/dotnet-watch/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /samples/dotnet-watch/Directory.Build.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /samples/dotnet-watch/LaunchAnyCommand/LaunchAnyCommand.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/LaunchAnyCommand/LaunchAnyCommand.csproj -------------------------------------------------------------------------------- /samples/dotnet-watch/LaunchAnyCommand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/LaunchAnyCommand/README.md -------------------------------------------------------------------------------- /samples/dotnet-watch/LaunchAnyCommand/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/LaunchAnyCommand/package.json -------------------------------------------------------------------------------- /samples/dotnet-watch/LaunchAnyCommand/say-hello.js: -------------------------------------------------------------------------------- 1 | console.log("Hello from Javascript"); 2 | -------------------------------------------------------------------------------- /samples/dotnet-watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/README.md -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchJavascriptFiles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchJavascriptFiles/Program.cs -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchJavascriptFiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchJavascriptFiles/README.md -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchJavascriptFiles/WatchJavascriptFiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchJavascriptFiles/WatchJavascriptFiles.csproj -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchJavascriptFiles/wwwroot/app.js: -------------------------------------------------------------------------------- 1 | document.title = "My awesome website"; 2 | -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchMultipleProjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchMultipleProjects/README.md -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchMultipleProjects/Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchMultipleProjects/Test/Test.csproj -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchMultipleProjects/Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchMultipleProjects/Test/UnitTest1.cs -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchMultipleProjects/Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchMultipleProjects/Web/Program.cs -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchMultipleProjects/Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchMultipleProjects/Web/Web.csproj -------------------------------------------------------------------------------- /samples/dotnet-watch/WatchMultipleProjects/watch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/samples/dotnet-watch/WatchMultipleProjects/watch.csproj -------------------------------------------------------------------------------- /shared/CliContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/CliContext.cs -------------------------------------------------------------------------------- /shared/CommandLineApplicationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/CommandLineApplicationExtensions.cs -------------------------------------------------------------------------------- /shared/ConsoleReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/ConsoleReporter.cs -------------------------------------------------------------------------------- /shared/DebugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/DebugHelper.cs -------------------------------------------------------------------------------- /shared/Ensure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/Ensure.cs -------------------------------------------------------------------------------- /shared/IConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/IConsole.cs -------------------------------------------------------------------------------- /shared/IReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/IReporter.cs -------------------------------------------------------------------------------- /shared/NullReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/NullReporter.cs -------------------------------------------------------------------------------- /shared/PhysicalConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/shared/PhysicalConsole.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/CertificateGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/CertificateGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/AggregateDirectoryStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/AggregateDirectoryStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/BaseHttpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/BaseHttpCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/ChangeDirectoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/ChangeDirectoryCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/ClearCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/ClearCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/ConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/ConfigCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/DeleteCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/EchoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/EchoCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/ExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/ExitCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/Formatter.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/GetCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/GetCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/HeadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/HeadCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/HelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/HelpCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/ListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/ListCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/OptionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/OptionsCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/PatchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/PatchCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/PostCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/PostCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/PrefCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/PrefCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/PutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/PutCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/RunCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/RunCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/SetBaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/SetBaseCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/SetDiagCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/SetDiagCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/SetHeaderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/SetHeaderCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/SetSwaggerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/SetSwaggerCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/TreeNode.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Commands/UICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Commands/UICommand.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Diagnostics/ConfigItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Diagnostics/ConfigItem.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Diagnostics/DiagEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Diagnostics/DiagEndpoint.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Diagnostics/DiagEndpointMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Diagnostics/DiagEndpointMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Diagnostics/DiagItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Diagnostics/DiagItem.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Diagnostics/DiagnosticsState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Diagnostics/DiagnosticsState.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/DirectoryStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/DirectoryStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/DirectoryStructureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/DirectoryStructureExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Formatting/JsonVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Formatting/JsonVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/HttpState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/HttpState.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/IDirectoryStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/IDirectoryStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/IRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/IRequestInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Microsoft.HttpRepl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Microsoft.HttpRepl.csproj -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/Either.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/Either.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/EitherConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/EitherConverter.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/EndpointMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/EndpointMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/EndpointMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/EndpointMetadataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/IEndpointMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/IEndpointMetadataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/OpenApiV3EndpointMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/OpenApiV3EndpointMetadataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/Parameter.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/PointerUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/PointerUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/Schema.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/SwaggerV1EndpointMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/SwaggerV1EndpointMetadataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/OpenApi/SwaggerV2EndpointMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/OpenApi/SwaggerV2EndpointMetadataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Preferences/IJsonConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Preferences/IJsonConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Preferences/JsonConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Preferences/JsonConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Preferences/RequestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Preferences/RequestConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Preferences/RequestOrResponseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Preferences/RequestOrResponseConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Preferences/ResponseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Preferences/ResponseConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Preferences/WellKnownPreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Preferences/WellKnownPreference.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Program.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Suggestions/HeaderCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Suggestions/HeaderCompletion.cs -------------------------------------------------------------------------------- /src/Microsoft.HttpRepl/Suggestions/ServerPathCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.HttpRepl/Suggestions/ServerPathCompletion.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandHistory.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandInputLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandInputLocation.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandInputProcessingIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandInputProcessingIssue.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandInputProcessingIssueKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandInputProcessingIssueKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandInputSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandInputSpecification.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandInputSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandInputSpecificationBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandOptionSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandOptionSpecification.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/CommandWithStructuredInputBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/CommandWithStructuredInputBase.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/DefaultCommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/DefaultCommandDispatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/DefaultCommandInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/DefaultCommandInput.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/ICommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/ICommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/ICommandDispatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/ICommandHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/ICommandHistory.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Commanding/InputElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Commanding/InputElement.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/AllowedColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/AllowedColors.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/AnsiColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/AnsiColorExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/AnsiConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/AnsiConsole.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/ConsoleManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/IConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/IConsoleManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/IWritable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/IWritable.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/Point.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/Reporter.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ConsoleHandling/Writable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ConsoleHandling/Writable.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Disposable.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/IShellState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/IShellState.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Input/AsyncKeyPressHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Input/AsyncKeyPressHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Input/IInputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Input/IInputManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Input/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Input/InputManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Input/KeyHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Input/KeyHandlers.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Microsoft.Repl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Microsoft.Repl.csproj -------------------------------------------------------------------------------- /src/Microsoft.Repl/Parsing/CoreParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Parsing/CoreParseResult.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Parsing/CoreParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Parsing/CoreParser.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Parsing/ICoreParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Parsing/ICoreParseResult.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Parsing/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Parsing/IParser.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Scripting/IScriptExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Scripting/IScriptExecutor.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Scripting/ScriptExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Scripting/ScriptExecutor.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Shell.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/ShellState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/ShellState.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Suggestions/FileSystemCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Suggestions/FileSystemCompletion.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Suggestions/ISuggestionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Suggestions/ISuggestionManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Suggestions/SuggestionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Suggestions/SuggestionManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Repl/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/Microsoft.Repl/Utils.cs -------------------------------------------------------------------------------- /src/dotnet-dev-certs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-dev-certs/Program.cs -------------------------------------------------------------------------------- /src/dotnet-dev-certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-dev-certs/README.md -------------------------------------------------------------------------------- /src/dotnet-dev-certs/dotnet-dev-certs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-dev-certs/dotnet-dev-certs.csproj -------------------------------------------------------------------------------- /src/dotnet-sql-cache/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-sql-cache/Program.cs -------------------------------------------------------------------------------- /src/dotnet-sql-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-sql-cache/README.md -------------------------------------------------------------------------------- /src/dotnet-sql-cache/SqlQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-sql-cache/SqlQueries.cs -------------------------------------------------------------------------------- /src/dotnet-sql-cache/dotnet-sql-cache.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-sql-cache/dotnet-sql-cache.csproj -------------------------------------------------------------------------------- /src/dotnet-user-secrets/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/CommandLineOptions.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/ClearCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/ClearCommand.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/CommandContext.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/ICommand.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/InitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/InitCommand.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/ListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/ListCommand.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/MsBuildProjectFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/MsBuildProjectFinder.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/ProjectIdResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/ProjectIdResolver.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/ReadableJsonConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/ReadableJsonConfigurationSource.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/RemoveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/RemoveCommand.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/SecretsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/SecretsStore.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Internal/SetCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Internal/SetCommand.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Program.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/dotnet-user-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/README.md -------------------------------------------------------------------------------- /src/dotnet-user-secrets/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/Resources.resx -------------------------------------------------------------------------------- /src/dotnet-user-secrets/assets/SecretManager.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/assets/SecretManager.targets -------------------------------------------------------------------------------- /src/dotnet-user-secrets/dotnet-user-secrets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-user-secrets/dotnet-user-secrets.csproj -------------------------------------------------------------------------------- /src/dotnet-watch/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/CommandLineOptions.cs -------------------------------------------------------------------------------- /src/dotnet-watch/DotNetWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/DotNetWatcher.cs -------------------------------------------------------------------------------- /src/dotnet-watch/IFileSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/IFileSet.cs -------------------------------------------------------------------------------- /src/dotnet-watch/IFileSetFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/IFileSetFactory.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/FileSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/FileSet.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/FileSetWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/FileSetWatcher.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/FileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/FileWatcher.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/FileWatcher/DotnetFileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/FileWatcher/DotnetFileWatcher.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/FileWatcher/FileWatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/FileWatcher/FileWatcherFactory.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/FileWatcher/IFileSystemWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/FileWatcher/IFileSystemWatcher.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/FileWatcher/PollingFileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/FileWatcher/PollingFileWatcher.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/MsBuildFileSetFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/MsBuildFileSetFactory.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/MsBuildProjectFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/MsBuildProjectFinder.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/OutputCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/OutputCapture.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/OutputSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/OutputSink.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Internal/ProcessRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Internal/ProcessRunner.cs -------------------------------------------------------------------------------- /src/dotnet-watch/PrefixConsoleReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/PrefixConsoleReporter.cs -------------------------------------------------------------------------------- /src/dotnet-watch/ProcessSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/ProcessSpec.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Program.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/dotnet-watch/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/dotnet-watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/README.md -------------------------------------------------------------------------------- /src/dotnet-watch/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/Resources.resx -------------------------------------------------------------------------------- /src/dotnet-watch/assets/DotNetWatch.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/assets/DotNetWatch.targets -------------------------------------------------------------------------------- /src/dotnet-watch/dotnet-watch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/src/dotnet-watch/dotnet-watch.csproj -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Microsoft.HttpRepl.Tests/JsonVisitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/Microsoft.HttpRepl.Tests/JsonVisitorTests.cs -------------------------------------------------------------------------------- /test/Microsoft.HttpRepl.Tests/Microsoft.HttpRepl.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/Microsoft.HttpRepl.Tests/Microsoft.HttpRepl.Tests.csproj -------------------------------------------------------------------------------- /test/Microsoft.Repl.Tests/Microsoft.Repl.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/Microsoft.Repl.Tests/Microsoft.Repl.Tests.csproj -------------------------------------------------------------------------------- /test/Microsoft.Repl.Tests/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/Microsoft.Repl.Tests/ParserTests.cs -------------------------------------------------------------------------------- /test/Shared/TestConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/Shared/TestConsole.cs -------------------------------------------------------------------------------- /test/Shared/TestReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/Shared/TestReporter.cs -------------------------------------------------------------------------------- /test/dotnet-user-secrets.Tests/InitCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-user-secrets.Tests/InitCommandTest.cs -------------------------------------------------------------------------------- /test/dotnet-user-secrets.Tests/MsBuildProjectFinderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-user-secrets.Tests/MsBuildProjectFinderTest.cs -------------------------------------------------------------------------------- /test/dotnet-user-secrets.Tests/SecretManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-user-secrets.Tests/SecretManagerTests.cs -------------------------------------------------------------------------------- /test/dotnet-user-secrets.Tests/SetCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-user-secrets.Tests/SetCommandTest.cs -------------------------------------------------------------------------------- /test/dotnet-user-secrets.Tests/TemporaryFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-user-secrets.Tests/TemporaryFileProvider.cs -------------------------------------------------------------------------------- /test/dotnet-user-secrets.Tests/UserSecretsTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-user-secrets.Tests/UserSecretsTestFixture.cs -------------------------------------------------------------------------------- /test/dotnet-user-secrets.Tests/dotnet-user-secrets.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-user-secrets.Tests/dotnet-user-secrets.Tests.csproj -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/AppWithDepsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/AppWithDepsTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/AwaitableProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/AwaitableProcess.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/DotNetWatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/DotNetWatcherTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/FileWatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/FileWatcherTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/GlobbingAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/GlobbingAppTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/NoDepsAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/NoDepsAppTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/Scenario/ProjectToolScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/Scenario/ProjectToolScenario.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/Scenario/WatchableApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/Scenario/WatchableApp.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/AppWithDeps/AppWithDeps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/AppWithDeps/AppWithDeps.csproj -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/AppWithDeps/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/AppWithDeps/Program.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/Dependency/Dependency.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/Dependency/Dependency.csproj -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/Dependency/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/Dependency/Foo.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/GlobbingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/GlobbingApp.csproj -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/Program.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/exclude/Baz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/exclude/Baz.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/include/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/GlobbingApp/include/Foo.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/KitchenSink/KitchenSink.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/KitchenSink/KitchenSink.csproj -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/KitchenSink/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/KitchenSink/Program.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/NoDepsApp/NoDepsApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/NoDepsApp/NoDepsApp.csproj -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/TestProjects/NoDepsApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/TestProjects/NoDepsApp/Program.cs -------------------------------------------------------------------------------- /test/dotnet-watch.FunctionalTests/dotnet-watch.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.FunctionalTests/dotnet-watch.FunctionalTests.csproj -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/AssertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/AssertEx.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/CommandLineOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/CommandLineOptionsTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/ConsoleReporterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/ConsoleReporterTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/MsBuildFileSetFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/MsBuildFileSetFactoryTest.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/ProgramTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/ProgramTests.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/Utilities/TemporaryCSharpProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/Utilities/TemporaryCSharpProject.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/Utilities/TemporaryDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/Utilities/TemporaryDirectory.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/Utilities/TestProjectGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/Utilities/TestProjectGraph.cs -------------------------------------------------------------------------------- /test/dotnet-watch.Tests/dotnet-watch.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/test/dotnet-watch.Tests/dotnet-watch.Tests.csproj -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Key.snk -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Microsoft.VisualStudio.SecretManager.TestExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Microsoft.VisualStudio.SecretManager.TestExtension.csproj -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/NotifyPropertyChanged.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/ProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/ProjectViewModel.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/RelayCommand.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Resources/SecretManagerTestCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Resources/SecretManagerTestCommand.png -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Resources/SecretManagerTestPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/Resources/SecretManagerTestPackage.ico -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestCommand.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestControl.xaml -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestControl.xaml.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestPackage.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestPackage.vsct -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerTestWindow.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/SecretManagerViewModel.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/VSPackage.resx -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/app.config -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager.TestExtension/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager.TestExtension/source.extension.vsixmanifest -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/Microsoft.VisualStudio.SecretManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/Microsoft.VisualStudio.SecretManager.csproj -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/ProjectLocalSecretsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/ProjectLocalSecretsManager.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/Resources.Designer.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/Resources.resx -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/SecretManagerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/SecretManagerFactory.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/SecretStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/SecretStore.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/Sources/ConfigurationPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/Sources/ConfigurationPath.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/Sources/JsonConfigurationFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/Sources/JsonConfigurationFileParser.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/Sources/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/Sources/PathHelper.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.SecretManager/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/tooling/Microsoft.VisualStudio.SecretManager/source.extension.vsixmanifest -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/DotNetTools/HEAD/version.props --------------------------------------------------------------------------------