From 51805b689875d294f4b7872a57a3109db5ca41df Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 23 Aug 2021 21:04:00 +0100 Subject: [PATCH] (build) Update path to manifest(s) So that updating the version numbers is working on correct file path. --- build.cake | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.cake b/build.cake index c748de9..7362c56 100644 --- a/build.cake +++ b/build.cake @@ -108,7 +108,12 @@ Task("Update-Manifest-Version") { BuildVersion.UpdateManifestVersion( context: Context, - path: "./src/source.extension.vsixmanifest" + path: "./src/Cake.VisualStudio/source.extension.vsixmanifest" + ); + + BuildVersion.UpdateManifestVersion( + context: Context, + path: "./src/Cake.VisualStudio.2022/source.extension.vsixmanifest" ); });