diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 15e81b2e..b8c465da 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,8 +4,6 @@ variables:
ASPNET_MERGE_PATH: 'C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools'
EXE_RELEASE_FOLDER: 'c:\Projetcs\Compiled\MP-CORE\Release'
DEPLOY_FOLDER: 'c:\Projects\Deploy\MP-CORE\Builds'
- VERS_MAIN: '1.1'
-# VERS_FULL: '0.0.0.0'
NEXUS_PATH: 'MP-STATS'
APP_NAME: 'MP.Stats'
diff --git a/MP.Land/MP.Land.csproj b/MP.Land/MP.Land.csproj
index 56441fbc..da550e72 100644
--- a/MP.Land/MP.Land.csproj
+++ b/MP.Land/MP.Land.csproj
@@ -3,7 +3,7 @@
net5.0
MP.Land
- 1.1.2109.2118
+ 6.14.2109.2210
diff --git a/MP.Land/Resources/ChangeLog.html b/MP.Land/Resources/ChangeLog.html
index f889f1c9..f8815611 100644
--- a/MP.Land/Resources/ChangeLog.html
+++ b/MP.Land/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo gestione Programmi MAPO
- Versione: 1.1.2109.2118
+ Versione: 6.14.2109.2210
Note di rilascio:
diff --git a/MP.Land/Resources/VersNum.txt b/MP.Land/Resources/VersNum.txt
index 8df6c9f5..d49aa6ef 100644
--- a/MP.Land/Resources/VersNum.txt
+++ b/MP.Land/Resources/VersNum.txt
@@ -1 +1 @@
-1.1.2109.2118
+6.14.2109.2210
diff --git a/MP.Land/Resources/manifest.xml b/MP.Land/Resources/manifest.xml
index 29e07ccd..bdfeebf4 100644
--- a/MP.Land/Resources/manifest.xml
+++ b/MP.Land/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 1.1.2109.2118
+ 6.14.2109.2210
https://nexus.steamware.net/repository/SWS/MP-LAND/stable/LAST/MP.Land.zip
https://nexus.steamware.net/repository/SWS/MP-LAND/stable/LAST/ChangeLog.html
false
diff --git a/MP.Land/post-build.ps1 b/MP.Land/post-build.ps1
index b0923e85..eb2a52a0 100644
--- a/MP.Land/post-build.ps1
+++ b/MP.Land/post-build.ps1
@@ -1,15 +1,16 @@
param([string]$ProjectDir, [string]$ProjectPath);
-$FileVers="Resources\VersNum.txt"
-$FileManIn="Resources\manifest-original.xml"
-$FileManOut="Resources\manifest.xml"
-$FileCLogIn="Resources\ChangeLog-original.html"
-$FileCLogOut="Resources\ChangeLog.html"
-$MajMin="1.1."
+$FileMajMin = "..\MajMin.vers"
+$FileVers = "Resources\VersNum.txt"
+$FileManIn = "Resources\manifest-original.xml"
+$FileManOut = "Resources\manifest.xml"
+$FileCLogIn = "Resources\ChangeLog-original.html"
+$FileCLogOut = "Resources\ChangeLog.html"
+$MajMin = Get-Content $FileMajMin # "6.14."
$currentDate = get-date -format yyMM;
$currentTime = get-date -format ddHH;
$find = "(.|\n)*?";
-$currRelNum=$MajMin + $currentDate +"." + $currentTime
+$currRelNum = $MajMin + $currentDate +"." + $currentTime
$replace = "" + $MajMin + $currentDate +"." + $currentTime + "";
$csproj = Get-Content $ProjectPath
$csprojUpdated = $csproj -replace $find, $replace
diff --git a/MP.Prog/post-build.ps1 b/MP.Prog/post-build.ps1
index bc301c2a..7b829f79 100644
--- a/MP.Prog/post-build.ps1
+++ b/MP.Prog/post-build.ps1
@@ -1,15 +1,16 @@
param([string]$ProjectDir, [string]$ProjectPath);
-$FileVers="Resources\VersNum.txt"
-$FileManIn="Resources\manifest-original.xml"
-$FileManOut="Resources\manifest.xml"
-$FileCLogIn="Resources\ChangeLog-original.html"
-$FileCLogOut="Resources\ChangeLog.html"
-$MajMin="1.1."
+$FileMajMin = "..\MajMin.vers"
+$FileVers = "Resources\VersNum.txt"
+$FileManIn = "Resources\manifest-original.xml"
+$FileManOut = "Resources\manifest.xml"
+$FileCLogIn = "Resources\ChangeLog-original.html"
+$FileCLogOut = "Resources\ChangeLog.html"
+$MajMin = Get-Content $FileMajMin # "6.14."
$currentDate = get-date -format yyMM;
$currentTime = get-date -format ddHH;
$find = "(.|\n)*?";
-$currRelNum=$MajMin + $currentDate +"." + $currentTime
+$currRelNum = $MajMin + $currentDate +"." + $currentTime
$replace = "" + $MajMin + $currentDate +"." + $currentTime + "";
$csproj = Get-Content $ProjectPath
$csprojUpdated = $csproj -replace $find, $replace
diff --git a/MP.Stats/post-build.ps1 b/MP.Stats/post-build.ps1
index 063f4945..931766a0 100644
--- a/MP.Stats/post-build.ps1
+++ b/MP.Stats/post-build.ps1
@@ -1,15 +1,16 @@
param([string]$ProjectDir, [string]$ProjectPath);
-$FileVers="Resources\VersNum.txt"
-$FileManIn="Resources\manifest-original.xml"
-$FileManOut="Resources\manifest.xml"
-$FileCLogIn="Resources\ChangeLog-original.html"
-$FileCLogOut="Resources\ChangeLog.html"
-$MajMin="1.1."
+$FileMajMin = "..\MajMin.vers"
+$FileVers = "Resources\VersNum.txt"
+$FileManIn = "Resources\manifest-original.xml"
+$FileManOut = "Resources\manifest.xml"
+$FileCLogIn = "Resources\ChangeLog-original.html"
+$FileCLogOut = "Resources\ChangeLog.html"
+$MajMin = Get-Content $FileMajMin # "6.14."
$currentDate = get-date -format yyMM;
$currentTime = get-date -format ddHH;
$find = "(.|\n)*?";
-$currRelNum=$MajMin + $currentDate +"." + $currentTime
+$currRelNum = $MajMin + $currentDate +"." + $currentTime
$replace = "" + $MajMin + $currentDate +"." + $currentTime + "";
$csproj = Get-Content $ProjectPath
$csprojUpdated = $csproj -replace $find, $replace
diff --git a/MajMin.vers b/MajMin.vers
new file mode 100644
index 00000000..c4e3f49d
--- /dev/null
+++ b/MajMin.vers
@@ -0,0 +1 @@
+6.14.
\ No newline at end of file