Skip to content

Commit

Permalink
It's pretty important to switch to the DotNet Core Pack in Cake.Recipe.
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipsj committed Jul 31, 2019
1 parent aed5609 commit 59877fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ BuildParameters.SetParameters(context: Context,
repositoryName: "Cake.Squirrel",
appVeyorAccountName: "cakecontrib",
shouldRunDupFinder: false,
shouldRunInspectCode: false);
shouldRunInspectCode: false,
shouldRunGitVersion: DirectoryExists(".git"), // This would allow building even without using a git repository
shouldRunDotNetCorePack: true);

BuildParameters.PrintParameters(Context);

Expand Down

0 comments on commit 59877fc

Please sign in to comment.