You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this is actually possible since I've never developed any extension for vscode, but one thing that I think would be nice is if there was some snippet for scaffolding a class with its namespace already resolved.
Example
I just created a file named "Person.cs" on the "Entities" folder that belongs to the "MyProject.csproj". If I typed the snippet classn, it would generate the following data:
namespaceMyProject.Entities{publicclassPerson{}}
Extras
Account for the RootNamespace tag on the .csproj file
The text was updated successfully, but these errors were encountered:
I don't know if this is actually possible since I've never developed any extension for vscode, but one thing that I think would be nice is if there was some snippet for scaffolding a class with its namespace already resolved.
Example
I just created a file named "Person.cs" on the "Entities" folder that belongs to the "MyProject.csproj". If I typed the snippet
classn
, it would generate the following data:Extras
RootNamespace
tag on the .csproj fileThe text was updated successfully, but these errors were encountered: