From 0da8f1f2fbe5d2dd276ccf4b9827ed9bf0be5f95 Mon Sep 17 00:00:00 2001 From: Jameson2011 Date: Thu, 11 Jun 2020 18:17:34 +0100 Subject: [PATCH] remove unsupported platforms --- build.fsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build.fsx b/build.fsx index 3350d62..342cd55 100644 --- a/build.fsx +++ b/build.fsx @@ -66,12 +66,9 @@ let publishAndCopy runtime = Shell.copyDir targetDir sourceDir (fun _ -> true) -Target.create "PublishRuntime-ubuntu-arm" (fun _ -> publishAndCopy "ubuntu-arm") Target.create "PublishRuntime-ubuntu-arm64" (fun _ -> publishAndCopy "ubuntu-arm64") Target.create "PublishRuntime-ubuntu-x64" (fun _ -> publishAndCopy "ubuntu-x64") Target.create "PublishRuntime-win-x86" (fun _ -> publishAndCopy "win-x86") -Target.create "PublishRuntime-win-arm" (fun _ -> publishAndCopy "win-arm") -Target.create "PublishRuntime-linux-arm" (fun _ -> publishAndCopy "linux-arm") Target.create "PublishRuntime-linux-arm64" (fun _ -> publishAndCopy "linux-arm64") @@ -79,12 +76,9 @@ Target.create "All" ignore "Clean" ==> "Build" - ==> "PublishRuntime-ubuntu-arm" ==> "PublishRuntime-ubuntu-arm64" ==> "PublishRuntime-ubuntu-x64" ==> "PublishRuntime-win-x86" - ==> "PublishRuntime-win-arm" - ==> "PublishRuntime-linux-arm" ==> "PublishRuntime-linux-arm64" ==> "All"