-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
17 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ var target = Argument("target", "build"); | |
var preReleasePhase = Argument("pre-release-phase", "rc"); | ||
var preRelease = Argument("pre-release", false); | ||
var username = Argument("username", "NaBian"); | ||
var email = Argument("email, "836904362@qq.com"); | ||
var email = Argument("email", "[email protected]"); | ||
|
||
var libVersion = ""; | ||
var nugetVersion = ""; | ||
|
@@ -234,7 +234,7 @@ Task("pack nuspec files") | |
} | ||
}); | ||
|
||
Task("build") | ||
Task("publish") | ||
.IsDependentOn("update license") | ||
.IsDependentOn("update version") | ||
.IsDependentOn("update copyright") | ||
|
@@ -246,8 +246,11 @@ Task("build") | |
.IsDependentOn("build lib") | ||
.IsDependentOn("build demo") | ||
.IsDependentOn("create lang nuspec files") | ||
.IsDependentOn("pack nuspec files") | ||
; | ||
.IsDependentOn("pack nuspec files"); | ||
|
||
Task("build") | ||
.IsDependentOn("build lib") | ||
.IsDependentOn("build demo"); | ||
|
||
RunTarget(target); | ||
|
||
|
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