Cake.Sitecore
0.1.0
See the version list below for details.
dotnet add package Cake.Sitecore --version 0.1.0
NuGet\Install-Package Cake.Sitecore -Version 0.1.0
<PackageReference Include="Cake.Sitecore" Version="0.1.0" />
paket add Cake.Sitecore --version 0.1.0
#r "nuget: Cake.Sitecore, 0.1.0"
// Install Cake.Sitecore as a Cake Addin #addin nuget:?package=Cake.Sitecore&version=0.1.0 // Install Cake.Sitecore as a Cake Tool #tool nuget:?package=Cake.Sitecore&version=0.1.0
Cake.Sitecore
Overview
The library provides a set of pre-build [CAKE build] tasks. Those tasks could be used to simplify a configuration of CI/CD for Helix-based Sitecore projects.
Rationale
Cake (C# Make) is a cross-platform build automation system with a C# DSL for tasks such as compiling code, copying files and folders, running unit tests, compressing files and building NuGet packages. It should be familiar for a Sitecore developers as script are written in C# and it is possible to use .NET dll and NuGet packages in them. The library also provides a set of ready tasks that could be configured with environment variables, arguments and inside script, which makes it highly suitable for DevOps. As those tasks are decoupled from your build server - it makes your process highly portable (TeamCity, Jenkins, VSTS or even local machine - doesn't really matter).
Setup
In order to use the library you need to follow the standard initial setup from CAKE. Once you have 3 required files build.ps1
, build.cake
and tools/packages.json
, open build.cake
and add following sections there:
// //////////////////////////////////////////////////
// Dependencies
// //////////////////////////////////////////////////
#tool nuget:?package=Cake.Sitecore&prerelease
#load nuget:?package=Cake.Sitecore&prerelease
// ... other includes
// //////////////////////////////////////////////////
// Arguments
// //////////////////////////////////////////////////
var Target = ArgumentOrEnvironmentVariable("target", "", "Default");
// //////////////////////////////////////////////////
// Prepare
// //////////////////////////////////////////////////
Sitecore.Constants.SetNames();
Sitecore.Parameters.InitParams(
context: Context, // Pass CAKE context to a library
msBuildToolVersion: MSBuildToolVersion.Default, // Select required version
solutionName: "Habitat", // Name of your solution
scSiteUrl: "https://sc9.local", // URL of a site
// ... other parameters
);
// //////////////////////////////////////////////////
// Tasks
// //////////////////////////////////////////////////
Task("Restore")
// predefined tasks could be used as a dependency for your build step
.IsDependentOn(Sitecore.Tasks.RestoreNuGetPackagesTask)
.IsDependentOn(Sitecore.Tasks.RestoreNpmPackagesTaskName)
;
// ... other tasks
// //////////////////////////////////////////////////
// Targets
// //////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Restore")
// ... other tasks
;
// //////////////////////////////////////////////////
// Execution
// //////////////////////////////////////////////////
RunTarget(Target);
Samples
Sample usage of a CAKE-build with Habitat could be found in here
Contributing
Any feedback, issues or pull requests pull requests are welcome and greatly appreciated.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.27 | 29,490 | 8/10/2021 |
1.0.26 | 434 | 8/10/2021 |
1.0.25 | 2,188 | 2/17/2021 |
1.0.20 | 6,211 | 5/6/2020 |
1.0.19 | 775 | 4/27/2020 |
1.0.17 | 15,282 | 5/30/2019 |
1.0.16 | 8,780 | 2/24/2019 |
1.0.15 | 3,235 | 2/15/2019 |
1.0.14 | 2,243 | 2/1/2019 |
1.0.13 | 2,854 | 12/20/2018 |
1.0.12 | 1,412 | 11/29/2018 |
1.0.11 | 835 | 11/28/2018 |
1.0.10 | 1,227 | 11/14/2018 |
1.0.9 | 1,138 | 10/29/2018 |
1.0.8 | 849 | 10/27/2018 |
1.0.7 | 866 | 10/22/2018 |
1.0.6 | 911 | 10/17/2018 |
1.0.5 | 945 | 10/11/2018 |
1.0.4 | 872 | 10/10/2018 |
1.0.3 | 1,620 | 9/7/2018 |
1.0.2 | 1,048 | 8/28/2018 |
1.0.1 | 948 | 8/22/2018 |
0.2.0 | 1,117 | 7/22/2018 |
0.1.3 | 1,193 | 6/14/2018 |
0.1.1 | 1,135 | 5/27/2018 |
0.1.0 | 1,131 | 5/15/2018 |