scriptcs-sublime icon indicating copy to clipboard operation
scriptcs-sublime copied to clipboard

A scriptcs plug-in for Sublime Text.

Results 10 scriptcs-sublime issues
Sort by recently updated
recently updated
newest added

Running `scriptcs file.csx --install` will copy NuGet binaries into scripts bin directory. This should be exposed as a Sublime Text command, so that it can be invoked by a short-cut.

enhancement

I have a simple script ``` csharp #r "System.ComponentModel.DataAnnotations" using System.ComponentModel.DataAnnotations; class Person { [Required] public string Name { get; set; } [Required] public int Age { get; set; }...

Any way to add a linqpad type output so whe running a script which outputs a IEnumerable uquery it shows in a "grid" or collapsable tree view or something?

``` Found package reference: C:\code\scriptcs\samples\servicestackhost\packages\ServiceStack.3.9.37\lib\net35 Found package reference: C:\code\scriptcs\samples\servicestackhost\packages\ServiceStack.Common.3.9.37\lib\net35 Found package reference: C:\code\scriptcs\samples\servicestackhost\packages\ServiceStack.Redis.3.9.37\lib\net35 Found package reference: C:\code\scriptcs\samples\servicestackhost\packages\ServiceStack.Text.3.9.37\lib\net35 listening on http://*:999/ Unhandled Exception: System.InvalidOperationException: Cannot read keys when either application does...

bug

The package could have a dependency on Sublime so that it installs if the user doesn't already have it, and automatically add the scriptcs package to the installation.

I get the following error when I select build: [Error 6] The handle is invalid [cmd: [u'scriptcs', u'C:\dev\scriptcs\play\test.csx']] [dir: C:\dev\scriptcs\play] [path: C:\blah blah blah...;C:\dev\scriptcs\src\Scriptcs\bin\debug] [Finished] The same test.csx works fine...

Running `scriptcs -debug` will enable debugging og scriptcs files. Should be exposed as a Sublime Text command.

enhancement

Running `scriptcs.exe -clean` should remove any assemblies that were placed in the project's directory by scriptcs including, but not limited to, assemblies that are included in the packages declared in...

enhancement

Running `scriptcs file.csx -restore` will copy the binaries from the packages folder to the bin folder. Should be exposed as a Sublime Command so that we can use a keyboard...

enhancement

Sublime Text ships with syntax highlighting for C#. However, C# script has a slightly different syntax. For instance is it allowed to write code not belonging to a explicit class...