Top "Cakebuild" questions

Cake (C# Make) is a build automation system with a C# DSL to do things like compiling code, copy files/folders, running unit tests, compress files and build NuGet packages.

How to run system command in Cake build?

I couldn't find any information related with running custom system command on this site: cakebuild.net/dsl How can I …

cakebuild
Why does NuGetPack respond with "Cannot create a package that has no dependencies nor content"

I am trying to use the following Cake script: Task("Create-NuGet-Packages") .IsDependentOn("Build") .WithCriteria(() =>DirectoryExists(parameters.Paths.Directories.NugetNuspecDirectory)) .…

c# nuget cakebuild
How to enable diagnostic verbosity for Cake

I am having some problems running my build.cake file, but I can't immediately see what the problem is. Is …

cakebuild
Passing MSBuild Arguments to Cake Build Script to produce _PublishedWebsites

I am currentlly in the process of writing a Cake build script to build a number of ASP.NET MVC …

c# asp.net asp.net-mvc msbuild cakebuild