Should *.deps.json
files be distributed along with the assembly or inside the nuget packages?
Asked
Active
Viewed 1,246 times
22

Mohsen Esmailpour
- 11,224
- 3
- 45
- 66

Pawel Lesnikowski
- 6,264
- 4
- 38
- 42
-
An out-of-the-box csproj project, when built and packaged, does not include the deps.json files, if that helps... – Peter Ritchie Jan 12 '18 at 14:17
1 Answers
9
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.

natemcmaster
- 25,673
- 6
- 78
- 100