Skip to content

Commit 081155a

Browse files
authored
(build) Add addindiscoignore attribute to some tools
This is a new attribute that AddinDisco understands, which will tell it to stop attempting to update these tools. This will mean that we can close the Issues/PRs that it has created for them, rather than having to leave them open to prevent it from re-creating them.
1 parent d46f95a commit 081155a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Source/Cake.Recipe/Content/toolsettings.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ public static class ToolSettings
3636
public static void SetToolPreprocessorDirectives(
3737
string codecovTool = "#tool nuget:?package=CodecovUploader&version=0.8.0",
3838
// This is specifically pinned to 0.7.0 as later versions of same package publish .NET Global Tool, rather than full framework version
39-
string coverallsTool = "#tool nuget:?package=coveralls.net&version=0.7.0",
39+
string coverallsTool = "#tool nuget:?package=coveralls.net&version=0.7.0&addindiscoignore=true",
4040
string gitReleaseManagerTool = "#tool nuget:?package=GitReleaseManager&version=0.20.0",
4141
// This is specifically pinned to 5.0.1 as later versions break compatibility with Unix.
42-
string gitVersionTool = "#tool nuget:?package=GitVersion.CommandLine&version=5.0.1",
42+
string gitVersionTool = "#tool nuget:?package=GitVersion.CommandLine&version=5.0.1&addindiscoignore=true",
4343
string reSharperTools = "#tool nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2025.2.2.1",
4444
string xunitTool = "#tool nuget:?package=xunit.runner.console&version=2.9.3",
4545
string nunitTool = "#tool nuget:?package=NUnit.ConsoleRunner&version=3.20.1",

0 commit comments

Comments
 (0)