Skip to content

How do I migrate to Paket from NuGet?

Paket is a fully featured package manager that acts as an alternative to the NuGet package manager.

It can help you reference libraries from NuGet, Git repositories or Http resources. It also provides precise control over your dependencies, separating direct and transitive references and capturing the exact configuration with each commit. You can find out more at the Paket website.

Note that the standard template uses Paket by default. This recipe only applies to the minimal template.


1. Install and restore Paket

dotnet tool install paket
dotnet tool restore

2. Run the Migration

Run this command to move existing NuGet references to Paket from your packages.config or .fsproj file:

dotnet paket convert-from-nuget

This will add three files to your solution, all of which should be committed to source control:

  • paket.dependencies: This will be at the solution root and contains the top level list of dependencies for your project. It is also used to specify any rules such as where they should be downloaded from and which versions etc.
  • paket.lock: This will also be at the solution root and contains the concrete resolution of all direct and transitive dependencies.
  • paket.references: There will be one of these in each project directory. It simply specifies which packages the project requires.

For a more detailed explanation of this process see the official migration guide.

In the case where you have added a NuGet project to a solution which is already using paket, run this command with the option --force.

If you are working in Visual Studio and wish to see your Paket files in the Solution Explorer, you will need to add both the paket.lock and any paket.references files created in your project directories during the last step to your solution.