diff --git a/MP.Land/MP.Land.csproj b/MP.Land/MP.Land.csproj
index 243ca7f5..56441fbc 100644
--- a/MP.Land/MP.Land.csproj
+++ b/MP.Land/MP.Land.csproj
@@ -3,7 +3,7 @@
net5.0
MP.Land
- 1.1.2109.2117
+ 1.1.2109.2118
diff --git a/MP.Land/Resources/ChangeLog.html b/MP.Land/Resources/ChangeLog.html
index 65defe79..f889f1c9 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.2117
+ Versione: 1.1.2109.2118
Note di rilascio:
diff --git a/MP.Land/Resources/VersNum.txt b/MP.Land/Resources/VersNum.txt
index adec9491..8df6c9f5 100644
--- a/MP.Land/Resources/VersNum.txt
+++ b/MP.Land/Resources/VersNum.txt
@@ -1 +1 @@
-1.1.2109.2117
+1.1.2109.2118
diff --git a/MP.Land/Resources/manifest.xml b/MP.Land/Resources/manifest.xml
index 12c7de33..bb5342cc 100644
--- a/MP.Land/Resources/manifest.xml
+++ b/MP.Land/Resources/manifest.xml
@@ -1,7 +1,7 @@
-
- 1.1.2109.2117
- https://nexus.steamware.net/repository/SWS/MP-PROG/stable/LAST/MP.Land.zip
- https://nexus.steamware.net/repository/SWS/MP-PROG/stable/LAST/ChangeLog.html
+ 1.1.2109.2118
+ https://nexus.steamware.net/repository/SWS/MP-LAND2/stable/LAST/MP.Land.zip
+ https://nexus.steamware.net/repository/SWS/MP-LAND2/stable/LAST/ChangeLog.html
false
diff --git a/MP.Land/appsettings.Development.json b/MP.Land/appsettings.Development.json
index fb218b9a..5b3b5de7 100644
--- a/MP.Land/appsettings.Development.json
+++ b/MP.Land/appsettings.Development.json
@@ -6,5 +6,6 @@
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
- }
+ },
+ "Environment": "Steam DEV"
}
\ No newline at end of file
diff --git a/MP.Land/appsettings.Production.json b/MP.Land/appsettings.Production.json
index eb20bdad..00472d88 100644
--- a/MP.Land/appsettings.Production.json
+++ b/MP.Land/appsettings.Production.json
@@ -9,8 +9,9 @@
},
"AllowedHosts": "*",
"BaseUrl": "IIS02",
+ "Environment": "PROD",
"ConnectionStrings": {
- "DefaultConnection": "Server=localhost\\SQLEXPRESS;Database=MoonPro_PROG;Trusted_Connection=True;MultipleActiveResultSets=true",
- "MP.Land": "Server=localhost\\SQLEXPRESS;Database=MoonPro_PROG;User ID=sa;Password=keyhammer16;integrated security=False;MultipleActiveResultSets=True;App=MP.Land;"
+ "DefaultConnection": "Server=localhost\\SQLEXPRESS;Database=MoonPro;Trusted_Connection=True;MultipleActiveResultSets=true",
+ "MP.Land": "Server=localhost\\SQLEXPRESS;Database=MoonPro;User ID=sa;Password=keyhammer16;integrated security=False;MultipleActiveResultSets=True;App=MP.Land;"
}
}
\ No newline at end of file
diff --git a/MP.Land/appsettings.Staging.json b/MP.Land/appsettings.Staging.json
index e5865059..332ade81 100644
--- a/MP.Land/appsettings.Staging.json
+++ b/MP.Land/appsettings.Staging.json
@@ -9,8 +9,5 @@
},
"AllowedHosts": "*",
"BaseUrl": "IIS01",
- "ConnectionStrings": {
- "DefaultConnection": "Server=SQL2016DEV;Database=MoonPro_PROG;Trusted_Connection=True;MultipleActiveResultSets=true",
- "MP.Land": "Server=SQL2016DEV;Database=MoonPro_PROG;User ID=sa;Password=keyhammer16;integrated security=False;MultipleActiveResultSets=True;App=MP.Land;"
- }
+ "Environment": "Steam STAG"
}
\ No newline at end of file
diff --git a/MP.Land/post-build.ps1 b/MP.Land/post-build.ps1
index be5d6089..fa3e9f99 100644
--- a/MP.Land/post-build.ps1
+++ b/MP.Land/post-build.ps1
@@ -20,7 +20,7 @@ Set-Content -Path $FileVers -Value $currRelNum
# replace x manifest
$manData = Get-Content $FileManIn
$manData = $manData -replace "1.0.0.0", $currRelNum
-$manData = $manData -replace "{{DIRNAME}}", "MP-PROG"
+$manData = $manData -replace "{{DIRNAME}}", "MP-LAND2"
$manData = $manData -replace "{{BRANCHNAME}}", "stable/LAST"
$manData = $manData -replace "{{PACKNAME}}", "MP.Land"
Set-Content -Path $FileManOut -Value $manData