Description
Describe the Bug
Hi!
I'm working on an application which needs to install and use nupkg-s runtime, and also we are developing a VSIX which has a project template for our customers to be able to create these nupkg-s. We have strict regulations for our software's nupkg install.
We recently switched from packages.config to PackageReference, and from NuGet.exe command line to NuGetizer 1.1.1. in the VSIX.
I need to imitate the DevelopementDependency attribute from packages.config and I can with NuGet.exe but I cannot with NuGetizer.
This is my setup in the csproj:
The outcome with NuGet.exe (which we except):
The outcome with NuGetizer.1.1.1
Expected Behavior
We except the behavior what NuGet.exe already does:
- We don't want to include the dll's into the lib folder as we already load them in our own software, also we have strict dll loading regulations and we cannot load these from outside.
- We don't want these nupkg-s to appear as dependencies in the nupkg.
Version Info
NuGetizer.1.1.1 and NuGet.commandline 6.7.0
Additional Info
We found a workaround: Simply remove the dlls from the nupkg with an afterpack build script, which is very odd and we would be very happy with the right solution.
Also we tried a bunch of and combinations, none of them worked, neither the one at the bottom of the following page, which is a NuGet recommendation