mirror of
https://gitee.com/chinware/atomui.git
synced 2024-11-29 18:38:16 +08:00
8 lines
146 B
Batchfile
8 lines
146 B
Batchfile
cd %~dp0
|
|
@set dir="..\_output\Nuget"
|
|
|
|
for %%f in (%dir%\*.nupkg) do (
|
|
dotnet nuget push %%f --source "D:\nuget.local"
|
|
)
|
|
|
|
pause |