Skip to content

Commit aaac7f8

Browse files
author
Marco Bertschi
committed
disable dupfinder (#4)
1 parent f890439 commit aaac7f8

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

setup.cake

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,18 @@ BuildParameters.SetParameters(
1616
appVeyorAccountName: "BBTSoftwareAG",
1717
shouldPublishMyGet: false,
1818
shouldRunCodecov: true,
19-
shouldDeployGraphDocumentation: false);
19+
shouldDeployGraphDocumentation: false,
20+
shouldRunDupFinder: false);
2021

2122
BuildParameters.PrintParameters(Context);
2223

23-
ToolSettings.SetToolSettings(
24-
context: Context,
25-
dupFinderExcludePattern: new string[] { BuildParameters.RootDirectoryPath + "/src/BBT.StructureTools.Tests/*.cs" },
26-
testCoverageFilter: "+[*]* -[xunit.*]* -[*.Tests]* -[Shouldly]*",
27-
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
28-
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
24+
// ToDo https://github.com/bbtsoftware/BBT.StructureTools/issues/4
25+
// ToolSettings.SetToolSettings(
26+
// context: Context,
27+
// dupFinderExcludePattern: new string[] { BuildParameters.RootDirectoryPath + "/src/BBT.StructureTools.Tests/*.cs" },
28+
// testCoverageFilter: "+[*]* -[xunit.*]* -[*.Tests]* -[Shouldly]*",
29+
// testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
30+
// testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
2931

3032
//////////////////////////////////////////////////////////////////////
3133
// EXECUTION

0 commit comments

Comments
 (0)