From abb559d35ffbcda8ef4fb19d40067d122efe9429 Mon Sep 17 00:00:00 2001 From: qhy040404 Date: Fri, 8 Dec 2023 17:02:40 +0800 Subject: [PATCH] prepare for veyor --- build.cake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.cake b/build.cake index 1e9ece3f..a8b42f9d 100644 --- a/build.cake +++ b/build.cake @@ -43,6 +43,10 @@ if (AzurePipelines.IsRunningOnAzurePipelines) pfxFile = System.IO.Path.Combine(AzurePipelines.Environment.Agent.HomeDirectory.FullPath, "_work", "_temp", "DGP_Studio_CI.pfx"); } +else if (AppVeyor.IsRunningOnAppVeyor) +{ + throw new NotImplementedException(); +} Task("Build") .IsDependentOn("Build binary package")