Skip to content

Working with dependencies in .NET

NuGet

Creating a packages.lock.json file

  1. Enable lock-file support (for .NET 5 and above):

    dotnet nuget locals all --clear
    

  2. Install dependencies:

    dotnet restore --use-lock-file
    

Creating a paket.lock file

  1. Create a lock-file:
    paket install