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

RoslynQuoter Program hardcodes input #52

Open jzabroski opened 4 years ago

jzabroski commented 4 years ago

https://github.com/KirillOsenkov/RoslynQuoter/blob/f21851342cf0467b7fb75b8258c842ffadcdc37b/src/Quoter/Program.cs#L9-L12

GrahamTheCoder commented 4 years ago

Program.cs isn't actually included in the project, and the project is a net standard library (not console app), so that file should probably just be deleted, and start with a fresh project for #53.

jzabroski commented 4 years ago

Ah, I missed this: https://github.com/KirillOsenkov/RoslynQuoter/blob/f21851342cf0467b7fb75b8258c842ffadcdc37b/src/Quoter/Quoter.csproj#L23

I was thinking #53 is actually two Tools.

  1. Tool that launches a DotNetTry Jupyter notebook that does Roslyn quoting, so that RoslynQuoter doesn't require internet connectivity to work: https://devblogs.microsoft.com/dotnet/net-core-with-juypter-notebooks-is-here-preview-1/
  2. Tool that is described in #53