I'm building a VSIX project and seeing this error message:
VSSDK1311 The vsixmanifest must contain a value for 'PackageManifest:Installation:InstallTarget:ProductArchitecture'.
What do I need to do to fix this?
I'm building a VSIX project and seeing this error message:
VSSDK1311 The vsixmanifest must contain a value for 'PackageManifest:Installation:InstallTarget:ProductArchitecture'.
What do I need to do to fix this?
I tried your way and got a few errors. I found a way to fix it. Because ProductArchitecture is a new metadata that was introduced in VS2022. Using 16.x versions of the build tools will not recognize it. You should be using the latest 17.x version of the build tools https://www.nuget.org/packages/Microsoft.VSSDK.BuildTools/17.0.3177-preview3
Since VS2022 is 64-bit, you must specify the architecture of the target you support.
Where you previously may have written:
You would now write:
If your VSIX is configured to target VS2022 as well as earlier versions you may specify that with something resembling: