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 966f4da commit cd157deCopy full SHA for cd157de
build.cake
@@ -17,7 +17,7 @@ Task("Clean")
17
Task("Restore")
18
.Does(() =>
19
{
20
- DotNetBuild("./LSP.sln", settings =>
+ MSBuild("./LSP.sln", settings =>
21
settings
22
.SetConfiguration(configuration)
23
.WithTarget("Restore"));
@@ -28,7 +28,7 @@ Task("Build")
28
.IsDependentOn("Restore")
29
.DoesForEach(GetFiles("src/**/*.csproj").Concat(GetFiles("test/**/*.csproj")), (project) =>
30
31
- DotNetBuild(project, settings =>
+ MSBuild(project, settings =>
32
33
34
.WithTarget("Build"));
0 commit comments