mirror of
https://gitee.com/chinware/atomui.git
synced 2024-11-29 18:38:16 +08:00
7 lines
173 B
Batchfile
7 lines
173 B
Batchfile
@set dir="..\_output\Nuget"
|
|
|
|
for %%f in (%dir%\*.nupkg) do (
|
|
dotnet nuget push %%f --api-key [key] --source https://api.nuget.org/v3/index.json
|
|
)
|
|
|
|
pause |