|
| 1 | +// SPDX-FileCopyrightText: 2024 Frans van Dorsselaer |
| 2 | +// |
| 3 | +// SPDX-License-Identifier: GPL-3.0-only |
| 4 | + |
| 5 | +// This file is compiled only when building from Visual Studio, which is incompatible with GitVersion 6. |
| 6 | +// To get accurate versioning, build from the command line with 'dotnet build' instead. |
| 7 | + |
| 8 | +using System.Diagnostics.CodeAnalysis; |
| 9 | + |
| 10 | +[ExcludeFromCodeCoverage] |
| 11 | +static class GitVersionInformation |
| 12 | +{ |
| 13 | + public static string Major = "0"; |
| 14 | + public static string Minor = "9"; |
| 15 | + public static string Patch = "99"; |
| 16 | + public static string PreReleaseTag = ""; |
| 17 | + public static string PreReleaseTagWithDash = ""; |
| 18 | + public static string PreReleaseLabel = ""; |
| 19 | + public static string PreReleaseLabelWithDash = ""; |
| 20 | + public static string PreReleaseNumber = ""; |
| 21 | + public static string WeightedPreReleaseNumber = "60000"; |
| 22 | + public static string BuildMetaData = "999"; |
| 23 | + public static string BuildMetaDataPadded = "0999"; |
| 24 | + public static string FullBuildMetaData = "999.Branch.vs.Sha.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; |
| 25 | + public static string MajorMinorPatch = "0.9.99"; |
| 26 | + public static string SemVer = "0.9.99"; |
| 27 | + public static string LegacySemVer = "0.9.99"; |
| 28 | + public static string LegacySemVerPadded = "0.9.99"; |
| 29 | + public static string AssemblySemVer = "0.9.99.0"; |
| 30 | + public static string AssemblySemFileVer = "0.9.99.0"; |
| 31 | + public static string FullSemVer = "0.9.99+999"; |
| 32 | + public static string InformationalVersion = "0.9.99+999.Branch.vs.Sha.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; |
| 33 | + public static string BranchName = "vs"; |
| 34 | + public static string EscapedBranchName = "vs"; |
| 35 | + public static string Sha = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; // DevSkim: ignore DS173237 |
| 36 | + public static string ShortSha = "aaaaaaa"; |
| 37 | + public static string NuGetVersionV2 = "0.9.99"; |
| 38 | + public static string NuGetVersion = "0.9.99"; |
| 39 | + public static string NuGetPreReleaseTagV2 = ""; |
| 40 | + public static string NuGetPreReleaseTag = ""; |
| 41 | + public static string VersionSourceSha = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; // DevSkim: ignore DS173237 |
| 42 | + public static string CommitsSinceVersionSource = "999"; |
| 43 | + public static string CommitsSinceVersionSourcePadded = "0999"; |
| 44 | + public static string UncommittedChanges = "9"; |
| 45 | + public static string CommitDate = "2024-07-27"; |
| 46 | +} |
0 commit comments