Use custom NuGet package failing #3307
Unanswered
richardgavel
asked this question in
Q&A
Replies: 1 comment
-
@richardgavel The problem is that Cake already has a reference to Additionally: Have you seen that there is a Cake addin available (Cake.ExtendedNuGet) that nicely wraps some of the features of You could do something like: #addin nuget:?package=Cake.ExtendedNuGet&version=4.0.2
Task("Default")
.Does(() =>
{
var version = GetNuGetPackageVersion(File("path/to/nupkg"));
});
RunTarget("Default"); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to reference a custom NuGet package and it can't compile the cake script.
Beta Was this translation helpful? Give feedback.
All reactions