Integrate GitVersion and add version provider abstraction

- Added GitVersion for semantic versioning and build metadata
- Introduced IVersionProvider and VersionProvider for UI-friendly version display
- MainForm now uses IVersionProvider for version label
- Registered VersionProvider in DI container
- Improved logging: filtered out AutoMapper license logs
- General code cleanup in Program.cs
This commit is contained in:
MaddoScientisto 2026-02-14 21:14:06 +01:00
commit 509d5357a8
8 changed files with 154 additions and 44 deletions

View file

@ -0,0 +1,9 @@
namespace MaddoShared;
public interface IVersionProvider
{
/// <summary>
/// Returns a human-friendly version string for display (prefer AssemblyInformationalVersion).
/// </summary>
string GetVersionString();
}