├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── featureimages ├── ctorfromprop.gif ├── fieldfromctor.gif ├── fullpropfromctor.gif ├── newclass.gif ├── newinterface.gif └── propfromctor.gif ├── licence.txt ├── logo.png ├── package.json ├── src ├── codeActionProvider.ts └── extension.ts ├── templates ├── class.tmpl └── interface.tmpl ├── test ├── extension.test.ts └── index.ts ├── tsconfig.json └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | *.vsix -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/README.md -------------------------------------------------------------------------------- /featureimages/ctorfromprop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/featureimages/ctorfromprop.gif -------------------------------------------------------------------------------- /featureimages/fieldfromctor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/featureimages/fieldfromctor.gif -------------------------------------------------------------------------------- /featureimages/fullpropfromctor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/featureimages/fullpropfromctor.gif -------------------------------------------------------------------------------- /featureimages/newclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/featureimages/newclass.gif -------------------------------------------------------------------------------- /featureimages/newinterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/featureimages/newinterface.gif -------------------------------------------------------------------------------- /featureimages/propfromctor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/featureimages/propfromctor.gif -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/licence.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/package.json -------------------------------------------------------------------------------- /src/codeActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/src/codeActionProvider.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/src/extension.ts -------------------------------------------------------------------------------- /templates/class.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/templates/class.tmpl -------------------------------------------------------------------------------- /templates/interface.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/templates/interface.tmpl -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/test/extension.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/csharpextensions/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------