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

Commit e977621

Browse files
authored
Merge pull request #144 from xamarin/28.0.0.1
28.0.0.1
2 parents e1445d6 + 5706fe9 commit e977621

File tree

8 files changed

+99
-157
lines changed

8 files changed

+99
-157
lines changed

build.cake

+5-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ Task("libs")
102102
{
103103
NuGetRestore("./generated/AndroidSupport.sln", new NuGetRestoreSettings { });
104104

105-
MSBuild("./generated/AndroidSupport.sln", c => c.Configuration = "Release");
105+
MSBuild("./generated/AndroidSupport.sln", c => {
106+
c.Configuration = "Release";
107+
c.Properties.Add("DesignTimeBuild", new [] { "false" });
108+
});
106109
});
107110

108111
Task("nuget-restore")
@@ -136,7 +139,7 @@ Task("nuget-validation")
136139
NeedsProjectUrl = true,
137140
NeedsLicenseUrl = true,
138141
ValidateRequireLicenseAcceptance = true,
139-
ValidPackageNamespace = new [] { "Xamarin", "Mono", "SkiaSharp", "HarfBuzzSharp", "mdoc" },
142+
ValidPackageNamespace = new [] { "Xamarin" },
140143
};
141144

142145
var nupkgFiles = GetFiles ("./output/*.nupkg");

0 commit comments

Comments
 (0)