We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe17ae4 commit 9187e52Copy full SHA for 9187e52
build/Build.cs
@@ -10,7 +10,6 @@
10
using Nuke.Common.Tools.DotNet;
11
using Nuke.Common.Utilities.Collections;
12
using static Nuke.Common.EnvironmentInfo;
13
-using static Nuke.Common.IO.FileSystemTasks;
14
using static Nuke.Common.IO.PathConstruction;
15
using static Nuke.Common.Tools.DotNet.DotNetTasks;
16
@@ -65,9 +64,7 @@ class Build : NukeBuild
65
64
.EnableNoRestore()
66
.SetConfiguration(Configuration)
67
.SetProjectFile(Solution)
68
- .SetProcessArgumentConfigurator(x => x
69
- .Add("-warnaserror")
70
- .Add("-warnnotaserror:CS0618,CS0612")));
+ .SetProcessAdditionalArguments("-warnaserror", "-warnnotaserror:CS0618,CS0612"));
71
});
72
73
Target Test => _ => _
0 commit comments