Introduction

Getting Started

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.

// latest version 
#addin "Cake.Warp"

// or
#addin "nuget?package=Cake.Warp"

// for a specific version, use ?version=
#addin "Cake.Warp?version=0.3.0"

When the cake script is run, this will download the latest version of the Cake.Warp nuget package and will now be available to use inside of the script.

GitHub