From 54250913245147ab19ee2cd9a1951036c2c631bc Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Wed, 11 Feb 2026 14:37:14 -0500 Subject: [PATCH] fix(vsix): include VCProjectEngine assembly in VSIX package VSSDK.BuildTools has a hardcoded SuppressFromVsix list that excludes Microsoft.VisualStudio.VCProjectEngine.dll, assuming VS always provides it. This causes a missing assembly error when the C++ workload is not installed. Adding ForceIncludeInVSIX overrides the suppression. Fixes #32 --- .../CodingWithCalvin.OpenBinFolder.csproj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/CodingWithCalvin.OpenBinFolder/CodingWithCalvin.OpenBinFolder.csproj b/src/CodingWithCalvin.OpenBinFolder/CodingWithCalvin.OpenBinFolder.csproj index b906291..41ebdd5 100644 --- a/src/CodingWithCalvin.OpenBinFolder/CodingWithCalvin.OpenBinFolder.csproj +++ b/src/CodingWithCalvin.OpenBinFolder/CodingWithCalvin.OpenBinFolder.csproj @@ -12,7 +12,9 @@ - + + true +