File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
omnisharptest/omnisharpFeatureTests Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ suite('Asset generation: csproj', () => {
7878 // We do not check the watch task since this parameter can break hot reload scenarios.
7979 tasksJson . tasks
8080 . filter ( ( task ) => task . label !== 'watch' )
81- . forEach ( ( task ) => task . args ! . should . contain ( '/consoleloggerparameters:NoSummary' ) ) ;
81+ . forEach ( ( task ) => task . args ! . should . contain ( '/consoleloggerparameters:NoSummary;ForceNoAlign ' ) ) ;
8282 } ) ;
8383
8484 test ( "Generated 'watch' task does not have the property GenerateFullPaths set to true " , ( ) => {
@@ -111,7 +111,7 @@ suite('Asset generation: csproj', () => {
111111
112112 const watchTask = tasksJson . tasks ! . find ( ( task ) => task . label === 'watch' ) ;
113113 isNotNull ( watchTask ?. args ) ;
114- watchTask . args . should . not . contain ( '/consoleloggerparameters:NoSummary' ) ;
114+ watchTask . args . should . not . contain ( '/consoleloggerparameters:NoSummary;ForceNoAlign ' ) ;
115115 } ) ;
116116
117117 test ( 'Create tasks.json for nested project opened in workspace' , ( ) => {
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ export class AssetGenerator {
293293 }
294294
295295 commandArgs . push ( '/property:GenerateFullPaths=true' ) ;
296- commandArgs . push ( '/consoleloggerparameters:NoSummary' ) ;
296+ commandArgs . push ( '/consoleloggerparameters:NoSummary;ForceNoAlign ' ) ;
297297 }
298298
299299 private getBuildProjectPath ( ) : string | null {
You can’t perform that action at this time.
0 commit comments