Handle -EX hotfix releases in windows setup versioning

This commit is contained in:
difegue 2020-04-19 23:38:13 +02:00
parent 2360eb7c62
commit 25c6dcb56d

View File

@ -62,7 +62,7 @@ namespace Setup
try
{
project.Version = Version.Parse(version);
project.Version = Version.Parse(version.Replace("-EX",".38")); //dotnet versions don't accept text or dashes but I ain't about to fuck up my versioning schema dagnabit
}
catch
{