From 486d8d90aad1d546624b3330ff9fc27faf941ec7 Mon Sep 17 00:00:00 2001 From: Bojan Rajkovic Date: Tue, 2 May 2017 15:44:59 -0400 Subject: [PATCH] Skip signing for Workbooks integration. --- build.cake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.cake b/build.cake index fc1a9d90..0f881614 100644 --- a/build.cake +++ b/build.cake @@ -627,7 +627,8 @@ Task ("nuget") // And, we want to make sure all is well on Windows too if (IS_ON_FINAL_CI || IsRunningOnWindows ()) { var excludedAssemblies = new string[] { - "/SkiaSharp.Views.Forms.dll" // Xamarin.Forms is not sigend, so we can't sign + "/SkiaSharp.Views.Forms.dll", // Xamarin.Forms is not sigend, so we can't sign + "/SkiaSharp.Workbooks.dll" // Workbooks integration library is not signed, so we can't sign }; foreach (var f in GetFiles("./output/*/*.dll")) { // skip the excluded assemblies