csharpextensions
csharpextensions copied to clipboard
C# Extensions for Visual Studio Code
Hello, Thanks for the plugin. I started using this add-on. But in my projects mvc needed the creation of Controller Classes. So I added the template to generate it and...
How are you causing the context menu to come up that has the Create Constructor from Properties option? There is no indication in the README. If you are doing Right-Click...
Here are the steps to reproduce the issue: 1. Create a console project called Cat, `dotnet new console -o Cat` 2. Create a folder called `Food` under `Cat` 3. Right...
If a method signature or a constructor span multiple lines, and "Initialize ... from parameter" is executed for a parameter on the second or a subsequent line, the new field...
Hi. Great job! I've started to use this extension recently. But I faced off an issue that namespaces aren't being added to the start of the file. I suppose, this...
It asks for my class name an then says that it couldn't find the project.json nor the csproj file. Shared projects don't have either of them, they have .shproj files.
The code blow is fine, the Initialize popup can be triggered by __editor.action.quickFix__ ```c# public ClassName(IInterface a) { } ``` but for this below one, the Initialize popup cannot be...
Write a constructor like this ```C# public ClassName( int a, int b, int c, int d, int e, int f) { } ``` or ```C# public ClassName( int b, int...
If you create a class under folder `.template`, it creates a namespace called `.template`. I wonder if there is an API in roslyn to get invalid namespace chars and replace...
This PR brings around 2 features. Firstly, I have removed the `New C# class` and `New C# Interface` options, in favour of `New C# File` which will then prompt the...