color and fluent icons

This commit is contained in:
Pascal
2025-04-16 13:59:16 +02:00
parent 19c27f91a5
commit ad34f83467
13237 changed files with 266521 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
@echo off
set sourceP="https://git.pilzinsel64.de/api/v4/projects/35/packages/nuget/index.json"
set apikeyP=%GitLab_git_pilzinsel64_de%
set sourceN="https://api.nuget.org/v3/index.json"
set apikeyN=%NuGet_ApiKey%
for %%x in (%*) do (
dotnet nuget push "%%x" --source "%sourceP%" --api-key "%apikeyP%" --skip-duplicate
dotnet nuget push "%%x" --source "%sourceN%" --api-key "%apikeyN%" --skip-duplicate
)
pause