Neue Server Version + Lokal status.htm aufrufbar

This commit is contained in:
2026-07-09 15:15:30 +02:00
parent bb3ce52d57
commit ceef6b1a76
4 changed files with 3 additions and 16 deletions

View File

@@ -449,17 +449,4 @@
<add key="BeWoPlanerServiceRoot" value="C:\BeWoPlaner" />
</appSettings>
<!-- <> <> <> Appsettings <> <> <> -->
<!-- Serverstatus-Seite nur lokal (Loopback) erreichbar; von außen 404 -->
<location path="status.htm">
<system.webServer>
<security>
<ipSecurity allowUnlisted="false" denyAction="NotFound">
<clear />
<add ipAddress="127.0.0.1" allowed="true" />
<add ipAddress="::1" allowed="true" />
</ipSecurity>
</security>
</system.webServer>
</location>
</configuration>

View File

@@ -48,7 +48,7 @@ namespace BeWo.Service.ServiceImplementations.Enhanced
ServerTime = DateTime.Now.ToString("o"),
AssemblyVersion = Assembly.GetExecutingAssembly()
.GetName().Version?.ToString() ?? "unbekannt",
ServerVersion = BeWoAppInfo.BeWoAppVersion,
ServerVersion = BeWoAppInfo.BeWoAppVersion.ToString(),
Services = new List<ServiceStatusDC>()
};

View File

@@ -14,7 +14,7 @@ namespace BS.Shared
{
var baseVersion = new Version("3.32");
var stage = BeWoClientReleaseStage.Sandbox;
var stageVersion = new Version("5.2.1");
var stageVersion = new Version("5.2.2");
var feature = BeWoClientFeature.AI;
#if !DEBUG

View File

@@ -15,7 +15,7 @@ namespace BS.Shared.DataContracts
public string ServerTime { get; set; }
[DataMember]
public BeWoAppVersion ServerVersion { get; set; }
public string ServerVersion { get; set; }
[DataMember]
public string AssemblyVersion { get; set; }