├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TemplateCreator.sln ├── appveyor.yml ├── art ├── add-host-files.png ├── context-menu-project.png └── solution-explorer.png └── src ├── Commands ├── AddCliHostFile.cs ├── AddTemplate.cs └── AddVsHostFile.cs ├── Constants.cs ├── Properties └── AssemblyInfo.cs ├── Resources ├── Icon.png ├── dotnetcli.host.json ├── template-icon.png └── vs-2017.3.host.json ├── Shared ├── InfoCollectorDialog.xaml ├── InfoCollectorDialog.xaml.cs ├── TemplateGenerator.cs └── VsHelpers.cs ├── TemplateCreator.csproj ├── TemplateCreatorPackage.cs ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── source.extension.cs ├── source.extension.ico ├── source.extension.resx └── source.extension.vsixmanifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/README.md -------------------------------------------------------------------------------- /TemplateCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/TemplateCreator.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/add-host-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/art/add-host-files.png -------------------------------------------------------------------------------- /art/context-menu-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/art/context-menu-project.png -------------------------------------------------------------------------------- /art/solution-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/art/solution-explorer.png -------------------------------------------------------------------------------- /src/Commands/AddCliHostFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Commands/AddCliHostFile.cs -------------------------------------------------------------------------------- /src/Commands/AddTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Commands/AddTemplate.cs -------------------------------------------------------------------------------- /src/Commands/AddVsHostFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Commands/AddVsHostFile.cs -------------------------------------------------------------------------------- /src/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Constants.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/Resources/dotnetcli.host.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/Resources/template-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Resources/template-icon.png -------------------------------------------------------------------------------- /src/Resources/vs-2017.3.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Resources/vs-2017.3.host.json -------------------------------------------------------------------------------- /src/Shared/InfoCollectorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Shared/InfoCollectorDialog.xaml -------------------------------------------------------------------------------- /src/Shared/InfoCollectorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Shared/InfoCollectorDialog.xaml.cs -------------------------------------------------------------------------------- /src/Shared/TemplateGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Shared/TemplateGenerator.cs -------------------------------------------------------------------------------- /src/Shared/VsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/Shared/VsHelpers.cs -------------------------------------------------------------------------------- /src/TemplateCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/TemplateCreator.csproj -------------------------------------------------------------------------------- /src/TemplateCreatorPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/TemplateCreatorPackage.cs -------------------------------------------------------------------------------- /src/VSCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/VSCommandTable.cs -------------------------------------------------------------------------------- /src/VSCommandTable.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/VSCommandTable.vsct -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/source.extension.ico -------------------------------------------------------------------------------- /src/source.extension.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/source.extension.resx -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TemplateCreator/HEAD/src/source.extension.vsixmanifest --------------------------------------------------------------------------------