11 lines
192 B
C#
11 lines
192 B
C#
|
namespace UnityBuilderAction.Versioning
|
|||
|
{
|
|||
|
public static class VersionGenerator
|
|||
|
{
|
|||
|
public static string Generate()
|
|||
|
{
|
|||
|
return Git.GenerateSemanticCommitVersion();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|