Skip to content

Commit 0678efa

Browse files
authored
Merge pull request #1249 from bording/assemblyInfo
Clean up AssemblyInfo file updating
2 parents 70196e8 + 227d720 commit 0678efa

File tree

84 files changed

+777
-2107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+777
-2107
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
// GitVersion
5+
//
6+
// Changes to this file may cause incorrect behavior and will be lost if
7+
// the code is regenerated.
8+
// </auto-generated>
9+
//------------------------------------------------------------------------------
10+
11+
[global::System.Runtime.CompilerServices.CompilerGenerated]
12+
static class GitVersionInformation
13+
{
14+
public static string Major = "1";
15+
public static string Minor = "2";
16+
public static string Patch = "3";
17+
public static string PreReleaseTag = "unstable.4";
18+
public static string PreReleaseTagWithDash = "-unstable.4";
19+
public static string PreReleaseLabel = "unstable";
20+
public static string PreReleaseNumber = "4";
21+
public static string BuildMetaData = "5";
22+
public static string BuildMetaDataPadded = "0005";
23+
public static string FullBuildMetaData = "5.Branch.feature1.Sha.commitSha";
24+
public static string MajorMinorPatch = "1.2.3";
25+
public static string SemVer = "1.2.3-unstable.4";
26+
public static string LegacySemVer = "1.2.3-unstable4";
27+
public static string LegacySemVerPadded = "1.2.3-unstable0004";
28+
public static string AssemblySemVer = "1.2.3.0";
29+
public static string AssemblySemFileVer = "1.2.3.0";
30+
public static string FullSemVer = "1.2.3-unstable.4+5";
31+
public static string InformationalVersion = "1.2.3-unstable.4+5.Branch.feature1.Sha.commitSha";
32+
public static string BranchName = "feature1";
33+
public static string Sha = "commitSha";
34+
public static string NuGetVersionV2 = "1.2.3-unstable0004";
35+
public static string NuGetVersion = "1.2.3-unstable0004";
36+
public static string NuGetPreReleaseTagV2 = "unstable0004";
37+
public static string NuGetPreReleaseTag = "unstable0004";
38+
public static string CommitsSinceVersionSource = "5";
39+
public static string CommitsSinceVersionSourcePadded = "0005";
40+
public static string CommitDate = "2014-03-06";
41+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// You can modify this code as we will not overwrite it when re-executing GitVersion
66
// </auto-generated>
77
//------------------------------------------------------------------------------
8+
namespace GitVersionAssemblyInfoFile
89

910
open System.Reflection
1011

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// You can modify this code as we will not overwrite it when re-executing GitVersion
66
// </auto-generated>
77
//------------------------------------------------------------------------------
8+
namespace GitVersionAssemblyInfoFile
89

910
open System.Reflection
1011

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// You can modify this code as we will not overwrite it when re-executing GitVersion
66
// </auto-generated>
77
//------------------------------------------------------------------------------
8+
namespace GitVersionAssemblyInfoFile
89

910
open System.Reflection
1011

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
// GitVersion
5+
//
6+
// Changes to this file may cause incorrect behavior and will be lost if
7+
// the code is regenerated.
8+
// </auto-generated>
9+
//------------------------------------------------------------------------------
10+
11+
[<AbstractClass; Sealed>]
12+
[<global.System.Runtime.CompilerServices.CompilerGenerated>]
13+
module GitVersionInformation
14+
let Major = "1"
15+
let Minor = "2"
16+
let Patch = "3"
17+
let PreReleaseTag = "unstable.4"
18+
let PreReleaseTagWithDash = "-unstable.4"
19+
let PreReleaseLabel = "unstable"
20+
let PreReleaseNumber = "4"
21+
let BuildMetaData = "5"
22+
let BuildMetaDataPadded = "0005"
23+
let FullBuildMetaData = "5.Branch.feature1.Sha.commitSha"
24+
let MajorMinorPatch = "1.2.3"
25+
let SemVer = "1.2.3-unstable.4"
26+
let LegacySemVer = "1.2.3-unstable4"
27+
let LegacySemVerPadded = "1.2.3-unstable0004"
28+
let AssemblySemVer = "1.2.3.0"
29+
let AssemblySemFileVer = "1.2.3.0"
30+
let FullSemVer = "1.2.3-unstable.4+5"
31+
let InformationalVersion = "1.2.3-unstable.4+5.Branch.feature1.Sha.commitSha"
32+
let BranchName = "feature1"
33+
let Sha = "commitSha"
34+
let NuGetVersionV2 = "1.2.3-unstable0004"
35+
let NuGetVersion = "1.2.3-unstable0004"
36+
let NuGetPreReleaseTagV2 = "unstable0004"
37+
let NuGetPreReleaseTag = "unstable0004"
38+
let CommitsSinceVersionSource = "5"
39+
let CommitsSinceVersionSourcePadded = "0005"
40+
let CommitDate = "2014-03-06"
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<Assembly: AssemblyVersion("2.3.1.0")>
22
<Assembly: AssemblyFileVersion("2.3.1.0")>
3-
<assembly: AssemblyInformationalVersion("2.3.1+3.Branch.foo.Sha.hash")>
3+
<Assembly: AssemblyInformationalVersion("2.3.1+3.Branch.foo.Sha.hash")>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
Imports System.Reflection
1010

11-
<assembly: AssemblyFileVersion("1.0.0.0")>
12-
<assembly: AssemblyVersion("1.0.0.0")>
13-
<assembly: AssemblyInformationalVersion("1.0.0")>
11+
<Assembly: AssemblyFileVersion("1.0.0.0")>
12+
<Assembly: AssemblyVersion("1.0.0.0")>
13+
<Assembly: AssemblyInformationalVersion("1.0.0")>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
Imports System.Reflection
1010

11-
<assembly: AssemblyFileVersion("1.0.0.0")>
12-
<assembly: AssemblyVersion("1.0.0.0")>
13-
<assembly: AssemblyInformationalVersion("1.0.0")>
11+
<Assembly: AssemblyFileVersion("1.0.0.0")>
12+
<Assembly: AssemblyVersion("1.0.0.0")>
13+
<Assembly: AssemblyInformationalVersion("1.0.0")>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
Imports System.Reflection
1010

11-
<assembly: AssemblyFileVersion("1.0.0.0")>
12-
<assembly: AssemblyVersion("1.0.0.0")>
13-
<assembly: AssemblyInformationalVersion("1.0.0")>
11+
<Assembly: AssemblyFileVersion("1.0.0.0")>
12+
<Assembly: AssemblyVersion("1.0.0.0")>
13+
<Assembly: AssemblyInformationalVersion("1.0.0")>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<Assembly: AssemblyFileVersion("2.3.1.0")>
2+
<Assembly: AssemblyInformationalVersion("2.3.1+3.Branch.foo.Sha.hash")>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<Assembly: AssemblyFileVersion("2.3.1.0")>
2+
<Assembly: AssemblyInformationalVersion("2.3.1+3.Branch.foo.Sha.hash")>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
'------------------------------------------------------------------------------
2+
' <auto-generated>
3+
' This code was generated by a tool.
4+
' GitVersion
5+
'
6+
' Changes to this file may cause incorrect behavior and will be lost if
7+
' the code is regenerated.
8+
' </auto-generated>
9+
'------------------------------------------------------------------------------
10+
11+
<Global.System.Runtime.CompilerServices.CompilerGenerated()>
12+
NotInheritable Class GitVersionInformation
13+
Private Sub New()
14+
End Sub
15+
Public Shared Major As String = "1"
16+
Public Shared Minor As String = "2"
17+
Public Shared Patch As String = "3"
18+
Public Shared PreReleaseTag As String = "unstable.4"
19+
Public Shared PreReleaseTagWithDash As String = "-unstable.4"
20+
Public Shared PreReleaseLabel As String = "unstable"
21+
Public Shared PreReleaseNumber As String = "4"
22+
Public Shared BuildMetaData As String = "5"
23+
Public Shared BuildMetaDataPadded As String = "0005"
24+
Public Shared FullBuildMetaData As String = "5.Branch.feature1.Sha.commitSha"
25+
Public Shared MajorMinorPatch As String = "1.2.3"
26+
Public Shared SemVer As String = "1.2.3-unstable.4"
27+
Public Shared LegacySemVer As String = "1.2.3-unstable4"
28+
Public Shared LegacySemVerPadded As String = "1.2.3-unstable0004"
29+
Public Shared AssemblySemVer As String = "1.2.3.0"
30+
Public Shared AssemblySemFileVer As String = "1.2.3.0"
31+
Public Shared FullSemVer As String = "1.2.3-unstable.4+5"
32+
Public Shared InformationalVersion As String = "1.2.3-unstable.4+5.Branch.feature1.Sha.commitSha"
33+
Public Shared BranchName As String = "feature1"
34+
Public Shared Sha As String = "commitSha"
35+
Public Shared NuGetVersionV2 As String = "1.2.3-unstable0004"
36+
Public Shared NuGetVersion As String = "1.2.3-unstable0004"
37+
Public Shared NuGetPreReleaseTagV2 As String = "unstable0004"
38+
Public Shared NuGetPreReleaseTag As String = "unstable0004"
39+
Public Shared CommitsSinceVersionSource As String = "5"
40+
Public Shared CommitsSinceVersionSourcePadded As String = "0005"
41+
Public Shared CommitDate As String = "2014-03-06"
42+
End Class

0 commit comments

Comments
 (0)