@@ -92,6 +92,7 @@ export class Project extends codeDomProject {
9292 public cmdletFolder ! : string ;
9393
9494 public customFolder ! : string ;
95+ public utilsFolder ! : string ;
9596 public internalFolder ! : string ;
9697 public testFolder ! : string ;
9798 public runtimeFolder ! : string ;
@@ -193,6 +194,7 @@ export class Project extends codeDomProject {
193194 this . cmdletFolder = await this . state . getValue ( 'cmdlet-folder' ) ;
194195
195196 this . customFolder = await this . state . getValue ( 'custom-cmdlet-folder' ) ;
197+ this . utilsFolder = await this . state . getValue ( 'utils-cmdlet-folder' ) ;
196198 this . internalFolder = await this . state . getValue ( 'internal-cmdlet-folder' ) ;
197199 this . testFolder = await this . state . getValue ( 'test-folder' ) ;
198200 this . runtimeFolder = await this . state . getValue ( 'runtime-folder' ) ;
@@ -250,6 +252,7 @@ export class NewProject extends codeDomProject {
250252 public cmdletFolder ! : string ;
251253
252254 public customFolder ! : string ;
255+ public utilsFolder ! : string ;
253256 public internalFolder ! : string ;
254257 public testFolder ! : string ;
255258 public runtimeFolder ! : string ;
@@ -353,6 +356,7 @@ export class NewProject extends codeDomProject {
353356 this . cmdletFolder = await this . state . getValue ( 'cmdlet-folder' ) ;
354357
355358 this . customFolder = await this . state . getValue ( 'custom-cmdlet-folder' ) ;
359+ this . utilsFolder = await this . state . getValue ( 'utils-cmdlet-folder' ) ;
356360 this . internalFolder = await this . state . getValue ( 'internal-cmdlet-folder' ) ;
357361 this . testFolder = await this . state . getValue ( 'test-folder' ) ;
358362 this . runtimeFolder = await this . state . getValue ( 'runtime-folder' ) ;
0 commit comments