LAND
- folder IOB upload esplicitata in config x esteso
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<RootNamespace>MP.Land</RootNamespace>
|
||||
<Version>6.16.2410.2117</Version>
|
||||
<Version>6.16.2410.2215</Version>
|
||||
<Configurations>Debug;Release;Debug_LiManDebug</Configurations>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -385,13 +385,15 @@ namespace MP.Land.Pages
|
||||
{
|
||||
Directory.CreateDirectory(dstDir);
|
||||
}
|
||||
string srcIobDir = Path.Combine(AppDir.Parent.FullName, "IO", "fileUpload");
|
||||
// recupero IOB folder relativa alla parent dir
|
||||
//string srcIobDir = Path.Combine(AppDir.Parent.FullName, "IO", "fileUpload");
|
||||
string srcIobDir = Configuration.GetValue<string>("ServerConf:IobUploadPath");
|
||||
// recupero elenco files tipo appsettings*.json
|
||||
if (Directory.Exists(srcIobDir))
|
||||
{
|
||||
var dirInfo = new DirectoryInfo(srcIobDir);
|
||||
// recupero files CORE
|
||||
List<FileInfo> fileList = dirInfo.GetFiles().ToList();
|
||||
List<FileInfo> fileList = dirInfo.GetFiles("*", SearchOption.AllDirectories).ToList();
|
||||
// procedo!
|
||||
foreach (var file in fileList)
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>Modulo Tablet MAPO - DotNet6</i>
|
||||
<h4>Versione: 6.16.2410.2117</h4>
|
||||
<h4>Versione: 6.16.2410.2215</h4>
|
||||
<br />
|
||||
Note di rilascio:
|
||||
<ul>
|
||||
|
||||
@@ -1 +1 @@
|
||||
6.16.2410.2117
|
||||
6.16.2410.2215
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>6.16.2410.2117</version>
|
||||
<version>6.16.2410.2215</version>
|
||||
<url>https://nexus.steamware.net/repository/SWS/MP-LAND/stable/LAST/MP.Land.zip</url>
|
||||
<changelog>https://nexus.steamware.net/repository/SWS/MP-LAND/stable/LAST/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
@@ -1,11 +1,18 @@
|
||||
{
|
||||
//"DetailedErrors": true,
|
||||
//"Logging": {
|
||||
// "LogLevel": {
|
||||
// "Default": "Information",
|
||||
// "Microsoft": "Warning",
|
||||
// "Microsoft.Hosting.Lifetime": "Information"
|
||||
// }
|
||||
//},
|
||||
"Environment": "Steam DEV"
|
||||
"DetailedErrors": true,
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"Environment": "Steam DEV",
|
||||
"ServerConf": {
|
||||
"BaseUrl": "https://localhost:44309/",
|
||||
"CodApp": "MP-LAND",
|
||||
"IobUploadPath": "\\\\iis01\\c$\\inetpub\\wwwroot\\MP\\fileUpload",
|
||||
"Modulo": "MoonPro",
|
||||
"downloadPath": "C:\\Steamware\\installers\\MP"
|
||||
}
|
||||
}
|
||||
@@ -19,6 +19,7 @@
|
||||
},
|
||||
"ServerConf": {
|
||||
"BaseUrl": "https://iis02.egalware.com/",
|
||||
"IobUploadPath": "C:\\inetpub\\wwwroot\\MP\\fileUpload",
|
||||
"downloadPath": "C:\\Steamware\\installers\\MP"
|
||||
}
|
||||
}
|
||||
@@ -66,9 +66,10 @@
|
||||
"SafePages": "||LAND|Home|Index|About|Help|Unauthorized|"
|
||||
},
|
||||
"ServerConf": {
|
||||
"CodApp": "MP-LAND",
|
||||
"Modulo": "MoonPro",
|
||||
"BaseUrl": "https://localhost:44309/",
|
||||
"CodApp": "MP-LAND",
|
||||
"IobUploadPath": "C:\\inetpub\\wwwroot\\MP\\fileUpload",
|
||||
"Modulo": "MoonPro",
|
||||
"downloadPath": "C:\\Steamware\\installers\\MP"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user