The interop solution was removed

This commit is contained in:
Matthew Leibowitz 2016-09-19 00:06:37 +02:00
Родитель ce36f0882d
Коммит e2a85aafa8
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -90,16 +90,16 @@ Task ("libs")
CopyFileToDirectory ("./binding/SkiaSharp.UWP/bin/Release/SkiaSharp.UWP.targets", "./output/uwp/");
// build the native interop
RunNuGetRestore ("./source/SkiaSharp.Views/SkiaSharp.Views.Interop.sln");
DotNetBuild ("./source/SkiaSharp.Views/SkiaSharp.Views.Interop.sln", c => {
RunNuGetRestore ("./source/SkiaSharp.Views.Interop.sln");
DotNetBuild ("./source/SkiaSharp.Views.Interop.sln", c => {
c.Configuration = "Release";
c.Properties ["Platform"] = new [] { "x86" };
});
DotNetBuild ("./source/SkiaSharp.Views/SkiaSharp.Views.Interop.sln", c => {
DotNetBuild ("./source/SkiaSharp.Views.Interop.sln", c => {
c.Configuration = "Release";
c.Properties ["Platform"] = new [] { "x64" };
});
DotNetBuild ("./source/SkiaSharp.Views/SkiaSharp.Views.Interop.sln", c => {
DotNetBuild ("./source/SkiaSharp.Views.Interop.sln", c => {
c.Configuration = "Release";
c.Properties ["Platform"] = new [] { "ARM" };
});