From a3464a70b39887d6ee56e181d14975541f3ce516 Mon Sep 17 00:00:00 2001 From: Johan Lorensson Date: Wed, 3 Nov 2021 15:30:16 +0100 Subject: [PATCH] Flag dotnet-dsrouter as shipping. (#2722) * Flag dotnet-dsrouter as shipping. * Add dotnet-dsrouter to tool-list.json. --- eng/release/tool-list.json | 5 +++++ src/Tools/dotnet-dsrouter/Program.cs | 2 +- src/Tools/dotnet-dsrouter/dotnet-dsrouter.csproj | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/eng/release/tool-list.json b/eng/release/tool-list.json index 924122588..69b7189cc 100644 --- a/eng/release/tool-list.json +++ b/eng/release/tool-list.json @@ -26,6 +26,10 @@ "name": "dotnet-stack", "rids": ["win-x64", "win-x86", "win-arm", "win-arm64", "linux-x64", "linux-musl-arm64", "osx-x64", "linux-arm64", "linux-musl-x64", "linux-arm"] } + { + "name": "dotnet-dsrouter", + "rids": ["win-x64", "win-x86", "win-arm", "win-arm64", "linux-x64", "linux-musl-arm64", "osx-x64", "linux-arm64", "linux-musl-x64", "linux-arm"] + } ] }, "NugetAssets": { @@ -36,6 +40,7 @@ "dotnet-sos", "dotnet-trace", "dotnet-stack", + "dotnet-dsrouter", "Microsoft.Diagnostics.NETCore.Client" ] } diff --git a/src/Tools/dotnet-dsrouter/Program.cs b/src/Tools/dotnet-dsrouter/Program.cs index 7b9e08a8e..8e0f922ea 100644 --- a/src/Tools/dotnet-dsrouter/Program.cs +++ b/src/Tools/dotnet-dsrouter/Program.cs @@ -146,7 +146,7 @@ namespace Microsoft.Diagnostics.Tools.DiagnosticsServerRouter var currentColor = Console.ForegroundColor; Console.ForegroundColor = ConsoleColor.Yellow; - Console.WriteLine("WARNING: dotnet-dsrouter is an experimental development tool not intended for production environments." + Environment.NewLine); + Console.WriteLine("WARNING: dotnet-dsrouter is a development tool not intended for production environments." + Environment.NewLine); Console.ForegroundColor = currentColor; var parser = new CommandLineBuilder() diff --git a/src/Tools/dotnet-dsrouter/dotnet-dsrouter.csproj b/src/Tools/dotnet-dsrouter/dotnet-dsrouter.csproj index 73a3db120..73fd6f82e 100644 --- a/src/Tools/dotnet-dsrouter/dotnet-dsrouter.csproj +++ b/src/Tools/dotnet-dsrouter/dotnet-dsrouter.csproj @@ -8,7 +8,6 @@ .NET Performance Diagnostic Server Router Tool Diagnostic $(Description) - false -- 2.34.1