[Build] Copy the Windows Desktop build outputs

This commit is contained in:
Matthew Leibowitz 2016-01-18 20:59:47 +02:00
Родитель f8158c42e3
Коммит a3b321b240
1 изменённых файлов: 31 добавлений и 2 удалений

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

@ -53,12 +53,41 @@ CakeSpec.Libs = new ISolutionBuilder [] {
},
new DefaultSolutionBuilder {
SolutionPath = "binding/SkiaSharp.Windows.sln",
Platform = "x86",
IsWindowsCompatible = true,
IsMacCompatible = false,
OutputFiles = new [] {
new OutputFileCopy {
FromFile = "./binding/SkiaSharp.Windows/bin/Release/SkiaSharp.dll",
ToDirectory = "./output/windows/"
FromFile = "./binding/SkiaSharp.WindowsDesktop/bin/x86/Release/SkiaSharp.dll",
ToDirectory = "./output/windows/x86/"
},
new OutputFileCopy {
FromFile = "./binding/SkiaSharp.WindowsDesktop/bin/x86/Release/SkiaSharp.pdb",
ToDirectory = "./output/windows/x86/"
},
new OutputFileCopy {
FromFile = "./binding/SkiaSharp.WindowsDesktop/bin/x86/Release/SkiaSharp.WindowsDesktop.targets",
ToDirectory = "./output/windows/x86/"
},
}
},
new DefaultSolutionBuilder {
SolutionPath = "binding/SkiaSharp.Windows.sln",
Platform = "x64",
IsWindowsCompatible = true,
IsMacCompatible = false,
OutputFiles = new [] {
new OutputFileCopy {
FromFile = "./binding/SkiaSharp.WindowsDesktop/bin/x64/Release/SkiaSharp.dll",
ToDirectory = "./output/windows/x64/"
},
new OutputFileCopy {
FromFile = "./binding/SkiaSharp.WindowsDesktop/bin/x64/Release/SkiaSharp.pdb",
ToDirectory = "./output/windows/x64/"
},
new OutputFileCopy {
FromFile = "./binding/SkiaSharp.WindowsDesktop/bin/x64/Release/SkiaSharp.WindowsDesktop.targets",
ToDirectory = "./output/windows/x64/"
},
}
},