atomui/build/!Nuget.bat
2024-08-25 22:13:40 +08:00

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