Today, Microsoft opened the new version of Roslyn, and since this release is the first of about a year and a half, there are a huge number of migration problems. ( Symbol→ ISymbol, and basically every non-interface for the interface is predominant). However, I used:
Solution.LoadStandAloneProject(projectFile);
To get a solution created from a file .csproj. (there were also static methods that consumed the file .slnin the same way)
However, the new version Microsoft.CodeAnalysisdoes not have a class Solutionthat contains any static methods. What is the correct method to call the new API to achieve this functionality?
source
share