Remove native build step from cake script
This commit is contained in:
Родитель
cbda5e7be8
Коммит
f14889f77f
|
@ -213,34 +213,6 @@ Task("Package")
|
|||
.WithProperty("PackageOutputPath", nupkgDir);
|
||||
|
||||
MSBuild(Solution, buildSettings);
|
||||
|
||||
// Build and pack C++ packages
|
||||
buildSettings = new MSBuildSettings
|
||||
{
|
||||
MaxCpuCount = 0
|
||||
}
|
||||
.SetConfiguration("Native");
|
||||
|
||||
buildSettings.SetPlatformTarget(PlatformTarget.ARM);
|
||||
MSBuild(Solution, buildSettings);
|
||||
|
||||
buildSettings.SetPlatformTarget(PlatformTarget.x64);
|
||||
MSBuild(Solution, buildSettings);
|
||||
|
||||
buildSettings.SetPlatformTarget(PlatformTarget.x86);
|
||||
MSBuild(Solution, buildSettings);
|
||||
|
||||
var nuGetPackSettings = new NuGetPackSettings
|
||||
{
|
||||
OutputDirectory = nupkgDir,
|
||||
Version = Version
|
||||
};
|
||||
|
||||
var nuspecs = GetFiles("./*.nuspec");
|
||||
foreach (var nuspec in nuspecs)
|
||||
{
|
||||
NuGetPack(nuspec, nuGetPackSettings);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче