Replies: 1 comment 1 reply
-
I appreciate the additional guidance. This is actually what I attempted yesterday, before I did the work-around I described in issue #3671. And an add-on was the initial thing I bumped into, specifically with Cake.Git 1.1.0. It doesn't appear to be ready for Cake.Tool 2.0.0 yet. I'll keep an eye on it and try to upgrade again later. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@DrewRhoades wrote in #3671 (comment):
Depending on your addins/modules this should really be trivial:
tools/packages.confg
to atool-manifest
:dotnet new tool-manifest
dotnet tool install cake.tool
tools/packages.confg
from version controlThis should be all there is: Two steps and probably one prerequisite installation.
Keep in mind, that the runner you're using is totally unrelated to the project you're building. So building a
net461
project using Cake 2.0.0 with the .NET tool runner (running e.g. onnet6.0
) is perfectly fine.Now, there can be cases where an addin/module worked in Cake 1.3.0 and does not work in Cake 2.0.0 - in this case the work to be done is lying with the addin/module author.
Beta Was this translation helpful? Give feedback.
All reactions