Integrate Cake as a dotnet CLI extension for .NET Core applications
See original GitHub issueI couldn’t find if this has been suggested before, but I was looking at FlubuCore and how they integrate nicely with the dotnet CLI.
It struck me that this might be a perfect fit for cake too. I mean, wouldn’t it be nice to do the following:
-
Restore regular NuGet packages and Cake with its addins
dotnet restore
-
Run the do-the-thing task that you would normally call with
build.ps1 -Target "do-the-thing"
dotnet cake do-the-thing
I’m currently using Cake on a few projects here at work, and it’s great! This sort of integration would make it even better though. 👍
Issue Analytics
- State:
- Created 6 years ago
- Reactions:15
- Comments:19 (13 by maintainers)
Top Results From Across the Web
DotNET Core Cake (CSharp Makefiles)
Create custom builds for your .NET applications using Cake: a free open-source task runner for cross-platform automation in C#.
Read more >Extensions
EntityFramework6 is a set of Cake aliases for Entity Framework 6.3 or above (not .NET Core) code-first migration using the ef6.exe command line...
Read more >Cake - Home
Cake (C# Make) is a free and open source cross-platform build automation system with a C# DSL for tasks such as compiling code,...
Read more >Cake + .NET Core = Write Once, Build Anywhere - YouTube
. NET Core gives us the freedom to write apps once and run them anywhere — Cake ... test, package and deploy our...
Read more >Cake and .NET Core: we must go deeper
Small story about tricky things in building .Net Core projects using Cake: versioning, tests running, coverage calculation and overall build ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
So I have started doing exactly this: https://github.com/phillipsj/dotnet-cake
I think it would be easier to just
The run the command like above
I have slowed down on it, but with the recent talk of bringing more of the bootstrapper into Cake itself, this is going to be a little simpler.
That is why both options exist. I will pick back up work for the tool later this month.
On Tue, Feb 6, 2018, 3:41 PM Adam Hathcock notifications@github.com wrote: