Migrate from Install-Frontend to Install-ScNugetPackage
With Dizzy 3.0 the Install-Frontend
command was deprecated and new command called
Install-ScNugetPackage
was introduced. While Install-Frontend
was able to install exactly one
NuGet package, Install-ScNugetPackage is now able to install multiple NuGet packages
to multiple locations inside the web-root. Optionally a fix version or a version pattern can be specified for each package.
Read more about the configuration in the Dizzy docs.
How to migrate from Install-Frontend to Install-ScNugetPackage
To be able to use the Install-ScNugetPackage feature in your project you need to perform the following steps:
- Update Dizzy to a version newer than 3.0
- Add the
NugetPackages
config key in the Bob.config according to Dizzy docs.The
FrontendPackageand the
FrontendOutputDirectoryPath` can then be removed from the Bob.config. - Update Scoop to at least version 2.3
- Add
<BumpInstallNugetPackages>1</BumpInstallNugetPackages>
and<BumpDisableInstallFrontend>1</BumpDisableInstallFrontend>
to the Bob.config - If you have an
Install-Frontend
command in your commands.json, update it accordingaly - On TeamCity, disable the
Install Frontend
step