()
| 14 | // specific packages this only requires running the installDependencies tasks. However for Razor packages |
| 15 | // we need to acquire the nuget packages once for each platform to ensure they get saved to the feed. |
| 16 | async function updateRazorVersion(): Promise<void> { |
| 17 | // Pull in the .razorExtension code that gets loaded in the roslyn language server |
| 18 | await acquireNugetPackage(allNugetPackages.razorExtension, undefined, getPackageJSON(), true); |
| 19 | |
| 20 | await installDependencies(/* clean */ true); |
| 21 | } |
nothing calls this directly
no test coverage detected