Automation with Cake C#

Bernardo Teixeira
Geek Culture
Published in
4 min readOct 2, 2021

--

Every time you want to deploy a change of your application, you need to do certain tasks. The tasks are always the same.

Create a branch for the feature, make the changes, create unit tests for that change, create the scripts for the database, build the project, run the unit tests, merge into the main branch and deploy.

If you are not a smart Developer, you will make all these steps manually. But I can show you a faster and smarter way for this problem. Basically, you are trying to do a CI pipeline in your local environment. The tool for this is Cake.

--

--