You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed a weird behavior I can't pinpoint exactly.
When I include version 2.0.0 in my Cake script it runs perfectly fine on Windows.
#addin "nuget:https://www.nuget.org/api/v2?package=Cake.DependenciesAnalyser&version=2.0.0"
Task("Analyse-Dependencies")
.Description("Runs the Dependencies Analyser on the solution.")
.Does(() =>
{
var settings = new DependenciesAnalyserSettings
{
Folder = "./"
};
AnalyseDependencies(settings);
});
However, when this is included and Cake starts on a UNIX system, the compiler starts complaining.
Removing the above code resolves the issue immediately.
I'll have a more in depth look when I've got more time but I wanted to let you know as that can take a while 😄
You can see the issue here: https://ci.appveyor.com/project/JanJoris/dotnet-core-sample/build/1.0.18/job/ijjicjy5joieu8jn
The text was updated successfully, but these errors were encountered:
I noticed a weird behavior I can't pinpoint exactly.
When I include version 2.0.0 in my Cake script it runs perfectly fine on Windows.
However, when this is included and Cake starts on a UNIX system, the compiler starts complaining.
Removing the above code resolves the issue immediately.
I'll have a more in depth look when I've got more time but I wanted to let you know as that can take a while 😄
You can see the issue here: https://ci.appveyor.com/project/JanJoris/dotnet-core-sample/build/1.0.18/job/ijjicjy5joieu8jn
The text was updated successfully, but these errors were encountered: