Nuget Packages excludes version in folder names

I currently have a project with nuget packages that are placed in folders according to their different version number

Sample packages /EntityFramework.4.1.10331.0/ ..

Is there a way to update packages and rename folders to exclude version numbers. For this we have packages / EntityFramework /

+6
source share
2 answers

NuGet does not currently support installing packages without a version number. There is a work item tracking this here: Issue No. 1522 . Please comment / vote to emphasize priority.

One way to help with many related scenarios is to enable NuGet Package Recovery .

+1
source

Yes http://docs.nuget.org/docs/reference/command-line-reference

ExcludeVersion If set, the destination folder will contain only the package name and not the version number

+15
source

Source: https://habr.com/ru/post/919668/


All Articles