Reputation: 38468
We are keeping our NuGet packages on a network folder. I want to update the package on feed with New-Package
command. Is there a parameter like Output path or a better method for this?
Update:
I can specify the output file with -TargetFile
parameter but then I have to state the full file name for the package. I still want to use default naming so version is included in filename, I just want to state the folder. Any idea how I can do that?
Unfortunately New-Package command has been removed by NuGet 1.7.
Upvotes: 4
Views: 756
Reputation: 657
I think the simplest solution is to build your package locally and copy them to the network folder by hand. Or am I missing something?
Upvotes: 1