-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitVersionFallback.cs
36 lines (36 loc) · 1.64 KB
/
GitVersionFallback.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
internal static class GitVersionInformation
{
public static string Major = "0";
public static string Minor = "0";
public static string Patch = "0";
public static string PreReleaseTag = "";
public static string PreReleaseTagWithDash = "";
public static string PreReleaseLabel = "";
public static string PreReleaseLabelWithDash = "";
public static string PreReleaseNumber = "";
public static string WeightedPreReleaseNumber = "";
public static string BuildMetaData = "";
public static string BuildMetaDataPadded = "";
public static string FullBuildMetaData = "";
public static string MajorMinorPatch = "0.0.0";
public static string SemVer = "0.0.0-local";
public static string LegacySemVer = "0.0.0";
public static string LegacySemVerPadded = "0.0.0";
public static string AssemblySemVer = "0.0.0.0";
public static string AssemblySemFileVer = "0.0.0.0";
public static string FullSemVer = "0.0.0";
public static string InformationalVersion = "0.0.0-local";
public static string BranchName = "";
public static string EscapedBranchName = "";
public static string Sha = "";
public static string ShortSha = "";
public static string NuGetVersionV2 = "0.0.0";
public static string NuGetVersion = "0.0.0";
public static string NuGetPreReleaseTagV2 = "local";
public static string NuGetPreReleaseTag = "local";
public static string VersionSourceSha = "";
public static string CommitsSinceVersionSource = "";
public static string CommitsSinceVersionSourcePadded = "";
public static string UncommittedChanges = "";
public static string CommitDate = "1970-01-01";
}