use full version string for {version}

This commit is contained in:
2025-08-23 08:40:09 +02:00
parent 8ef522bc6c
commit bd7ce5bbe7

View File

@@ -46,7 +46,7 @@ public static class Extensions
if (!string.IsNullOrWhiteSpace(overwriteVersion))
return @this.SourceUrl?.Replace("{version}", overwriteVersion);
if (version is not null)
return @this.SourceUrl?.Replace("{version}", version.ToString(3));
return @this.SourceUrl?.Replace("{version}", version.ToString());
return @this.SourceUrl;
}