Added ARM64 to build script

This commit is contained in:
Benjamin Höglinger-Stelzer
2022-06-25 19:55:19 +02:00
parent 6b02661056
commit 318fe888af

View File

@@ -52,9 +52,12 @@ class Build : NukeBuild
var platform = MSBuildTargetPlatform.x64;
if (AppVeyor.Instance.Platform != null && AppVeyor.Instance.Platform.Equals("x86"))
if (AppVeyor.Instance.Platform is "x86")
platform = MSBuildTargetPlatform.Win32;
if (AppVeyor.Instance.Platform is "ARM64")
platform = (MSBuildTargetPlatform) "ARM64";
MSBuild(s => s
.SetTargetPath(DmfSolution)
.SetTargets("Build")