Skip to content

Commit cd157de

Browse files
Use msbuild
1 parent 966f4da commit cd157de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Task("Clean")
1717
Task("Restore")
1818
.Does(() =>
1919
{
20-
DotNetBuild("./LSP.sln", settings =>
20+
MSBuild("./LSP.sln", settings =>
2121
settings
2222
.SetConfiguration(configuration)
2323
.WithTarget("Restore"));
@@ -28,7 +28,7 @@ Task("Build")
2828
.IsDependentOn("Restore")
2929
.DoesForEach(GetFiles("src/**/*.csproj").Concat(GetFiles("test/**/*.csproj")), (project) =>
3030
{
31-
DotNetBuild(project, settings =>
31+
MSBuild(project, settings =>
3232
settings
3333
.SetConfiguration(configuration)
3434
.WithTarget("Build"));

0 commit comments

Comments
 (0)