Should '*.deps.json' file be distributed along with the assembly or inside nuget packages?

Viewed 933

Should *.deps.json files be distributed along with the assembly or inside the nuget packages?

1 Answers

You typically only need one .deps.json file per console or web application, not per assembly. Class libraries in NuGet packages don’t need to bundle a deps.json file.

Related