Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ Task("libs")
{
NuGetRestore("./generated/AndroidSupport.sln", new NuGetRestoreSettings { });

MSBuild("./generated/AndroidSupport.sln", c => c.Configuration = "Release");
MSBuild("./generated/AndroidSupport.sln", c => {
c.Configuration = "Release";
c.Properties.Add("DesignTimeBuild", new [] { "false" });
});
});

Task("nuget-restore")
Expand Down Expand Up @@ -136,7 +139,7 @@ Task("nuget-validation")
NeedsProjectUrl = true,
NeedsLicenseUrl = true,
ValidateRequireLicenseAcceptance = true,
ValidPackageNamespace = new [] { "Xamarin", "Mono", "SkiaSharp", "HarfBuzzSharp", "mdoc" },
ValidPackageNamespace = new [] { "Xamarin" },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A total non-issue, but maybe it might be better to be more specific? "Xamarin.Android.Support" and "Xamarin.Android.Arch" just to make sure that no mistakes creep in for the first few names.

};

var nupkgFiles = GetFiles ("./output/*.nupkg");
Expand Down
Loading