Skip to content

Commit 7df7ca9

Browse files
Florian KroenertFlorian Kroenert
Florian Kroenert
authored and
Florian Kroenert
committed
Fixed ReportGenerator path
1 parent f7c42af commit 7df7ca9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.fsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ let libbuildDir = buildDir + @"lib\"
2323
let testDir = @".\test\"
2424

2525
let xUnitPath = "packages" @@ "xunit.runner.console" @@ "tools" @@ "net462" @@ "xunit.console.exe"
26+
let reportGeneratorPath = "packages" @@ "ReportGenerator" @@ "tools" @@ "net6.0" @@ "ReportGenerator.exe"
2627
let deployDir = @".\Publish\"
2728
let libdeployDir = deployDir + @"lib\"
2829
let nugetDir = @".\nuget\"
@@ -100,7 +101,7 @@ Target "CodeCoverage" (fun _ ->
100101

101102
Target "ReportCodeCoverage" (fun _ ->
102103
ReportGenerator (fun p -> { p with
103-
ExePath = "packages" @@ "ReportGenerator" @@ "tools" @@ "ReportGenerator.exe"
104+
ExePath = reportGeneratorPath
104105
WorkingDir = (testDir)
105106
TargetDir = "../reports"
106107
ReportTypes = [ReportGeneratorReportType.Html; ReportGeneratorReportType.Badges ]

0 commit comments

Comments
 (0)