How to create a new package in a specific folder?

We save our NuGet packages in a network folder. I want to update the package in the feed using the New-Package command. Is there a parameter like Output path or a better method for this?

Update:

I can specify the output file with the -TargetFile parameter, but then I must specify the full file name for the package. I still want to use the default naming, so the version is included in the file name, I just want to specify the folder. Any idea how I can do this?

Unfortunately, the New-Package team has been removed by NuGet 1.7.

+4
source share
1 answer

I think the easiest solution is to create a local package and copy it to a network folder manually. Or am I missing something?

+1
source

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


All Articles