Skip to content

Commit 3e9af10

Browse files
author
a.vorobiev
committed
Update version numbers and fix names in start up log
1 parent acafa78 commit 3e9af10

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CDP4WebServer/CDP4WebServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<Company>RHEA System S.A.</Company>
77
<Title>CDP4WebServer-CE</Title>
8-
<Version>7.0.5</Version>
8+
<Version>7.0.6</Version>
99
<Description>CDP4 Services Host</Description>
1010
<Copyright>Copyright © RHEA System S.A.</Copyright>
1111
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>

CDP4WebServer/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static int Main(string[] args)
6060
try
6161
{
6262
Logger.Info("################################################################");
63-
Logger.Info($"Starting CDP4 Services v{Assembly.GetEntryAssembly().GetName().Version}");
63+
Logger.Info($"Starting COMET Services v{Assembly.GetEntryAssembly()?.GetName().Version}");
6464

6565
// load application configuration from file
6666
AppConfig.Load();
@@ -88,14 +88,14 @@ public static int Main(string[] args)
8888
{
8989
if (IsRunningOnMono())
9090
{
91-
Logger.Info("CDP4 Services Running on Mono Runtime @ {0}", hostString);
91+
Logger.Info("COMET Services Running on Mono Runtime @ {0}", hostString);
9292

9393
var terminationSignals = GetUnixTerminationSignals();
9494
UnixSignal.WaitAny(terminationSignals);
9595
}
9696
else
9797
{
98-
Logger.Info("CDP4 Services Running on .NET Runtime @ {0}", hostString);
98+
Logger.Info("COMET Services Running on .NET Runtime @ {0}", hostString);
9999

100100
Console.WriteLine("Running on {0}", hostString);
101101
Console.WriteLine("Press enter to exit");
@@ -117,7 +117,7 @@ public static int Main(string[] args)
117117
}
118118

119119
// global catch all
120-
Logger.Fatal(ex, "The CDP4 Services encountered an unrecoverable error");
120+
Logger.Fatal(ex, "The COMET Services encountered an unrecoverable error");
121121
return 42;
122122
}
123123
}

CDP4WebServices.API/CDP4WebServices.API.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net472</TargetFramework>
55
<Company>RHEA System S.A.</Company>
66
<Title>CDP4WebServices-CE.API</Title>
7-
<Version>7.0.5</Version>
7+
<Version>7.0.6</Version>
88
<Description>Library that contains the CDP4 Services API</Description>
99
<Copyright>Copyright © RHEA System S.A.</Copyright>
1010
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>

0 commit comments

Comments
 (0)