-
Notifications
You must be signed in to change notification settings - Fork 86
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 #181 from WeihanLi/dev
1.0.61
- Loading branch information
Showing
111 changed files
with
1,203 additions
and
1,504 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"isRoot": true, | ||
"tools": { | ||
"husky": { | ||
"version": "0.6.2", | ||
"version": "0.6.4", | ||
"commands": [ | ||
"husky" | ||
] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,3 @@ steps: | |
displayName: 'Powershell Script' | ||
env: | ||
Nuget__ApiKey: $(nugetApiKey) | ||
Nuget__SourceUrl: $(nugetSourceUrl) |
This file was deleted.
Oops, something went wrong.
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,8 +1,5 @@ | ||
[string]$SCRIPT = '.\build.cake' | ||
|
||
# Install cake.tool | ||
dotnet tool install --global cake.tool | ||
|
||
Write-Host "dotnet cake $SCRIPT $ARGS" -ForegroundColor GREEN | ||
dotnet tool update -g dotnet-execute --prerelease | ||
|
||
dotnet cake $SCRIPT $CAKE_ARGS $ARGS | ||
Write-Host 'dotnet-exec ./build/build.cs "--args=$ARGS"' -ForegroundColor GREEN | ||
|
||
dotnet-exec ./build/build.cs --args $ARGS |
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,10 +1,7 @@ | ||
#!/bin/sh | ||
SCRIPT='./build.cake' | ||
|
||
# Install cake.tool | ||
dotnet tool install --global cake.tool | ||
dotnet tool update -g dotnet-execute --prerelease | ||
export PATH="$PATH:$HOME/.dotnet/tools" | ||
|
||
echo "dotnet cake $SCRIPT $@" | ||
|
||
dotnet cake $SCRIPT "$@" | ||
echo "dotnet-exec ./build/build.cs --args $@" | ||
dotnet-exec ./build/build.cs --args "$@" |
Oops, something went wrong.