Octopus Deploy in Your Cake (C# Make)
I’ve looked at using Cake (C# Make) for build automation in C#. The basics were to compile a solution/project using MSBuild and then run our automated tests with xUnit. Another common set of tasks that are performed in a build pipeline are: Create a NuGet package Push the NuGet package to Octopus Deploy Create an Octopus Deploy Release NuGet First thing we need to do is to create a NuGet package. You have a couple options here, one is to create a nuspec and invoke the Nuget.exe to create your package. I’m going to choose an alternative which is to… Read More »Octopus Deploy in Your Cake (C# Make)