├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── images ├── 2LidjZ3LK1.gif ├── icon.png └── l80qNdbMEp.gif ├── package.json └── snippets.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.vsix 2 | test -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/2LidjZ3LK1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/images/2LidjZ3LK1.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/l80qNdbMEp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/images/l80qNdbMEp.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisFeline/vscode-usharp-snippets/HEAD/snippets.json --------------------------------------------------------------------------------