From c5ca5727bee6b518eadce5fedc0ec95500e24ff2 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Tue, 16 Sep 2025 09:53:37 +0200 Subject: [PATCH 1/5] Aggiunta files nuspec x compilare specifiche --- SteamWare.IO/SteamWare.IO.nuspec | 10 ++++++++++ SteamWare.Logger/SteamWare.Logger.nuspec | 10 ++++++++++ SteamWare.Reports/SteamWare.Reports.nuspec | 10 ++++++++++ SteamWare/SteamWare.nuspec | 10 ++++++++++ Steamware.Scheduler/SteamWare.Scheduler.nuspec | 10 ++++++++++ 5 files changed, 50 insertions(+) create mode 100644 SteamWare.IO/SteamWare.IO.nuspec create mode 100644 SteamWare.Logger/SteamWare.Logger.nuspec create mode 100644 SteamWare.Reports/SteamWare.Reports.nuspec create mode 100644 SteamWare/SteamWare.nuspec create mode 100644 Steamware.Scheduler/SteamWare.Scheduler.nuspec diff --git a/SteamWare.IO/SteamWare.IO.nuspec b/SteamWare.IO/SteamWare.IO.nuspec new file mode 100644 index 0000000..98b80da --- /dev/null +++ b/SteamWare.IO/SteamWare.IO.nuspec @@ -0,0 +1,10 @@ + + + + SteamWare + 5.4.2509.1610 + Samuele E. Locatelli + Steamware IO helper lib for framework projects + false + + diff --git a/SteamWare.Logger/SteamWare.Logger.nuspec b/SteamWare.Logger/SteamWare.Logger.nuspec new file mode 100644 index 0000000..c5d6016 --- /dev/null +++ b/SteamWare.Logger/SteamWare.Logger.nuspec @@ -0,0 +1,10 @@ + + + + SteamWare + 5.4.2509.1610 + Samuele E. Locatelli + Steamware Logger helper lib for framework projects + false + + diff --git a/SteamWare.Reports/SteamWare.Reports.nuspec b/SteamWare.Reports/SteamWare.Reports.nuspec new file mode 100644 index 0000000..e0fd2fd --- /dev/null +++ b/SteamWare.Reports/SteamWare.Reports.nuspec @@ -0,0 +1,10 @@ + + + + SteamWare + 5.4.2509.1610 + Samuele E. Locatelli + Steamware Reports helper lib for framework projects + false + + diff --git a/SteamWare/SteamWare.nuspec b/SteamWare/SteamWare.nuspec new file mode 100644 index 0000000..537b821 --- /dev/null +++ b/SteamWare/SteamWare.nuspec @@ -0,0 +1,10 @@ + + + + SteamWare + 5.4.2509.1610 + Samuele E. Locatelli + Steamware global helper lib for framework projects + false + + diff --git a/Steamware.Scheduler/SteamWare.Scheduler.nuspec b/Steamware.Scheduler/SteamWare.Scheduler.nuspec new file mode 100644 index 0000000..d49d5d4 --- /dev/null +++ b/Steamware.Scheduler/SteamWare.Scheduler.nuspec @@ -0,0 +1,10 @@ + + + + SteamWare + 5.4.2509.1610 + Samuele E. Locatelli + Steamware Scheduler helper lib for framework projects + false + + From b10174881d4e34a4b50536b68be335dcb51a5fd3 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Tue, 16 Sep 2025 09:59:18 +0200 Subject: [PATCH 2/5] Test CI/CD con fix nuspec --- .gitlab-ci.yml | 46 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 36 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cdd9d25..7feaba4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,8 +45,33 @@ variables: $newContenuto | Set-Content -Path $fileNameAss # display versioni generate $resoconto = "Effettuato fix file nuspec | release v: " + $env:NUM_REL + " | debug v: " + $env:NUM_DEB; + # sistemo anche versioni in file nuspec Write-Output $resoconto; +# helper x fix nuspec file: se debug aggiunge -beta nel blocco 3 del SemVer +.nuspec-fix: &nuspec-fix + - | + echo "Modifica dati versione pacchetto nuget" + $fileNameRel = "$env:APP_NAME/$env:APP_NAME.nuspec"; + $fileContent = Get-Content $fileNameRel -Raw; + $pattern = '(?i)\s*(.*?)\s*' + $vers = if ($fileContent -match $pattern) { $matches[1] } else { $null } + echo "Versione corrente: $vers | NugetType: $env:NU_TYPE" + if ($env:NU_TYPE -eq "Debug") + { + $env:NUM_REL = $vers -replace '^(\d+)\.(\d+)\.(\d+)\.(\d+)$', '$1.$2.$3-beta.$4' + } + elseif($env:NU_TYPE -eq "Release") + { + $env:NUM_REL = $vers + } + echo "Versione calcolata: $env:NUM_REL" + $findVers = "(.|\n)*?"; + $replVers = "" + $env:NUM_REL + ""; + $newContent = $fileContent -replace $findVers, $replVers; + Set-Content -Path $fileNameRel -Value $newContent; + echo "Modifica dati file progetto x nuspec completata su file $fileNameRel" + stages: - build - staging @@ -149,7 +174,8 @@ SteamWare.IO:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' + - *nuspec-fix + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -171,7 +197,7 @@ SteamWare.Logger:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -193,7 +219,7 @@ SteamWare:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -215,7 +241,7 @@ SteamWare.Reports:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -237,7 +263,7 @@ SteamWare.Scheduler:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -262,7 +288,7 @@ SteamWare.IO:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -284,7 +310,7 @@ SteamWare.Logger:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -306,7 +332,7 @@ SteamWare:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -328,7 +354,7 @@ SteamWare.Reports:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -350,7 +376,7 @@ SteamWare.Scheduler:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' - - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' + - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' From 0d526157761c9d85ab6656f2afd32856b6ab001d Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Tue, 16 Sep 2025 10:03:34 +0200 Subject: [PATCH 3/5] Maybe fix yaml correzione vers --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7feaba4..db22874 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,7 +54,7 @@ variables: echo "Modifica dati versione pacchetto nuget" $fileNameRel = "$env:APP_NAME/$env:APP_NAME.nuspec"; $fileContent = Get-Content $fileNameRel -Raw; - $pattern = '(?i)\s*(.*?)\s*' + $pattern = '(?i)\s*(.*?)\s*' $vers = if ($fileContent -match $pattern) { $matches[1] } else { $null } echo "Versione corrente: $vers | NugetType: $env:NU_TYPE" if ($env:NU_TYPE -eq "Debug") @@ -66,8 +66,8 @@ variables: $env:NUM_REL = $vers } echo "Versione calcolata: $env:NUM_REL" - $findVers = "(.|\n)*?"; - $replVers = "" + $env:NUM_REL + ""; + $findVers = "(.|\n)*?"; + $replVers = "" + $env:NUM_REL + ""; $newContent = $fileContent -replace $findVers, $replVers; Set-Content -Path $fileNameRel -Value $newContent; echo "Modifica dati file progetto x nuspec completata su file $fileNameRel" From acc73924580fdb99fb556df3af1a5dbdb3c7c92a Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Tue, 16 Sep 2025 10:05:03 +0200 Subject: [PATCH 4/5] Aggiunta step nuget fix --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db22874..1487ec4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -197,6 +197,7 @@ SteamWare.Logger:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -219,6 +220,7 @@ SteamWare:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -241,6 +243,7 @@ SteamWare.Reports:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -263,6 +266,7 @@ SteamWare.Scheduler:staging: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -288,6 +292,7 @@ SteamWare.IO:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -310,6 +315,7 @@ SteamWare.Logger:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -332,6 +338,7 @@ SteamWare:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -354,6 +361,7 @@ SteamWare.Reports:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' @@ -376,6 +384,7 @@ SteamWare.Scheduler:release: - *version-fix script: - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m' + - *nuspec-fix - '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.nuspec" -properties Configuration=$env:CONFIG -Version $env:NUM_REL' - '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted' - '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted' From 9e9a76f7701a6a4c87cff12807a812604b22f386 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Tue, 16 Sep 2025 10:21:01 +0200 Subject: [PATCH 5/5] Fix nuspec conf --- SteamWare.IO/SteamWare.IO.nuspec | 2 +- SteamWare.Logger/SteamWare.Logger.nuspec | 2 +- SteamWare.Reports/SteamWare.Reports.nuspec | 2 +- Steamware.Scheduler/SteamWare.Scheduler.nuspec | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SteamWare.IO/SteamWare.IO.nuspec b/SteamWare.IO/SteamWare.IO.nuspec index 98b80da..8ccdc50 100644 --- a/SteamWare.IO/SteamWare.IO.nuspec +++ b/SteamWare.IO/SteamWare.IO.nuspec @@ -4,7 +4,7 @@ SteamWare 5.4.2509.1610 Samuele E. Locatelli - Steamware IO helper lib for framework projects + Steamware IO helper lib for framework projects false diff --git a/SteamWare.Logger/SteamWare.Logger.nuspec b/SteamWare.Logger/SteamWare.Logger.nuspec index c5d6016..4099475 100644 --- a/SteamWare.Logger/SteamWare.Logger.nuspec +++ b/SteamWare.Logger/SteamWare.Logger.nuspec @@ -4,7 +4,7 @@ SteamWare 5.4.2509.1610 Samuele E. Locatelli - Steamware Logger helper lib for framework projects + Steamware Logger helper lib for framework projects false diff --git a/SteamWare.Reports/SteamWare.Reports.nuspec b/SteamWare.Reports/SteamWare.Reports.nuspec index e0fd2fd..2f056a7 100644 --- a/SteamWare.Reports/SteamWare.Reports.nuspec +++ b/SteamWare.Reports/SteamWare.Reports.nuspec @@ -4,7 +4,7 @@ SteamWare 5.4.2509.1610 Samuele E. Locatelli - Steamware Reports helper lib for framework projects + Steamware Reports helper lib for framework projects false diff --git a/Steamware.Scheduler/SteamWare.Scheduler.nuspec b/Steamware.Scheduler/SteamWare.Scheduler.nuspec index d49d5d4..aa7080b 100644 --- a/Steamware.Scheduler/SteamWare.Scheduler.nuspec +++ b/Steamware.Scheduler/SteamWare.Scheduler.nuspec @@ -4,7 +4,7 @@ SteamWare 5.4.2509.1610 Samuele E. Locatelli - Steamware Scheduler helper lib for framework projects + Steamware Scheduler helper lib for framework projects false