diff --git a/MP.Land/Components/HomeLink.razor b/MP.Land/Components/HomeLink.razor
index ff6dcaa4..e7eaef7e 100644
--- a/MP.Land/Components/HomeLink.razor
+++ b/MP.Land/Components/HomeLink.razor
@@ -118,7 +118,7 @@ else // disegno box non cliccabile e licenza mancante
protected string fullUrl(string relUrl)
{
- return $"{Configuration["BaseUrl"]}{relUrl}";
+ return $"{Configuration["ServerConf:BaseUrl"]}{relUrl}";
}
protected MarkupString traduci(string lemma)
diff --git a/MP.Land/Components/SingleDownload.razor.cs b/MP.Land/Components/SingleDownload.razor.cs
index be21c56a..4a2dc4d9 100644
--- a/MP.Land/Components/SingleDownload.razor.cs
+++ b/MP.Land/Components/SingleDownload.razor.cs
@@ -81,12 +81,12 @@ namespace MP.Land.Components
protected string fullUrl(string relUrl)
{
- return $"{Configuration["BaseUrl"]}{relUrl}";
+ return $"{Configuration["ServerConf:BaseUrl"]}{relUrl}";
}
protected string localPath(string localRepo)
{
- return @$"{Configuration["downloadPath"]}\{localRepo}\{Configuration["appVers"]}"; ;
+ return @$"{Configuration["ServerConf:downloadPath"]}\{localRepo}\{Configuration["appVers"]}"; ;
}
protected override void OnInitialized()
diff --git a/MP.Land/MP.Land.csproj b/MP.Land/MP.Land.csproj
index 65a03fad..7f9fc705 100644
--- a/MP.Land/MP.Land.csproj
+++ b/MP.Land/MP.Land.csproj
@@ -3,7 +3,7 @@
net6.0
MP.Land
- 6.15.2207.0718
+ 6.15.2207.1417
diff --git a/MP.Land/Pages/UpdateManager.razor.cs b/MP.Land/Pages/UpdateManager.razor.cs
index 38c6feaa..5833a384 100644
--- a/MP.Land/Pages/UpdateManager.razor.cs
+++ b/MP.Land/Pages/UpdateManager.razor.cs
@@ -121,7 +121,7 @@ namespace MP.Land.Pages
protected string localPath(string localRepo)
{
- return @$"{Configuration["downloadPath"]}\{localRepo}\{Configuration["appVers"]}"; ;
+ return @$"{Configuration["ServerConf:downloadPath"]}\{localRepo}\{Configuration["appVers"]}"; ;
}
protected override void OnInitialized()
diff --git a/MP.Land/Pages/UserQr.razor.cs b/MP.Land/Pages/UserQr.razor.cs
index 8d6fa48a..fc85f926 100644
--- a/MP.Land/Pages/UserQr.razor.cs
+++ b/MP.Land/Pages/UserQr.razor.cs
@@ -34,7 +34,7 @@ namespace MP.Land.Pages
protected string BaseUrlTab
{
- get => $"{Configuration["BaseUrl"]}{Configuration["QrJumpPath"]}";
+ get => $"{Configuration["ServerConf:BaseUrl"]}{Configuration["QrJumpPath"]}";
}
[Inject]
diff --git a/MP.Land/Resources/ChangeLog.html b/MP.Land/Resources/ChangeLog.html
index 99d9c376..968637e5 100644
--- a/MP.Land/Resources/ChangeLog.html
+++ b/MP.Land/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo gestione Programmi MAPO
- Versione: 6.15.2207.0718
+ Versione: 6.15.2207.1417
Note di rilascio:
diff --git a/MP.Land/Resources/VersNum.txt b/MP.Land/Resources/VersNum.txt
index 6a17f591..99e46279 100644
--- a/MP.Land/Resources/VersNum.txt
+++ b/MP.Land/Resources/VersNum.txt
@@ -1 +1 @@
-6.15.2207.0718
+6.15.2207.1417
diff --git a/MP.Land/Resources/manifest.xml b/MP.Land/Resources/manifest.xml
index 3ccc5980..aadc896a 100644
--- a/MP.Land/Resources/manifest.xml
+++ b/MP.Land/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 6.15.2207.0718
+ 6.15.2207.1417
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/appsettings.Production.json b/MP.Land/appsettings.Production.json
index 18d68259..f06c91e9 100644
--- a/MP.Land/appsettings.Production.json
+++ b/MP.Land/appsettings.Production.json
@@ -1,21 +1,23 @@
{
- "DetailedErrors": true,
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "Environment": "Steam PROD",
- "BaseUrl": "https://iis02.egalware.com/",
- "AllowedHosts": "*",
- "QrJumpPath": "MP/TAB/jumper?",
- "downloadPath": "C:\\Steamware\\installers\\MP",
- "appVers": "stable",
- "ConnectionStrings": {
- "DefaultConnection": "Server=SQL2016DEV;Database=MoonPro;Trusted_Connection=True;MultipleActiveResultSets=true",
- "MP.Land": "Server=SQL2016DEV;Database=MoonPro;User ID=sa;Password=keyhammer16;integrated security=False;MultipleActiveResultSets=True;App=MP.Land;",
- "Redis": "localhost:6379,defaultDatabase=1,keepAlive=180,asyncTimeout=5000"
+ "DetailedErrors": true,
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
}
+ },
+ "Environment": "Steam PROD",
+ "AllowedHosts": "*",
+ "QrJumpPath": "MP/TAB/jumper?",
+ "appVers": "stable",
+ "ConnectionStrings": {
+ "DefaultConnection": "Server=SQL2016DEV;Database=MoonPro;Trusted_Connection=True;MultipleActiveResultSets=true",
+ "MP.Land": "Server=SQL2016DEV;Database=MoonPro;User ID=sa;Password=keyhammer16;integrated security=False;MultipleActiveResultSets=True;App=MP.Land;",
+ "Redis": "localhost:6379,defaultDatabase=1,keepAlive=180,asyncTimeout=5000"
+ },
+ "ServerConf": {
+ "BaseUrl": "https://iis02.egalware.com/",
+ "downloadPath": "C:\\Steamware\\installers\\MP"
+ }
}
\ No newline at end of file
diff --git a/MP.Land/appsettings.Staging.json b/MP.Land/appsettings.Staging.json
index 85cfe9d8..39cd400b 100644
--- a/MP.Land/appsettings.Staging.json
+++ b/MP.Land/appsettings.Staging.json
@@ -8,5 +8,8 @@
}
},
"Environment": "Steam DEV",
- "BaseUrl": "https://iis01.egalware.com/"
+ "ServerConf": {
+ "BaseUrl": "https://iis01.egalware.com/",
+ "downloadPath": "C:\\Steamware\\installers\\MP"
+ }
}
\ No newline at end of file
diff --git a/MP.Land/appsettings.json b/MP.Land/appsettings.json
index a1d65135..85409886 100644
--- a/MP.Land/appsettings.json
+++ b/MP.Land/appsettings.json
@@ -7,15 +7,17 @@
}
},
"AllowedHosts": "*",
- "BaseUrl": "https://localhost:44309/",
"QrJumpPath": "MP/TAB/jumper?",
"Environment": "Steam DEV",
- "downloadPath": "C:\\Steamware\\installers\\MP",
"appVers": "stable",
"ConnectionStrings": {
"DefaultConnection": "Server=SQL2016DEV;Database=MoonPro;Trusted_Connection=True;MultipleActiveResultSets=true",
"MP.Land": "Server=SQL2016DEV;Database=MoonPro;User ID=sa;Password=keyhammer16;integrated security=False;MultipleActiveResultSets=True;App=MP.Land;",
"Redis": "localhost:6379,defaultDatabase=1,keepAlive=180,asyncTimeout=5000"
+ },
+ "ServerConf": {
+ "BaseUrl": "https://localhost:44309/",
+ "downloadPath": "C:\\Steamware\\installers\\MP"
}
//"ConnectionStrings": {
// "DefaultConnection": "Server=SQL2016PROD;Database=Jetco_MoonPro_Prod;Trusted_Connection=True;MultipleActiveResultSets=true",