├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SpaTemplatePack.sln ├── appveyor.yml ├── art └── project-dialog.png └── src ├── Properties └── AssemblyInfo.cs ├── Resources └── Icon.png ├── SpaTemplatePack.csproj ├── source.extension.vsixmanifest └── template.pkgdef /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/README.md -------------------------------------------------------------------------------- /SpaTemplatePack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/SpaTemplatePack.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/project-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/art/project-dialog.png -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/SpaTemplatePack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/src/SpaTemplatePack.csproj -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/src/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/template.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SpaTemplatePack/HEAD/src/template.pkgdef --------------------------------------------------------------------------------