mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
341 B
6 lines
341 B
#!/usr/bin/env pwsh |
|
# Re-resolve every dependency and rewrite the packages.lock.json files. |
|
# Run this after changing a PackageVersion in Directory.Packages.props (or adding a package), |
|
# then commit the updated lock files. |
|
$ErrorActionPreference = 'Stop' |
|
dotnet restore ILSpy.sln --force-evaluate -p:RestoreEnablePackagePruning=false @args
|
|
|