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

Commit

Permalink
Merge pull request #144 from xamarin/28.0.0.1
Browse files Browse the repository at this point in the history
28.0.0.1
  • Loading branch information
Redth authored Jan 17, 2019
2 parents e1445d6 + 5706fe9 commit e977621
Show file tree
Hide file tree
Showing 8 changed files with 99 additions and 157 deletions.
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" },
};

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

0 comments on commit e977621

Please sign in to comment.