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', () => {
78
78
// We do not check the watch task since this parameter can break hot reload scenarios.
79
79
tasksJson . tasks
80
80
. filter ( ( task ) => task . label !== 'watch' )
81
- . forEach ( ( task ) => task . args ! . should . contain ( '/consoleloggerparameters:NoSummary' ) ) ;
81
+ . forEach ( ( task ) => task . args ! . should . contain ( '/consoleloggerparameters:NoSummary;ForceNoAlign ' ) ) ;
82
82
} ) ;
83
83
84
84
test ( "Generated 'watch' task does not have the property GenerateFullPaths set to true " , ( ) => {
@@ -111,7 +111,7 @@ suite('Asset generation: csproj', () => {
111
111
112
112
const watchTask = tasksJson . tasks ! . find ( ( task ) => task . label === 'watch' ) ;
113
113
isNotNull ( watchTask ?. args ) ;
114
- watchTask . args . should . not . contain ( '/consoleloggerparameters:NoSummary' ) ;
114
+ watchTask . args . should . not . contain ( '/consoleloggerparameters:NoSummary;ForceNoAlign ' ) ;
115
115
} ) ;
116
116
117
117
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 {
293
293
}
294
294
295
295
commandArgs . push ( '/property:GenerateFullPaths=true' ) ;
296
- commandArgs . push ( '/consoleloggerparameters:NoSummary' ) ;
296
+ commandArgs . push ( '/consoleloggerparameters:NoSummary;ForceNoAlign ' ) ;
297
297
}
298
298
299
299
private getBuildProjectPath ( ) : string | null {
You can’t perform that action at this time.
0 commit comments