CShell icon indicating copy to clipboard operation
CShell copied to clipboard

A simple, yet powerful, C# scripting IDE and REPL

Results 39 CShell issues
Sort by recently updated
recently updated
newest added

You can select text in the C# interactive window and drag it to another line, creating a mangled mess. Not HUGE deal but it should be readonly right?

bug

Hi Luke, I am attempting to add a new reference to the `ICompletion` provider via ``` editor.CompletionEngine.AddReferences(new Assembly[] { typeof(MathNet.Numerics.LinearAlgebra.Matrix).Assembly }); ``` where the `editor.ComletionEngine` is ``` ICompletion CompletionEngine; ```...

question

Hi, When create a System.Windows.Forms.Form object -> then invoking .Show() method, I can't continue using C# interactive afterward. CShell would stop responding as soon as I start to type in...

bug

If a DLL file reference is added in the workspace, add the ability to recompile the DLL via visual studio while the object is still referenced by CShell In order...

feature

Right now, if a package is missing the workspace fails to open, the references have to be cleaned out manually in the packages file. - On workspace open, missing references...

bug
feature

It seems like the autocompletion doesn't currently work very well when defining new classes/methods/etc. right now, and because of that often completes something unexpected. If I open a new script...

feature
code completion

Whenever I write `list.Where(item` .. the code completion tries to insert a value instead of a parameter.

bug
code completion

I keep wanting to hit F5 to run instead of Alt+Shift+Return. I'd like to see the hotkeys mimic those of Visual Studio. I suppose the ultimate solution is configurable hotkeys,...

feature

1. Create simple external library (DLL) 2. Add the lib as a reference to the CShell workspace 3. Add a 'using ___' statement to Scratchpad.csx for the namespace of the...

bug
code completion