Add semantic versioning logic

This commit is contained in:
Webber
2020-04-21 23:03:12 +02:00
committed by Webber Takken
parent 328b0d8ac0
commit a513e5b640
9 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace UnityBuilderAction.Versioning
{
public class GitException : InvalidOperationException
{
public readonly int code;
public GitException(int code, string errors) : base(errors)
{
this.code = code;
}
}
}