Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Cake.Recipe/Content/setup.cake
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ Setup<BuildData>(context =>
.IsDependentOn("Build")
.IsDependentOn("InspectCode");

// Define additional URL resolvers for Cake.Issues

// Rules from https://github.com/cake-contrib/CakeContrib.Guidelines
MsBuildAddRuleUrlResolver(x =>
x.Category.ToUpperInvariant() == "CCG" ?
new Uri("https://cake-contrib.github.io/CakeContrib.Guidelines/rules/" + x.Rule.ToLowerInvariant()) :
null,
5);

return new BuildData(context);
});

Expand Down
2 changes: 1 addition & 1 deletion Cake.Recipe/Content/toolsettings.cake
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static class ToolSettings
string gitReleaseManagerTool = "#tool nuget:?package=GitReleaseManager&version=0.11.0",
// This is specifically pinned to 5.0.1 as later versions break compatibility with Unix.
string gitVersionTool = "#tool nuget:?package=GitVersion.CommandLine&version=5.0.1",
string reSharperTools = "#tool nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2020.2.3",
string reSharperTools = "#tool nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2020.2.4",
string kuduSyncTool = "#tool nuget:?package=KuduSync.NET&version=1.5.3",
string wyamTool = "#tool nuget:?package=Wyam&version=2.2.9",
string xunitTool = "#tool nuget:?package=xunit.runner.console&version=2.4.1",
Expand Down