-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from DavidRogersDev/release/1.1.0
Release/1.1.0
- Loading branch information
Showing
17 changed files
with
176 additions
and
135 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Invariants | ||
{ | ||
public sealed class Branch | ||
{ | ||
public const string Main = "main"; | ||
public const string Release = "release"; | ||
} | ||
} |
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,8 @@ | ||
namespace Invariants | ||
{ | ||
public sealed class BuildType | ||
{ | ||
public const string Ci = "ci"; | ||
public const string Rc = "rc"; | ||
} | ||
} |
10 changes: 2 additions & 8 deletions
10
build/Invariants/Descriptions.cs → build/Invariants/Description.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace Invariants | ||
{ | ||
public sealed class FileSystem | ||
{ | ||
public sealed class GlobPattern | ||
{ | ||
public const string BinPattern = "**/bin"; | ||
public const string ObjPattern = "**/obj"; | ||
} | ||
|
||
public sealed class Nuget | ||
{ | ||
public const string Packages = "*.nupkg"; | ||
public const string SymbolsPackages = "symbols.nupkg"; | ||
} | ||
|
||
|
||
public const string ArtifactsDirectory = "artifacts"; | ||
} | ||
} |
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,14 @@ | ||
namespace Invariants | ||
{ | ||
public sealed class LogMessage | ||
{ | ||
public const string CleaningBinaryDirectories = "Cleaning binary directories"; | ||
public const string Configuration = "Configuration = {Value}"; | ||
public const string MajorMinorPatch = "Major Minor Patch = {Value}"; | ||
public const string NoNugetFiles = "There are no Nuget files"; | ||
public const string NugetVersion = "NuGet Version = {Value}"; | ||
public const string PreReleaseLabel = "PreReleaseLabel = {Value}"; | ||
public const string ReleaseNotes = "Release Notes = {Value}"; | ||
public const string RootDirectory= "Root Directory = {Value}"; | ||
} | ||
} |
Oops, something went wrong.