We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60a4019 commit 2a26263Copy full SHA for 2a26263
build/Build.cs
@@ -81,9 +81,9 @@ class Build : NukeBuild,
81
public IEnumerable<Project> TestProjects => From<IHazSolution>().Solution.GetProjects("*.Tests");
82
83
public bool CreateCoverageHtmlReport => true;
84
- public bool ReportToCodecov => RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
+ public bool ReportToCodecov => false; // TODO: #74 RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
85
86
- public Configure<ReportGeneratorSettings> ReportGeneratorSettings => _ => _.SetFramework("net6.0");
+ public Configure<ReportGeneratorSettings> ReportGeneratorSettings => x => x.SetFramework("net6.0");
87
88
string PublicNuGetSource => "https://api.nuget.org/v3/index.json";
89
0 commit comments