├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── TUTORIALS.md ├── images └── vscode-csharp-snippets.png ├── package.json ├── snippets └── csharp.json └── videos ├── csproj_2_aspnetcore_helloworld_snippet.gif └── csproj_2_csharp_helloworld_snippet.gif /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/README.md -------------------------------------------------------------------------------- /TUTORIALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/TUTORIALS.md -------------------------------------------------------------------------------- /images/vscode-csharp-snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/images/vscode-csharp-snippets.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/csharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/snippets/csharp.json -------------------------------------------------------------------------------- /videos/csproj_2_aspnetcore_helloworld_snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/videos/csproj_2_aspnetcore_helloworld_snippet.gif -------------------------------------------------------------------------------- /videos/csproj_2_csharp_helloworld_snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J0rgeSerran0/vscode-csharp-snippets/HEAD/videos/csproj_2_csharp_helloworld_snippet.gif --------------------------------------------------------------------------------