Skip to content

Commit

Permalink
Merge pull request #32 from TestCentric/issue-31
Browse files Browse the repository at this point in the history
Use version 1.1.0 of recipe
  • Loading branch information
CharliePoole authored Feb 24, 2024
2 parents d285833 + 81392f2 commit cf1ed11
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions build.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Load the recipe
#load nuget:?package=TestCentric.Cake.Recipe&version=1.1.0-dev00082
#load nuget:?package=TestCentric.Cake.Recipe&version=1.1.0
// Comment out above line and uncomment below for local tests of recipe changes
//#load ../TestCentric.Cake.Recipe/recipe/*.cake

Expand Down Expand Up @@ -32,25 +32,8 @@ BuildSettings.Packages.Add(new NuGetPackage(
"lib/net20/TestCentric.Metadata.pdb",
"lib/netstandard2.0/TestCentric.Metadata.pdb") }));

//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////

Task("AppVeyor")
.Description("Targets to run on AppVeyor")
.IsDependentOn("DumpSettings")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Package")
.IsDependentOn("Publish")
.IsDependentOn("CreateDraftRelease")
.IsDependentOn("CreateProductionRelease");

Task("Default")
.IsDependentOn("Build");

//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////

RunTarget(CommandLineOptions.Target.Value);
Build.Run();

0 comments on commit cf1ed11

Please sign in to comment.