File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ dotnet_diagnostic.SA1306.severity = none
62
62
dotnet_diagnostic.SA1310.severity = none
63
63
dotnet_diagnostic.SA1401.severity = none
64
64
dotnet_diagnostic.SA1402.severity = none
65
- dotnet_diagnostic.SA1500.severity = none
66
65
dotnet_diagnostic.SA1501.severity = none
67
66
dotnet_diagnostic.SA1502.severity = none
68
67
dotnet_diagnostic.SA1503.severity = none
Original file line number Diff line number Diff line change @@ -88,9 +88,8 @@ public static async Task MigrateAsync(
88
88
Console . WriteLine ( "Connecting..." ) ;
89
89
90
90
var vssCredentials = new VssCredentials ( ) ;
91
- if ( ! string . IsNullOrEmpty ( pat ) ) {
91
+ if ( ! string . IsNullOrEmpty ( pat ) )
92
92
vssCredentials = new VssBasicCredential ( string . Empty , pat ) ;
93
- }
94
93
95
94
using var connection = new VssConnection ( projectCollectionUrl , vssCredentials ) ;
96
95
using var client = await connection . GetClientAsync < TfvcHttpClient > ( ) ;
You can’t perform that action at this time.
0 commit comments