@@ -23,7 +23,7 @@ import {
2323 languageServerDirectory ,
2424 nugetTempPath ,
2525 rootPath ,
26- devkitDependenciesDirectory ,
26+ devKitDependenciesDirectory ,
2727} from '../tasks/projectPaths' ;
2828import { getPackageJSON } from '../tasks/packageJson' ;
2929import { createPackageAsync } from '../tasks/vsceTasks' ;
@@ -124,8 +124,8 @@ gulp.task(
124124 await acquireRoslyn ( packageJSON , p . platformInfo , true ) ;
125125 }
126126
127- // Also pull in the Roslyn devkit dependencies nuget package.
128- await acquireRoslynDevkit ( packageJSON , true ) ;
127+ // Also pull in the Roslyn DevKit dependencies nuget package.
128+ await acquireRoslynDevKit ( packageJSON , true ) ;
129129 } , 'installDependencies' )
130130) ;
131131
@@ -139,9 +139,9 @@ async function installRoslyn(packageJSON: any, platformInfo?: PlatformInformatio
139139 languageServerDirectory
140140 ) ;
141141
142- // Install Roslyn Devkit dependencies.
143- const roslynDevkitPackagePath = await acquireRoslynDevkit ( packageJSON , false ) ;
144- await installNuGetPackage ( roslynDevkitPackagePath , 'content' , devkitDependenciesDirectory ) ;
142+ // Install Roslyn DevKit dependencies.
143+ const roslynDevKitPackagePath = await acquireRoslynDevKit ( packageJSON , false ) ;
144+ await installNuGetPackage ( roslynDevKitPackagePath , 'content' , devKitDependenciesDirectory ) ;
145145}
146146
147147async function installNuGetPackage ( pathToPackage : string , contentPath : string , outputPath : string ) {
@@ -193,10 +193,10 @@ async function acquireRoslyn(
193193 return { packagePath, serverPlatform } ;
194194}
195195
196- async function acquireRoslynDevkit ( packageJSON : any , interactive : boolean ) : Promise < string > {
196+ async function acquireRoslynDevKit ( packageJSON : any , interactive : boolean ) : Promise < string > {
197197 const roslynVersion = packageJSON . defaults . roslyn ;
198198 const packagePath = await acquireNugetPackage (
199- `Microsoft.VisualStudio.LanguageServices.Devkit ` ,
199+ `Microsoft.VisualStudio.LanguageServices.DevKit ` ,
200200 roslynVersion ,
201201 interactive
202202 ) ;
@@ -333,7 +333,7 @@ async function cleanAsync() {
333333 '.debugger' ,
334334 '.razor' ,
335335 languageServerDirectory ,
336- devkitDependenciesDirectory ,
336+ devKitDependenciesDirectory ,
337337 ] ) ;
338338}
339339
0 commit comments