Cake v6.0.0 released
- Published
- Tuesday, 11 November 2025
- Category
- Release Notes
- Author
- devlead
Version 6.0.0 of Cake has been released. Take it for a spin and give us feedback on our discussion board.
This release includes new features, improvements and bug fixes to Cake Scripting, Cake Frosting, and the new Cake.Sdk runner since the Cake v5.1.0 release! 🚀 🍰
Cake now fully supports running on .NET 10, and with this C# 14, which means you can take advantage of the latest framework, runtime, and language improvements.
The supported platform matrix for Cake 6.0.0 will look like this:
We're excited to announce Cake.Sdk as a new official runner for Cake! Cake.Sdk provides a modern way to get the Cake tool scripting experience in regular .NET console applications. This brings you the stellar experience of the new "dotnet run app.cs" feature (requires .NET 10), while also working seamlessly with .NET 8 and 9 for regular csproj projects.
Here's the minimal example:
Cake.Sdk is a custom SDK that provides a convenient way to create Cake projects with minimal configuration. It automatically sets up common properties and provides a streamlined development experience for Cake-based build automation projects, whether you're using the new file-based approach or traditional project-based builds.
Key features include:
The easiest way to get started with Cake.Sdk is using the Cake.Template package, which provides several templates for different scenarios:
First, install the template package:
Create a new Cake file-based project:
For the simplest possible setup, you can use the minimal template:
For larger projects, you can organize your code across multiple files:
For traditional project-based approach:
We've now set the recommended version of Cake.Core for addins to target to 6.0.0.
This won't break the build, but you might see warnings like the one below when addins or modules are loaded.
The recommended target framework monikers for addins are now:
This release was made possible thanks to the Cake team and the contribution of these awesome members of the Cake community listed below:
Full details of everything that was included in this release can be seen below.
Read more...