This project contains various experimental but useful extension methods and aliases for Cake that over time may become part of the core project
- Repository: https://github.com/cake-contrib/cake.incubator
- Docs: http://cakebuild.net/api/Cake.Incubator/
- Release Notes
This addin is designed to be used inside of cake scripts. To start using it, first you must add a cake preprocessor directive to your script as below.
// NB: always pin your version to avoid breaking changes in newer releases
#addin "Cake.Incubator&version=x.x.x"
// or
#addin "nuget:?package=Cake.Incubator&version=x.x.x"
When the cake script is run, this will download the latest version of the Cake.Incubator
nuget package and will now be available to use inside of the script.
Feel free to submit your PR's with your handy aliases or extensions. The only requirement is that they do not introduce additional dependencies to the package.