diff --git a/.editorconfig b/.editorconfig index c3b410cfb0b..bc46cb200f8 100644 --- a/.editorconfig +++ b/.editorconfig @@ -202,8 +202,6 @@ dotnet_diagnostic.IDE0032.severity = suggestion dotnet_diagnostic.IDE0040.severity = suggestion #Use conditional expression for return dotnet_diagnostic.IDE0046.severity = suggestion -#false positives, see https://github.com/dotnet/roslyn/issues/79286 -dotnet_diagnostic.IDE0048.severity = silent #Remove unused private member dotnet_diagnostic.IDE0051.severity = suggestion #Remove unnecessary expression value @@ -683,4 +681,4 @@ dotnet_analyzer_diagnostic.severity = none insert_final_newline = false [test/**/{Approvals,Snapshots}/**] -trim_trailing_whitespace = false \ No newline at end of file +trim_trailing_whitespace = false diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 653d9eac9a5..0739db91bad 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,16 +1,16 @@ - + - + https://github.com/dotnet/dotnet - 86117ef4343bab700dab871c416e55b22848cd52 + 0b032b9f942c1ae8de535a434c4f4a9206fd3339 - + https://github.com/dotnet/dotnet - 86117ef4343bab700dab871c416e55b22848cd52 + 0b032b9f942c1ae8de535a434c4f4a9206fd3339 diff --git a/eng/Versions.props b/eng/Versions.props index 7c791de394a..cfad649c188 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -15,7 +15,7 @@ 9.0.3 - 2.0.0-beta6.25360.101 + 2.0.0-beta7.25363.101 9.0.3 9.0.3 9.0.3 diff --git a/global.json b/global.json index 9c80c39c516..2a7fe81c5c9 100644 --- a/global.json +++ b/global.json @@ -13,6 +13,6 @@ "dotnet": "10.0.100-preview.7.25322.101" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25360.101" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25363.101" } } diff --git a/tools/Microsoft.TemplateEngine.Authoring.CLI/Program.cs b/tools/Microsoft.TemplateEngine.Authoring.CLI/Program.cs index cca23cfff06..8656226e120 100644 --- a/tools/Microsoft.TemplateEngine.Authoring.CLI/Program.cs +++ b/tools/Microsoft.TemplateEngine.Authoring.CLI/Program.cs @@ -16,15 +16,7 @@ internal static Task Main(string[] args) rootCommand.Subcommands.Add(new VerifyCommand()); rootCommand.Subcommands.Add(new ValidateCommand()); - return GetCommandLineConfiguration(rootCommand).InvokeAsync(args); - } - - internal static CommandLineConfiguration GetCommandLineConfiguration(Command command) - { - return new CommandLineConfiguration(command) - { - EnablePosixBundling = false - }; + return rootCommand.Parse(args, new() { EnablePosixBundling = false }).InvokeAsync(); } } }