-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/0.1.1' into master
- Loading branch information
Showing
13 changed files
with
112 additions
and
53 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 |
---|---|---|
|
@@ -7,12 +7,6 @@ | |
"commands": [ | ||
"dotnet-cake" | ||
] | ||
}, | ||
"dotnet-t4": { | ||
"version": "2.0.5", | ||
"commands": [ | ||
"t4" | ||
] | ||
} | ||
} | ||
} |
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,43 @@ | ||
# Configuration values used when creating new releases | ||
create: | ||
include-footer: false | ||
footer-heading: '' | ||
footer-content: '' | ||
footer-includes-milestone: false | ||
milestone-replace-text: '' | ||
include-sha-section: true | ||
sha-section-heading: SHA256 Hashes of the release artifacts | ||
sha-section-line-format: '- `{1} {0}`' | ||
allow-update-to-published: false | ||
# Configuration values used when exporting release notes | ||
export: | ||
include-created-date-in-title: false | ||
created-date-string-format: '' | ||
perform-regex-removal: false | ||
regex-text: '' | ||
multiline-regex: false | ||
# Configuration values used when closing a milestone | ||
close: | ||
# Whether to add comments to issues closed and with the published milestone release. | ||
use-issue-comments: true | ||
issue-comment: |- | ||
:tada: This issue has been resolved in version {milestone} :tada: | ||
The release is available on: | ||
- [GitHub release](https://github.com/{owner}/{repository}/releases/tag/{milestone}) | ||
Your **[GitReleaseManager](https://github.com/GitTools/GitReleaseManager)** bot :package::rocket: | ||
# The labels that will be used to include issues in release notes. | ||
issue-labels-include: | ||
- Breaking change | ||
- Bug | ||
- Documentation | ||
- Feature | ||
- Improvement | ||
# The labels that will NOT be used when including issues in release notes. | ||
issue-labels-exclude: | ||
- Build | ||
- Internal Refactoring | ||
# Overrides default pluralization and header names for specific labels. | ||
issue-labels-alias: [] |
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,11 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Cake.TestAddin | ||
{ | ||
[Core.Annotations.CakeAliasCategory("REPLACE_ME")] | ||
public static partial class PartialTestAddinAliases | ||
{ | ||
} | ||
} |
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,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Cake.TestAddin | ||
{ | ||
public static partial class PartialTestAddinAliases | ||
{ | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
...e.Addin.Analyzer.Tests/TestFiles/AliasClassCategory/HaveCakeAliasCategoryPartialClass.txt
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,11 @@ | ||
using Cake.Core; | ||
using Cake.Core.Annotations; | ||
|
||
public static partial class Aliases | ||
{ | ||
} | ||
|
||
[CakeAliasCategory("Test Category")] | ||
public static partial class Aliases | ||
{ | ||
} |