Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
ApplicationInfoService.cs
1using System.Diagnostics;
2using System.Reflection;
3
5
7
12{
17 {
18 }
19
21 public Version GetVersion()
22 {
23 // Set the app version in Vereinsmeisterschaften > Properties > Package > PackageVersion
24 string assemblyLocation = Assembly.GetExecutingAssembly().Location;
25 var version = FileVersionInfo.GetVersionInfo(assemblyLocation).FileVersion;
26 return new Version(version);
27 }
28}
Version GetVersion()
Gets the version of the application.Application version
ApplicationInfoService()
Constructor of the application info service.
Interface for a service to provide application information such as version.