You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 9, 2026. It is now read-only.
Starting from a clean slate, I get the following errors when trying to build the solution: 2>[path]: warning MSB3283: Cannot find wrapper assembly for type library "EnvDTE80". Verify that (1) the COM component is registered correctly and (2) your target platform is the same as the bitness of the COM component. For example, if the COM component is 32-bit, your target platform must not be 64-bit. 2>[path]: warning MSB3283: Cannot find wrapper assembly for type library "EnvDTE90". Verify that (1) the COM component is registered correctly and (2) your target platform is the same as the bitness of the COM component. For example, if the COM component is 32-bit, your target platform must not be 64-bit.
The issue seems to be a breaking change to older VS versions, described here.
I solved the issue by simply deleting the references to envdte80, envdte90 and envdte100.
Starting from a clean slate, I get the following errors when trying to build the solution:
2>[path]: warning MSB3283: Cannot find wrapper assembly for type library "EnvDTE80". Verify that (1) the COM component is registered correctly and (2) your target platform is the same as the bitness of the COM component. For example, if the COM component is 32-bit, your target platform must not be 64-bit. 2>[path]: warning MSB3283: Cannot find wrapper assembly for type library "EnvDTE90". Verify that (1) the COM component is registered correctly and (2) your target platform is the same as the bitness of the COM component. For example, if the COM component is 32-bit, your target platform must not be 64-bit.The issue seems to be a breaking change to older VS versions, described here.
I solved the issue by simply deleting the references to envdte80, envdte90 and envdte100.