Is there a way to use the C# interactive shell window (from the Roslyn CTP) outside of VS? Or is there something similar to it that is available?
|
feedback
|
|
Right now, the interactive window only works inside Visual Studio. Roslyn exposes a scripting API which the interactive window uses, so you really want an interactive window running somewhere else, feel free to write it! | |||
|
feedback
|
|
To be clear, the C# Interactive window uses several Visual Studio components (such as the VS Editor), so it cannot be hosted outside of VS. As Jason Malinowski said, you can create a quick-and-dirty Interactive window outside of VS pretty easily using the Roslyn Scripting APIs. Also, if you're looking to evaluate code outside of VS, you can create a C# Script file (.csx), add top-level code just as you can in the Interactive window, and run it with the rcsi.exe binary that ships with the Roslyn CTP. | |||
|
feedback
|
|
Here is a quick Example, pretty minimal though. Don't support blocks {} http://www.amazedsaint.com/2011/10/c-vnext-roslynan-introduction-and-quick.html | |||
|
feedback
|