We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95d86f3 commit f2441f5Copy full SHA for f2441f5
1 file changed
build.cake
@@ -12,6 +12,7 @@ var configuration = Argument("configuration", "Release");
12
13
var project = "CommandLineParser";
14
var solution = $"./{project}.sln";
15
+var cmdParserProject = $"./{project}/{project}.csproj";
16
var nuspecFile = $"./{project}/{project}.nuspec";
17
var tests = $"./{project}.Tests/{project}.Tests.csproj";
18
var publishPath = MakeAbsolute(Directory("./output"));
@@ -60,7 +61,7 @@ Task("Publish")
60
61
.IsDependentOn("Test")
62
.IsDependentOn("Clean-Publish")
63
.Does( () => {
- DotNetCorePublish(solution,
64
+ DotNetCorePublish(cmdParserProject,
65
new DotNetCorePublishSettings {
66
67
NoRestore = true,
0 commit comments