Skip to content

Commit

Permalink
Merge pull request #236 from auth0/dg-nuget-packaging-fixes
Browse files Browse the repository at this point in the history
Modify cake to allow build+test+pack in a single step
  • Loading branch information
damieng authored Jan 23, 2019
2 parents b79bc7a + bb263c2 commit 38f5ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Task("Test")

Task("Pack")
.IsDependentOn("Build")
.WithCriteria((IsOnAppVeyorAndNotPR || string.Equals(target, "pack", StringComparison.OrdinalIgnoreCase)) && IsRunningOnWindows())
.WithCriteria(IsRunningOnWindows())
.Does(() =>
{
var settings = new DotNetCorePackSettings
Expand Down

0 comments on commit 38f5ba1

Please sign in to comment.