We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2659b0 + e797c15 commit a1c83abCopy full SHA for a1c83ab
.build/Build.cs
@@ -2,6 +2,7 @@
2
using Nuke.Common;
3
using Nuke.Common.Execution;
4
using Nuke.Common.Git;
5
+using Nuke.Common.IO;
6
using Nuke.Common.Tools.DotNet;
7
using Nuke.Common.Tools.GitVersion;
8
using Nuke.Common.Tools.MSBuild;
@@ -64,4 +65,6 @@ public partial class Solution : NukeBuild,
64
65
.Before(Clean);
66
67
[Parameter("Configuration to build")] public Configuration Configuration { get; } = IsLocalBuild ? Configuration.Debug : Configuration.Release;
68
+
69
+ AbsolutePath ICanUpdateReadme.ReadmeFilePath => RootDirectory / "README.md";
70
}
0 commit comments