Library issues with Visual Studio

1

I'm trying to build a project with Visual Studio and I get the following two errors:

C:\secrets\Microsoft.Common.CurrentVersion.targets(2545,5): warning MSB3284: Cannot get the file path for type library "00020813-0000-0000-c000-000000000046" version 1.9. Library not registered. (Exception from HRESULT: 0x8002801D (TYPE_E_LIBNOTREGISTERED)) C:\secrets\Microsoft.Common.CurrentVersion.targets(2545,5): warning MSB3283: Cannot find wrapper assembly for type library "VBIDE". 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.

I understand this means that two libraries are missing, and that one of them is called VBIDE, but I do not know what the other library is, nor do I know how to add the libraries.

c#
visual-studio
libraries
asked on Stack Overflow Mar 12, 2019 by ksmiles

1 Answer

2

On Solution Explorer, Click Show all Files, Click References, Select VBIDE, RightClick it and Remove it.

answered on Stack Overflow Mar 12, 2019 by Berme

User contributions licensed under CC BY-SA 3.0