@@ -11,12 +11,12 @@ export class Example {
1111
1212 constructor ( projectName : string , projectFile ?: string ) {
1313 const projectDir = path . normalize (
14- path . join ( __dirname , `../examples/${ projectName } /` )
14+ path . join ( __dirname , `../examples/${ projectName } /` ) ,
1515 ) ;
1616 this . projectDir = projectDir ;
1717 this . projectFile = path . join (
1818 projectDir ,
19- projectFile ?? `${ projectName } .proj`
19+ projectFile ?? `${ projectName } .proj` ,
2020 ) ;
2121 }
2222
@@ -42,7 +42,7 @@ export class Example {
4242
4343 public publish (
4444 targetFramework : string | null ,
45- expectSuccess = true
45+ expectSuccess = true ,
4646 ) : SpawnSyncReturns < string > {
4747 return this . runMsBuild ( "publish" , targetFramework , expectSuccess ) ;
4848 }
@@ -76,12 +76,12 @@ export class Example {
7676 private runMsBuild (
7777 verb : string ,
7878 targetFramework : string | null ,
79- expectSuccess : boolean
79+ expectSuccess : boolean ,
8080 ) : SpawnSyncReturns < string > {
8181 const runtimeSuffix = process . env . RuntimeSuffix ;
8282 if ( ! runtimeSuffix ) {
8383 throw new Error (
84- "Please set the RuntimeSuffix environment variable to a .net runtime ID to run these tests. Possible values: win-x64, linux-x64, osx-x64"
84+ "Please set the RuntimeSuffix environment variable to a .net runtime ID to run these tests. Possible values: win-x64, linux-x64, osx-x64" ,
8585 ) ;
8686 }
8787 const result = spawn . sync (
@@ -98,7 +98,7 @@ export class Example {
9898 cwd : this . projectDir ,
9999 stdio : "pipe" ,
100100 encoding : "utf-8" ,
101- }
101+ } ,
102102 ) ;
103103
104104 if ( expectSuccess && result . status !== 0 ) {
0 commit comments