oleg-shilo / cs-script.npp

CS-Script (C# Intellisense) plugin for Notepad++ (x86/x64)
MIT License
246 stars 52 forks source link

Feature request to support DLL building from Notepad++ #19

Closed oleg-shilo closed 7 months ago

oleg-shilo commented 6 years ago

Moved from https://github.com/oleg-shilo/cs-script/issues/116

It would be great if the -cd argument from the commandline version of cscs.exe were included in the GUI as well (and maybe all of the other commandline arguments too, if possible)

oleg-shilo commented 6 years ago

This shouldn't be difficult but what user experience do you have in mind?

Though you can already use any arguments via the //css_args directive:

//css_args -cd
using System;
using System.Text.RegularExpressions;

class Script
{
    static void Main(string[] args)
    {
       . . .

And the outcome: image

mkosarekBHG commented 6 years ago

Ah, I had not come across the //css_args directive yet. This makes things much easier.

I was thinking, however, that it would be nice to have a Build Dll option in the menu dropdown. I find myself building Dlls quite often, but perhaps this is not a widespread issue.

oleg-shilo commented 6 years ago

Not a problem. I marked it as "enhancement". Will be done in the next release