'
#Const $NamespaceDefine$ = 1
#Const $MetadataDefine$ = 1
#If ADDMETADATA
#End If
#If LOCALNAMESPACE
Namespace Global._RootNamespace_
#Else
Namespace Global
#End If
''' Provides access to the git information for the current assembly.
Partial Class ThisAssembly
''' Provides access to the git information for the current assembly.
Partial Public Class Git
''' IsDirty: $GitIsDirty$
Public Const IsDirty As Boolean = $GitIsDirty$
''' IsDirtyString: $GitIsDirty$
Public Const IsDirtyString As String = "$GitIsDirty$"
''' Branch: $GitBranch$
Public Const Branch As String = "$GitBranch$"
''' Commit: $GitCommit$
Public Const Commit As String = "$GitCommit$"
''' Commit: $GitSha$
Public Const Sha As String = "$GitSha$"
''' Commits on top of base version: $GitCommits$
Public Const Commits As String = "$GitCommits$"
''' Tag: $GitTag$
Public Const Tag As String = "$GitTag$"
''' Base tag: $GitBaseTag$
Public Const BaseTag As String = "$GitBaseTag$"
''' Provides access to the base version information used to determine the .
Partial Public Class BaseVersion
''' Major: $GitBaseVersionMajor$
Public Const Major As String = "$GitBaseVersionMajor$"
''' Minor $GitBaseVersionMinor$
Public Const Minor As String = "$GitBaseVersionMinor$"
''' Patch $GitBaseVersionPatch$
Public Const Patch As String = "$GitBaseVersionPatch$"
End Class
''' Provides access to SemVer information for the current assembly.
Partial Public Class SemVer
''' Major: $GitSemVerMajor$
Public Const Major As String = "$GitSemVerMajor$"
''' Minor: $GitSemVerMinor$
Public Const Minor As String = "$GitSemVerMinor$"
''' Patch: $GitSemVerPatch$
Public Const Patch As String = "$GitSemVerPatch$"
''' Label: $GitSemVerLabel$
Public Const Label As String = "$GitSemVerLabel$"
''' Label with dash prefix: $GitSemVerDashLabel$
Public Const DashLabel As String = "$GitSemVerDashLabel$"
''' Label with dash prefix: $GitSemVerSource$
Public Const Source As String = "$GitSemVerVerSource$"
End Class
End Class
End Class
End Namespace