DeveloperLV
DeveloperLV

Reputation: 1781

Microsoft.VBE reference in .NET 5.0 not available

When I type the following in a .NET 5.0 project:

Microsoft.

The following options show up:

enter image description here

But in .NET Framework:

enter image description here

The VBE option is available.

Why is this the case? How do I get the VBE to show up in my .NET 5.0 project?

Upvotes: 1

Views: 569

Answers (1)

DeveloperLV
DeveloperLV

Reputation: 1781

What I did was:

  • Opened both projects.
  • Opened up Reference Manager for both projects.
  • Searched Microsoft
  • Compared the 2 projects, which referenced were used.
  • And, the one I needed was Microsoft Visual Basis for Applications Extensibility 5.3.
  • Cleaned & Rebuild the project.

Upvotes: 3

Related Questions