- folder IOB upload esplicitata in config x esteso
This commit is contained in:
Samuele Locatelli
2024-10-22 15:16:45 +02:00
parent 042c57c18c
commit 15dc9b4334
8 changed files with 28 additions and 17 deletions
+1 -1
View File
@@ -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>
+4 -2
View File
@@ -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 -1
View File
@@ -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
View File
@@ -1 +1 @@
6.16.2410.2117
6.16.2410.2215
+1 -1
View File
@@ -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>
+16 -9
View File
@@ -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"
}
}
+1
View File
@@ -19,6 +19,7 @@
},
"ServerConf": {
"BaseUrl": "https://iis02.egalware.com/",
"IobUploadPath": "C:\\inetpub\\wwwroot\\MP\\fileUpload",
"downloadPath": "C:\\Steamware\\installers\\MP"
}
}
+3 -2
View File
@@ -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"
}
}