-
Notifications
You must be signed in to change notification settings - Fork 13
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 #31 from dmariogatto/cake110
Update to Target Cake 1.0.0
- Loading branch information
Showing
20 changed files
with
297 additions
and
549 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"cake.tool": { | ||
"version": "0.38.5", | ||
"commands": [ | ||
"dotnet-cake" | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,16 +1,48 @@ | ||
issue-labels-include: | ||
- Breaking change | ||
- Feature | ||
- Bug | ||
- Feature | ||
- Enhancement | ||
- Improvement | ||
- Documentation | ||
- security | ||
issue-labels-exclude: | ||
- Build | ||
- Internal / Refactoring | ||
issue-labels-alias: | ||
- name: Documentation | ||
header: Documentation | ||
plural: Documentation | ||
- name: security | ||
header: Security | ||
plural: Security | ||
create: | ||
include-footer: true | ||
footer-heading: Where to get it | ||
footer-content: > | ||
You can download this release from | ||
[nuget](https://nuget.org/packages/Cake.Xamarin/{milestone}), | ||
or you can just reference it in a cake build script | ||
with `#addin nuget:?package=Cake.Xamarin&version={milestone}`. | ||
footer-includes-milestone: true | ||
milestone-replace-text: "{milestone}" | ||
include-sha-section: true | ||
sha-section-heading: "SHA256 Hashes of the release artifacts" | ||
sha-section-line-format: "- `{1}\t{0}`" | ||
export: | ||
include-created-date-in-title: true | ||
created-date-string-format: yyyy-MM-dd | ||
perform-regex-removal: true | ||
regex-text: '[\r\n]*### Where to get it[\r\n]*You can .*`\.[\r\n]*' | ||
multiline-regex: true | ||
close: | ||
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}) | ||
- [NuGet Package](https://www.nuget.org/packages/{repository}/{milestone}) | ||
Your **[GitReleaseManager](https://github.com/GitTools/GitReleaseManager)** bot :package::rocket: |
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 @@ | ||
@echo on | ||
@cd %~dp0 | ||
|
||
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 | ||
set DOTNET_CLI_TELEMETRY_OPTOUT=1 | ||
set DOTNET_NOLOGO=1 | ||
|
||
dotnet tool restore | ||
@if %ERRORLEVEL% neq 0 goto :eof | ||
|
||
dotnet cake recipe.cake --bootstrap | ||
@if %ERRORLEVEL% neq 0 goto :eof | ||
|
||
dotnet cake recipe.cake %* |
Oops, something went wrong.