File tree Expand file tree Collapse file tree 5 files changed +9
-19
lines changed
tools/Microsoft.TemplateEngine.Authoring.CLI Expand file tree Collapse file tree 5 files changed +9
-19
lines changed Original file line number Diff line number Diff line change @@ -202,8 +202,6 @@ dotnet_diagnostic.IDE0032.severity = suggestion
202
202
dotnet_diagnostic.IDE0040.severity = suggestion
203
203
# Use conditional expression for return
204
204
dotnet_diagnostic.IDE0046.severity = suggestion
205
- # false positives, see https://github.com/dotnet/roslyn/issues/79286
206
- dotnet_diagnostic.IDE0048.severity = silent
207
205
# Remove unused private member
208
206
dotnet_diagnostic.IDE0051.severity = suggestion
209
207
# Remove unnecessary expression value
@@ -683,4 +681,4 @@ dotnet_analyzer_diagnostic.severity = none
683
681
insert_final_newline = false
684
682
685
683
[test/** /{Approvals,Snapshots}/** ]
686
- trim_trailing_whitespace = false
684
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Dependencies >
3
- <Source Uri =" https://github.com/dotnet/dotnet" Mapping =" templating" Sha =" 86117ef4343bab700dab871c416e55b22848cd52 " BarId =" 274788 " />
3
+ <Source Uri =" https://github.com/dotnet/dotnet" Mapping =" templating" Sha =" 0b032b9f942c1ae8de535a434c4f4a9206fd3339 " BarId =" 275039 " />
4
4
<ProductDependencies >
5
- <Dependency Name =" System.CommandLine" Version =" 2.0.0-beta6.25360 .101" >
5
+ <Dependency Name =" System.CommandLine" Version =" 2.0.0-beta7.25363 .101" >
6
6
<Uri >https://github.com/dotnet/dotnet</Uri >
7
- <Sha >86117ef4343bab700dab871c416e55b22848cd52 </Sha >
7
+ <Sha >0b032b9f942c1ae8de535a434c4f4a9206fd3339 </Sha >
8
8
</Dependency >
9
9
</ProductDependencies >
10
10
<ToolsetDependencies >
11
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25360 .101" >
11
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25363 .101" >
12
12
<Uri >https://github.com/dotnet/dotnet</Uri >
13
- <Sha >86117ef4343bab700dab871c416e55b22848cd52 </Sha >
13
+ <Sha >0b032b9f942c1ae8de535a434c4f4a9206fd3339 </Sha >
14
14
</Dependency >
15
15
<!-- Dependencies required for source build. We'll still update manually -->
16
16
<Dependency Name =" System.Formats.Asn1" Version =" 9.0.3" >
Original file line number Diff line number Diff line change 15
15
<PropertyGroup >
16
16
<!-- Non-maestro versions -->
17
17
<SystemFormatsAsn1Version >9.0.3</SystemFormatsAsn1Version >
18
- <SystemCommandLinePackageVersion >2.0.0-beta6.25360 .101</SystemCommandLinePackageVersion >
18
+ <SystemCommandLinePackageVersion >2.0.0-beta7.25363 .101</SystemCommandLinePackageVersion >
19
19
<MicrosoftExtensionsLoggingPackageVersion >9.0.3</MicrosoftExtensionsLoggingPackageVersion >
20
20
<MicrosoftExtensionsLoggingAbstractionsPackageVersion >9.0.3</MicrosoftExtensionsLoggingAbstractionsPackageVersion >
21
21
<MicrosoftExtensionsLoggingConsolePackageVersion >9.0.3</MicrosoftExtensionsLoggingConsolePackageVersion >
Original file line number Diff line number Diff line change 13
13
"dotnet" : " 10.0.100-preview.7.25322.101"
14
14
},
15
15
"msbuild-sdks" : {
16
- "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25360 .101"
16
+ "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25363 .101"
17
17
}
18
18
}
Original file line number Diff line number Diff line change @@ -16,15 +16,7 @@ internal static Task<int> Main(string[] args)
16
16
rootCommand . Subcommands . Add ( new VerifyCommand ( ) ) ;
17
17
rootCommand . Subcommands . Add ( new ValidateCommand ( ) ) ;
18
18
19
- return GetCommandLineConfiguration ( rootCommand ) . InvokeAsync ( args ) ;
20
- }
21
-
22
- internal static CommandLineConfiguration GetCommandLineConfiguration ( Command command )
23
- {
24
- return new CommandLineConfiguration ( command )
25
- {
26
- EnablePosixBundling = false
27
- } ;
19
+ return rootCommand . Parse ( args , new ( ) { EnablePosixBundling = false } ) . InvokeAsync ( ) ;
28
20
}
29
21
}
30
22
}
You can’t perform that action at this time.
0 commit comments