mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 03:55:55 +00:00
01d5c8721c
* (build) Updated Cake.Frosting to version 0.34.1 * Update GritVersion from 3.6.2 to 5.0.0
13 lines
337 B
C#
13 lines
337 B
C#
using Cake.Common.Tools.GitVersion;
|
|
|
|
public static class GitVersionRunner
|
|
{
|
|
public static GitVersion Run(Context context, GitVersionOutput outputType)
|
|
{
|
|
return context.GitVersion(new GitVersionSettings
|
|
{
|
|
OutputType = outputType,
|
|
ToolPath = context.GitVersionToolPath
|
|
});
|
|
}
|
|
} |