Starting with Cake v3.0.0, it is now possible to invoke a build script with multiple targets, rather than a single one.
For example, you can now do:
dotnet-cake ./build.cake --target=A --target=B
Previously, you would have only been able to do:
dotnet-cake ./build.cake --target=A
This video shows an example build script in action using this new feature.