[Build] Copy the Windows Desktop build outputs
This commit is contained in:
Родитель
f8158c42e3
Коммит
a3b321b240
33
build.cake
33
build.cake
|
@ -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/"
|
||||
},
|
||||
}
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче