Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 75ae3f2

Browse files
committed
Switching some projects back to DotNetBuild
MSBuild was causing path not found errors from Cake, so switching back for now.
1 parent 364a928 commit 75ae3f2

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
@@ -508,7 +508,7 @@ Task ("genapi").IsDependentOn ("libs-base").IsDependentOn ("externals").Does (()
508508
});
509509
}
510510

511-
MSBuild ("./AndroidSupport.TypeForwarders.sln", c => c.Configuration = BUILD_CONFIG);
511+
DotNetBuild ("./AndroidSupport.TypeForwarders.sln", c => c.Configuration = BUILD_CONFIG);
512512

513513
CopyFile ("./support-v4/source/bin/" + BUILD_CONFIG + "/Xamarin.Android.Support.v4.dll", "./output/Xamarin.Android.Support.v4.dll");
514514
});
@@ -517,7 +517,7 @@ Task ("buildtasks").Does (() =>
517517
{
518518
NuGetRestore ("./support-vector-drawable/buildtask/Vector-Drawable-BuildTasks.csproj");
519519

520-
MSBuild ("./support-vector-drawable/buildtask/Vector-Drawable-BuildTasks.csproj", c => c.Configuration = BUILD_CONFIG);
520+
DotNetBuild ("./support-vector-drawable/buildtask/Vector-Drawable-BuildTasks.csproj", c => c.Configuration = BUILD_CONFIG);
521521
});
522522

523523

0 commit comments

Comments
 (0)