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.
5 lines
313 B
5 lines
313 B
#!/usr/bin/env pwsh |
|
# Restore all NuGet packages for ILSpy.sln, honouring the committed packages.lock.json files. |
|
# Use updatedeps.ps1 instead when you have changed a PackageVersion and need to refresh the locks. |
|
$ErrorActionPreference = 'Stop' |
|
dotnet restore ILSpy.sln -p:RestoreEnablePackagePruning=false @args
|
|
|