Jon Sequeira
Jon Sequeira
They'll have different dependencies and you won't want the union of the two dependency graphs.
I think a more inverted model, and doing away with the concept of a `CommandLineHost`, might align well to the existing host models, which would give us something like: ```csharp...
re: 1. I think the use cases are the same for both generic host and web host, which is I want to use DI, logging, etc. in an app that...
Allowing you to host your own Try .NET instances is a long-term goal of the repo but is not currently being worked on. We've moved closer with the latest improvements...
The editor can be found here: https://dotnet.microsoft.com/en-us/languages
The element that needs to be sized is here:  It should be sized using the Monaco API, which is exposed by trydotnet.js.
https://microsoft.github.io/monaco-editor/typedoc/interfaces/editor.IEditor.html#layout.layout-1
I changed this to a bug because the current behavior seems wrong and unexpected. The behaviors you suggested @dfinke look like sensible defaults.
This is a great proposal, and probably doesn't require redirecting console output. .NET Interactive already captures console output and transforms it into a stream of events (`Kernel.KernelEvents`). Those events include...
I wouldn't special case console output. Other display events (e.g. `someValue.Display();`) are used at least as often in notebooks I see, and displays produced internally (including compilation errors) don't go...