It's been a while since .NET Standard
is introduced by Microsoft. Earlier, if I wanted to obtain information about Project
, Solution
and other related objects (e.g solution path, projects in a solution, etc), I used DTE2
type which is an interface inside EnvDTE80
assembly. But EnvDTE80
isn't compatible with .NET Standard
.
Any idea how to turn around this problem? Is there a replacement at all?
By the way, I'm currently using .NET Standard 2.0
, if it matters.
DTE
related things to .NET Standard. To process projects or solutions, you can also use MSBuild/Roslyn instead. – Sosa