KirillOsenkov / RoslynQuoter

Roslyn tool that for a given C# program shows syntax tree API calls to construct its syntax tree
http://roslynquoter.azurewebsites.net
Apache License 2.0
918 stars 118 forks source link

Added support for parsing member declarations #46

Closed svick closed 5 years ago

svick commented 5 years ago

Roslyn 3.0 adds SyntaxFactory.ParseMemberDeclaration (see https://github.com/dotnet/roslyn/issues/367), so this PR updates to that version and adds support for using that method here.

(I have also simplified package references to take advantage of transitive nature of <PackageReference>.)

KirillOsenkov commented 5 years ago

Thanks!