-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: Added GitVersion Extensions (#674)
fixed setting assembly to the full semantic version
- v2.9.11
- v2.9.10
- v2.9.9
- v2.9.8
- v2.9.7
- v2.9.6
- v2.9.6-beta.02
- v2.9.6-beta.01
- v2.9.5
- v2.9.4
- v2.9.3
- v2.9.2
- v2.9.1
- v2.9.0
- v2.8.119
- v2.8.118
- v2.8.117
- v2.8.116
- v2.8.115
- v2.8.114
- v2.8.113
- v2.8.112
- v2.8.111
- v2.8.110
- v2.8.109
- v2.8.108
- v2.8.107
- v2.8.106
- v2.8.105
- v2.8.104
- v2.8.104-beta.4
- v2.8.104-beta.3
- v2.8.104-beta.2
- v2.8.104-beta.1
- v2.8.3
- v2.8.2
- v2.8.1
- v2.8.1-beta.1
- v2.8.0-beta.7
- v2.8.0-beta.6
- v2.8.0-beta.5
- v2.8.0-beta.4
- v2.8.0-beta.3
- v2.8.0-beta.2
- v2.8.0-beta.1
- v1.8.36
- v1.8.35
- v1.8.34
- v1.8.33
- v1.8.32
- v1.8.31
- v1.8.30
- v1.8.29
- v1.8.28
- v1.8.27
- v1.8.26
- v1.8.25
- v1.8.24
- v1.8.23
- v1.8.22
- v1.8.21
- v1.8.20
- v1.8.19
- v1.8.18
- v1.8.17
- v1.8.16
- v1.8.15
- v1.8.14
- v1.8.13
- v1.8.12
- v1.8.11
- v1.8.10
- v1.8.9
- v1.8.8
- v1.8.7
- v1.8.6
- v1.8.5
- v1.8.4
- v1.8.3
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.5
- v1.7.4
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.0
- v0.21.1
- v0.21.0
- v0.20.2
- v0.20.1
- v0.20.0
- v0.19.7
- v0.19.6
- v0.19.5
- v0.19.4
- v0.19.3
- v0.19.2
- v0.19.1
- v0.19.0
- v0.18.0
- v0.17.22
- v0.17.21
- v0.17.20
- v0.17.19
- v0.17.18
- v0.17.17
- v0.17.16
- v0.17.15
- v0.17.14
- v0.17.13
- v0.17.12
- v0.17.11
- v0.17.10
- v0.17.9
1 parent
2eb6ed5
commit 648abe4
Showing
8 changed files
with
31 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Nuke.Common.Tools.GitVersion; | ||
|
||
namespace Rocket.Surgery.Nuke; | ||
|
||
/// <summary> | ||
/// <see cref="GitVersion" /> extensions. | ||
/// </summary> | ||
public static class GitVersionEx | ||
{ | ||
/// <summary> | ||
/// Gets the full semantic version from <see cref="GitVersion" />. | ||
/// </summary> | ||
/// <param name="gitVersion">The git version.</param> | ||
/// <returns>The converted semantic version.</returns> | ||
public static string FullSemanticVersion(this GitVersion gitVersion) | ||
{ | ||
return gitVersion.FullSemVer.Replace('+', '.'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters