From 4f60f6ccc14b2104620fa333176f0e1ca8916c24 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 8 Aug 2025 09:16:59 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20rel=20vers=20number=20x=20compatibilit?= =?UTF-8?q?=C3=A0=20comando=20nuget=20pack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebWindowConfigurator/WebWindowConfigurator.csproj | 3 ++- WebWindowConfigurator/post-build.ps1 | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/WebWindowConfigurator/WebWindowConfigurator.csproj b/WebWindowConfigurator/WebWindowConfigurator.csproj index bc04c32..91b5a9c 100644 --- a/WebWindowConfigurator/WebWindowConfigurator.csproj +++ b/WebWindowConfigurator/WebWindowConfigurator.csproj @@ -4,7 +4,7 @@ net8.0 enable enable - 2.7.8.0719 + 2.7.8.809 Annamaria Sassi Egalware Componente gestione JWD per LUX @@ -41,3 +41,4 @@ + diff --git a/WebWindowConfigurator/post-build.ps1 b/WebWindowConfigurator/post-build.ps1 index bc77ab7..0015dbe 100644 --- a/WebWindowConfigurator/post-build.ps1 +++ b/WebWindowConfigurator/post-build.ps1 @@ -10,7 +10,7 @@ $vers = if ($fileContent -match $pattern) { $matches[1] } else { $null } echo "Versione corrente: $vers" # calcolo Rel e Build... $Release = (Get-Date).Month; -$Build = get-date -format ddHH; +$Build = get-date -format dHH; $parts = $vers -split '\.' #$newVers = "$parts[0].$parts[1].$Release.$Build" $newParts = @($parts[0], $parts[1], $Release, $Build)