├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── LICENSE.md ├── LigerShark.Templates ├── Angular2RenameWizard.cs ├── AngularDirectiveUsageWizard.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── DirectoryHelper.cs ├── DownloadZipWindow.xaml ├── DownloadZipWindow.xaml.cs ├── Downloader.cs ├── DynamicBuilder │ ├── SettingsStore.cs │ ├── TemplateFolderBuilder.cs │ └── TemplateSource.cs ├── Extensions │ └── HttpContentExtensions.cs ├── GoogleAnalyticsApi.cs ├── GoogleAnalyticsWizard.cs ├── Html5UpProjectWizard.cs ├── InmemoryMsbuildLogger.cs ├── LigerShark.Templates.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── Project Templates ├── Azure │ └── WebJobs │ │ └── WebJobsHelloWorld │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── WebJobsHelloWorld.csproj │ │ ├── _Definitions │ │ └── _project.vstemplate.xml │ │ ├── _preprocess.xml │ │ ├── azure-icon-120x120.png │ │ ├── azure-icon-256x256.png │ │ └── packages.config ├── Nancy.CSharp.AspNetHost │ ├── Bootstrapper.cs │ ├── Content │ │ └── nancy-logo.png │ ├── Modules │ │ └── IndexModule.cs │ ├── Nancy.CSharp.AspNetHost.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── index.sshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── icon.png │ └── packages.config ├── Nancy.CSharp.AspNetHostWithRazor │ ├── Bootstrapper.cs │ ├── Content │ │ └── nancy-logo.png │ ├── Modules │ │ └── IndexModule.cs │ ├── Nancy.CSharp.AspNetHostWithRazor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── index.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── icon.png │ └── packages.config ├── Nancy.CSharp.Demo │ ├── Bootstrapper.cs │ ├── Content │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.css │ │ ├── default.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── nancy-vertical-bf-tb.png │ │ └── scripts │ │ │ ├── bootstrap.js │ │ │ ├── highlight.min.js │ │ │ └── jquery.min.js │ ├── Modules │ │ └── IndexModule.cs │ ├── Nancy.CSharp.Demo.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ ├── index.html │ │ └── layout.html │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── icon.png │ └── packages.config ├── Nancy.CSharp.EmptyAspNetHost │ ├── Nancy.CSharp.EmptyAspNetHost.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── icon.png │ └── packages.config ├── Nancy.CSharp.EmptyAspNetHostingWithRazor │ ├── Nancy.CSharp.EmptyAspNetHostWithRazor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── icon.png │ └── packages.config ├── Nancy.CSharp.EmptySelfHost │ ├── Nancy.CSharp.EmptySelfHost.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── icon.png │ └── packages.config ├── Nancy.CSharp.EmptySelfHostWithRazor │ ├── Nancy.CSharp.EmptySelfHostWithRazor.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── icon.png │ ├── packages.config │ └── web.config ├── Nancy.CSharp.SelfHost │ ├── Bootstrapper.cs │ ├── Content │ │ └── nancy-logo.png │ ├── Modules │ │ └── IndexModule.cs │ ├── Nancy.CSharp.SelfHost.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── index.sshtml │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── icon.png │ └── packages.config ├── Nancy.CSharp.SelfHostWithRazor │ ├── Bootstrapper.cs │ ├── Content │ │ └── nancy-logo.png │ ├── Modules │ │ └── IndexModule.cs │ ├── Nancy.CSharp.SelfHostWithRazor.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── index.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── icon.png │ ├── packages.config │ └── web.config ├── RazorV3WebApplication │ ├── About.cshtml │ ├── Account │ │ ├── AccountLockedOut.cshtml │ │ ├── Confirm.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── Login.cshtml │ │ ├── Logout.cshtml │ │ ├── Manage.cshtml │ │ ├── PasswordReset.cshtml │ │ ├── Register.cshtml │ │ ├── RegisterService.cshtml │ │ ├── Thanks.cshtml │ │ └── _ExternalLoginsList.cshtml │ ├── App_Data │ │ └── StarterSite.sdf │ ├── Contact.cshtml │ ├── Content │ │ ├── Site.css │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.menu.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.spinner.css │ │ │ ├── jquery.ui.tabs.css │ │ │ ├── jquery.ui.theme.css │ │ │ ├── jquery.ui.tooltip.css │ │ │ └── minified │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.menu.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.spinner.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ ├── jquery.ui.theme.min.css │ │ │ └── jquery.ui.tooltip.min.css │ ├── Default.cshtml │ ├── Images │ │ ├── accent.png │ │ ├── bullet.png │ │ ├── heroAccent.png │ │ ├── orderedList0.png │ │ ├── orderedList1.png │ │ ├── orderedList2.png │ │ ├── orderedList3.png │ │ ├── orderedList4.png │ │ ├── orderedList5.png │ │ ├── orderedList6.png │ │ ├── orderedList7.png │ │ ├── orderedList8.png │ │ └── orderedList9.png │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorV3WebApplication.csproj │ ├── Scripts │ │ ├── _references.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery-ui-1.10.3.js │ │ ├── jquery-ui-1.10.3.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── knockout-2.3.0.debug.js │ │ ├── knockout-2.3.0.js │ │ └── modernizr-2.6.2.js │ ├── Web.config │ ├── _AppStart.cshtml │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _SiteLayout.cshtml │ ├── _preprocess.xml │ ├── favicon.ico │ ├── packages.config │ └── sw-file-icon.png ├── Windows Desktop │ └── ConsoleApplicationAsync │ │ ├── App.config │ │ ├── ConsoleApplicationAsync.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── _Definitions │ │ └── _project.vstemplate.xml │ │ └── _preprocess.xml ├── _SampleProjRef │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _SampleProjRef.csproj │ ├── _preprocess.xml │ └── sw-file-icon.png ├── html5up │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── html5up.csproj │ └── sw-file-icon.png └── xUnitTestProject │ ├── Class1.cs │ ├── UnitTestProject.xproj │ ├── _Definitions │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── logo-512-transparent.png │ ├── logo-64-transparent.png │ ├── project.json │ └── sw-file-icon.png ├── README.md ├── SideWaffle.Common ├── DownloadZipWindow.xaml ├── DownloadZipWindow.xaml.cs ├── Downloader.cs ├── Extensions │ └── HttpContentExtensions.cs ├── Html5UpProjectWizard.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SideWaffle.Common.csproj └── packages.config ├── SideWaffle.sln ├── TemplatePack ├── ImageCompressor.Job.exe.csv ├── ItemTemplates │ ├── AppVeyor │ │ ├── Empty │ │ │ ├── Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── vb.vstemplate │ │ │ ├── appveyor-icon.png │ │ │ └── appveyor.yml │ │ └── Full │ │ │ ├── Definitions │ │ │ ├── CSharp.vstemplate │ │ │ └── vb.vstemplate │ │ │ ├── appveyor-icon.png │ │ │ └── appveyor.yml │ ├── Azure │ │ ├── BlobUploadHelper │ │ │ ├── BlobUploadHelper.cs │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ └── azure-icon.png │ │ ├── CloudServicePlugin │ │ │ ├── CloudServicePlugin.csplugin │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ └── azure-icon.png │ │ └── TableStorageEntity │ │ │ ├── TableStorageEntity.cs │ │ │ ├── _Definitions │ │ │ └── CSharp.vstemplate │ │ │ └── azure-icon.png │ ├── Build and NuGet │ │ ├── MSBuild │ │ │ ├── BasicProjFile │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ └── VB.vstemplate │ │ │ │ ├── build.proj │ │ │ │ └── icon.png │ │ │ ├── BasicPropsFile │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ └── VB.vstemplate │ │ │ │ ├── custom.props │ │ │ │ └── icon.png │ │ │ ├── BasicTargetsFile │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ └── VB.vstemplate │ │ │ │ ├── custom.targets │ │ │ │ └── icon.png │ │ │ └── NuGetRestoreProjFile │ │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── VB.vstemplate │ │ │ │ ├── build.proj │ │ │ │ └── icon.png │ │ └── NuGet │ │ │ ├── Advanced .nuspec file │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ ├── icon.png │ │ │ └── project.nuspec │ │ │ └── Basic .nuspec file │ │ │ ├── _Definitions │ │ │ ├── CSharp.vstemplate │ │ │ ├── VB.vstemplate │ │ │ └── Web.csharp.vstemplate │ │ │ ├── icon.png │ │ │ └── project.nuspec │ ├── Extensibility │ │ ├── BrowserLink │ │ │ ├── MyExtension.cs │ │ │ ├── MyExtension.js │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ └── icon.png │ │ ├── CodeSnippet │ │ │ ├── CSharpSnippet.snippet │ │ │ ├── VBSnippet.snippet │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ └── icon.png │ │ ├── Editor Drop Handler │ │ │ ├── MyDropHandler.cs │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ └── icon.png │ │ ├── HtmlSmartTag │ │ │ ├── AddClassSmartTag.cs │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ └── icon.png │ │ ├── HtmlValidator │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── icon.png │ │ │ └── validator.cs │ │ ├── JsonSchemaSelector │ │ │ ├── JsonSchemaSelector.cs │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ └── icon.png │ │ ├── Package Definition │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── VB.vstemplate │ │ │ ├── icon.png │ │ │ └── project.pkgdef │ │ ├── SideWaffle │ │ │ ├── SW-ProjectVSTemplateFile │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── FSharp.vstemplate │ │ │ │ │ └── VB.vstemplate │ │ │ │ ├── _preprocess-template.xml │ │ │ │ ├── _project.vstemplate.xml │ │ │ │ ├── fsharp._project.vstemplate.xml │ │ │ │ └── sw-file-icon.png │ │ │ ├── SideWaffle-DefinitionFiles │ │ │ │ ├── CSharp.vstemplat- │ │ │ │ ├── VB.vstemplat- │ │ │ │ ├── Web.VB.vstemplat- │ │ │ │ ├── Web.csharp.vstemplat- │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ └── VB.vstemplate │ │ │ │ ├── file-icon.png │ │ │ │ ├── icon.png │ │ │ │ └── readme.txt │ │ │ ├── SideWaffle-ItemTemplate-Basic │ │ │ │ ├── CSharp.vstemplat- │ │ │ │ ├── VB.vstemplat- │ │ │ │ ├── Web.VB.vstemplat- │ │ │ │ ├── Web.csharp.vstemplat- │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ └── VB.vstemplate │ │ │ │ ├── file-icon.png │ │ │ │ ├── icon.png │ │ │ │ └── readme.txt │ │ │ └── SideWaffle-PreprocessXml │ │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── VB.vstemplate │ │ │ │ ├── _preprocess.xml │ │ │ │ └── file-icon.png │ │ └── VS Command Table │ │ │ ├── Guids.cs │ │ │ ├── PkgCmdID.cs │ │ │ ├── VSPackage.vsct │ │ │ ├── VSPackagePackage.cs │ │ │ ├── _Definitions │ │ │ └── CSharp.vstemplate │ │ │ └── icon.png │ ├── LightSwitch │ │ └── WebAPI2EmptyController │ │ │ ├── Definitions │ │ │ └── CSharp.vstemplate │ │ │ ├── EmptyController.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ └── aspnet.ico │ ├── Misc │ │ ├── Dockerfile │ │ │ ├── Dockerfile │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ └── icon.png │ │ ├── ReadmeMd │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ ├── icon.pdn │ │ │ ├── icon.png │ │ │ └── readme.md │ │ └── Svg │ │ │ ├── _Definitions │ │ │ ├── CSharp.vstemplate │ │ │ ├── VB.vstemplate │ │ │ └── Web.csharp.vstemplate │ │ │ ├── file.svg │ │ │ └── icon.png │ ├── Test │ │ ├── NUnitFixture │ │ │ ├── Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── NUnitFixture.cs │ │ │ └── icon.png │ │ └── RunSettings │ │ │ ├── STAR10.ico │ │ │ ├── _Definitions │ │ │ └── csharp.vstemplate │ │ │ └── default.runsettings │ ├── TypeScript │ │ ├── AngularJs │ │ │ ├── TypeScript Controller using $scope │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── controller.ts │ │ │ │ └── icon.png │ │ │ ├── TypeScript Controller │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── controller.ts │ │ │ │ └── icon.png │ │ │ ├── TypeScript Directive │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── directive.ts │ │ │ │ └── icon.png │ │ │ ├── TypeScript Factory │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── factory.ts │ │ │ │ └── icon.png │ │ │ ├── TypeScript Module │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── module.ts │ │ │ └── TypeScript Service │ │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── service.ts │ │ └── TS watermark.png │ ├── WPF │ │ └── readme.md │ ├── Web │ │ ├── ASP.NET │ │ │ ├── Custom T4 Files │ │ │ │ ├── ApiControllerEmpty │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── ApiControllerWithActions │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── ApiControllerWithContext │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── ApiDependencyCodeGenerator │ │ │ │ │ ├── Global.asax.cs.t4 │ │ │ │ │ ├── Global.asax.vb.t4 │ │ │ │ │ ├── Global.cs.t4 │ │ │ │ │ ├── Global.vb.t4 │ │ │ │ │ ├── WebApiConfig.cs.t4 │ │ │ │ │ └── WebApiConfig.vb.t4 │ │ │ │ ├── MvcArea │ │ │ │ │ ├── Area.cs.t4 │ │ │ │ │ ├── Area.vb.t4 │ │ │ │ │ ├── web.cs.t4 │ │ │ │ │ └── web.vb.t4 │ │ │ │ ├── MvcControllerEmpty │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── MvcControllerWithActions │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── MvcControllerWithContext │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── MvcFullDependencyCodeGenerator │ │ │ │ │ ├── BundleConfig.cs.t4 │ │ │ │ │ ├── BundleConfig.vb.t4 │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── Error.vbhtml │ │ │ │ │ ├── FilterConfig.cs.t4 │ │ │ │ │ ├── FilterConfig.vb.t4 │ │ │ │ │ ├── Global.asax.cs.t4 │ │ │ │ │ ├── Global.asax.vb.t4 │ │ │ │ │ ├── Global.cs.t4 │ │ │ │ │ ├── Global.vb.t4 │ │ │ │ │ ├── RouteConfig.cs.t4 │ │ │ │ │ ├── RouteConfig.vb.t4 │ │ │ │ │ ├── Site.cs.t4 │ │ │ │ │ ├── Site.vb.t4 │ │ │ │ │ ├── _Layout.cs.t4 │ │ │ │ │ ├── _Layout.vb.t4 │ │ │ │ │ ├── _ViewStart.cs.t4 │ │ │ │ │ ├── _ViewStart.vb.t4 │ │ │ │ │ ├── web.cs.t4 │ │ │ │ │ └── web.vb.t4 │ │ │ │ ├── MvcMinimalDependencyCodeGenerator │ │ │ │ │ ├── Global.asax.cs.t4 │ │ │ │ │ ├── Global.asax.vb.t4 │ │ │ │ │ ├── Global.cs.t4 │ │ │ │ │ ├── Global.vb.t4 │ │ │ │ │ ├── RouteConfig.cs.t4 │ │ │ │ │ ├── RouteConfig.vb.t4 │ │ │ │ │ ├── web.cs.t4 │ │ │ │ │ └── web.vb.t4 │ │ │ │ ├── MvcView │ │ │ │ │ ├── Create.cs.t4 │ │ │ │ │ ├── Create.vb.t4 │ │ │ │ │ ├── Delete.cs.t4 │ │ │ │ │ ├── Delete.vb.t4 │ │ │ │ │ ├── Details.cs.t4 │ │ │ │ │ ├── Details.vb.t4 │ │ │ │ │ ├── Edit.cs.t4 │ │ │ │ │ ├── Edit.vb.t4 │ │ │ │ │ ├── Empty.cs.t4 │ │ │ │ │ ├── Empty.vb.t4 │ │ │ │ │ ├── Imports.include.t4 │ │ │ │ │ ├── List.cs.t4 │ │ │ │ │ ├── List.vb.t4 │ │ │ │ │ ├── ModelMetadataFunctions.cs.include.t4 │ │ │ │ │ └── ModelMetadataFunctions.vb.include.t4 │ │ │ │ ├── MvcViewWithoutModel │ │ │ │ │ ├── Empty.cs.t4 │ │ │ │ │ ├── Empty.vb.t4 │ │ │ │ │ └── Imports.include.t4 │ │ │ │ ├── ODataControllerWithActions │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── ODataControllerWithContext │ │ │ │ │ ├── Controller.cs.t4 │ │ │ │ │ └── Controller.vb.t4 │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ └── VB.vstemplate │ │ │ │ ├── scaffolding-file-icon.pdn │ │ │ │ ├── scaffolding-file-icon.png │ │ │ │ └── update.ps1 │ │ │ └── WhitespaceModule │ │ │ │ ├── WhitespaceModule.cs │ │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ └── aspnet.ico │ │ ├── Bower │ │ │ ├── Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ ├── bower-logo.png │ │ │ └── bower.json │ │ ├── JavaScript │ │ │ ├── AngularJs │ │ │ │ ├── Component │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── component.js │ │ │ │ │ └── icon.png │ │ │ │ ├── Controller As │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── controller.js │ │ │ │ │ └── icon.png │ │ │ │ ├── Controller using $scope │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── controller.js │ │ │ │ │ └── icon.png │ │ │ │ ├── Directive │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── directive.js │ │ │ │ │ └── icon.png │ │ │ │ ├── Factory │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── factory.js │ │ │ │ │ └── icon.png │ │ │ │ ├── Filter │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── filter.js │ │ │ │ │ └── icon.png │ │ │ │ ├── Module │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── module.js │ │ │ │ ├── Provider │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── provider.js │ │ │ │ ├── Service01 │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── service.js │ │ │ │ └── Test │ │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── spec.js │ │ │ ├── CKEditor │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── plugin.js │ │ │ ├── Common │ │ │ │ ├── IIFE Module │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── iifem.js │ │ │ │ └── IIFE │ │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── iife.js │ │ │ ├── Durandal │ │ │ │ ├── Main │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── main.js │ │ │ │ ├── Service │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── service.js │ │ │ │ └── ViewModel │ │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── viewmodel.js │ │ │ ├── GruntJS │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── Gruntfile.js │ │ │ │ └── icon.png │ │ │ ├── GulpJS │ │ │ │ ├── BasicFile │ │ │ │ │ ├── Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── Gulpfile.js │ │ │ │ │ └── icon.png │ │ │ │ └── ConfigurationFile │ │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── Gulpfile.js │ │ │ │ │ └── icon.png │ │ │ ├── Jasmine │ │ │ │ ├── Jasmine Spec and HTML │ │ │ │ │ ├── Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── JasmineTestRunner.html │ │ │ │ │ ├── JasmineTestSpecs.js │ │ │ │ │ └── icon.png │ │ │ │ └── Jasmine Spec │ │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── JasmineTestSpecs.js │ │ │ │ │ └── icon.png │ │ │ ├── JsHintIgnore │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── jshintignore.txt │ │ │ ├── JsHintRc │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── jshintrc.txt │ │ │ ├── Karma │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── karma.conf.js │ │ │ ├── Knockout │ │ │ │ └── CustomBinding │ │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── binding.js │ │ │ │ │ └── icon.png │ │ │ ├── Mocha │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── template.js │ │ │ ├── NodeJS │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── package.json │ │ │ ├── QUnit │ │ │ │ ├── QUnit Spec and HTML │ │ │ │ │ ├── Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── QUnitTestRunner.html │ │ │ │ │ ├── QUnitTestSpecs.js │ │ │ │ │ └── icon.png │ │ │ │ └── QUnit Spec │ │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── QUnitTestSpecs.js │ │ │ │ │ └── icon.png │ │ │ ├── RequireJs │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── template.js │ │ │ ├── TsLint │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── tslint.json │ │ │ ├── jQuery │ │ │ │ ├── BasicJsFile │ │ │ │ │ ├── _Definitions │ │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── jQueryJSFile.js │ │ │ │ └── Plugin │ │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ │ ├── icon.png │ │ │ │ │ └── jqueryPlugin.js │ │ │ ├── jscsrc │ │ │ │ ├── .jscsrc │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ └── icon.png │ │ │ └── tinymce │ │ │ │ ├── Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── plugin.js │ │ ├── Misc │ │ │ ├── AppCacheManifest │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── site.appcache │ │ │ ├── Favicon │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── favicon.ico │ │ │ │ └── icon.ico │ │ │ ├── FirefoxOsManifest │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── app.manifest │ │ │ │ └── icon.png │ │ │ ├── HumansTxt │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── humans.txt │ │ │ │ └── icon.png │ │ │ ├── JsonSchema │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── schema.json │ │ │ ├── ReadmeMd │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.pdn │ │ │ │ ├── icon.png │ │ │ │ └── readme.md │ │ │ ├── RobotsTxt │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── robots.txt │ │ │ └── WebVTT │ │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── subtitles.vtt │ │ ├── Mvc │ │ │ └── NinjectControllerFactory │ │ │ │ ├── NinjectControllerFactory.cs │ │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ │ └── aspnet.ico │ │ ├── Nancy │ │ │ ├── NancyBootstrapper │ │ │ │ ├── _Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── bootstrapper.cs │ │ │ │ └── icon.png │ │ │ └── NancyModule │ │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── module.cs │ │ ├── SignalR │ │ │ └── BasicHubAndPage │ │ │ │ ├── HitCounterHub.cs │ │ │ │ ├── HitCounterHubClient.html │ │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ │ └── aspnet.ico │ │ ├── TypeScript │ │ │ └── Angular2 │ │ │ │ ├── Bootstrap │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── bootstrap.ts │ │ │ │ └── icon.png │ │ │ │ ├── Component │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── component.ts │ │ │ │ └── icon.png │ │ │ │ ├── Pipe │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── pipe.ts │ │ │ │ ├── Root │ │ │ │ ├── Definitions │ │ │ │ │ ├── CSharp.vstemplate │ │ │ │ │ ├── VB.vstemplate │ │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── root.ts │ │ │ │ └── Service │ │ │ │ ├── Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── service.ts │ │ ├── WebEssentials │ │ │ └── WEIgnore │ │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ ├── VB.vstemplate │ │ │ │ ├── Web.VB.vstemplate │ │ │ │ └── Web.csharp.vstemplate │ │ │ │ ├── icon.png │ │ │ │ └── weignore.txt │ │ └── _Samples │ │ │ ├── _Sample FSharp │ │ │ ├── Sayed.fs │ │ │ ├── _Definitions │ │ │ │ └── fsharp.vstemplate │ │ │ ├── fsharp-logo-32x32.png │ │ │ └── icon.png │ │ │ └── _Sample Multi Files │ │ │ ├── ISearchController.cs │ │ │ ├── InputModels │ │ │ └── Search │ │ │ │ └── readme.txt │ │ │ ├── SearchController.cs │ │ │ ├── ViewModels │ │ │ └── readme.txt │ │ │ ├── Views │ │ │ └── readme.txt │ │ │ ├── WorkerService │ │ │ ├── ISearchWorkerService.cs │ │ │ └── SearchWorkerService.cs │ │ │ ├── _Definitions │ │ │ └── CSharp.vstemplate │ │ │ └── icon.png │ ├── Windows Phone │ │ ├── CaliburnMicroBootstrapper │ │ │ ├── Bootstrapper.cs │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ └── caliburn-icon.png │ │ └── readme.md │ └── Windows Store │ │ └── readme.md ├── PackageConstants.cs ├── ProjectTemplates │ ├── Cloud │ │ └── readme.md │ ├── Extensibility │ │ ├── AspNetScaffolding │ │ │ └── Basic │ │ │ │ ├── CustomScaffolder │ │ │ │ ├── CustomCodeGenerator.cs │ │ │ │ ├── CustomCodeGeneratorFactory.cs │ │ │ │ ├── CustomScaffolder.csproj │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Resources │ │ │ │ │ └── _TemplateIconSample.ico │ │ │ │ ├── Templates │ │ │ │ │ └── CustomCodeGenerator │ │ │ │ │ │ └── CustomTextTemplate.cs.t4 │ │ │ │ ├── UI │ │ │ │ │ ├── CustomViewModel.cs │ │ │ │ │ ├── ModelType.cs │ │ │ │ │ ├── SelectModelWindow.xaml │ │ │ │ │ └── SelectModelWindow.xaml.cs │ │ │ │ └── _preprocess.xml │ │ │ │ ├── CustomScaffolderExtension │ │ │ │ ├── CustomScaffolderExtension.csproj │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── _preprocess.xml │ │ │ │ └── source.extension.vsixmanifest │ │ │ │ ├── CustomScaffolderSolution.sln │ │ │ │ └── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── templateinfo.xml │ │ ├── BrowserLinkExtension │ │ │ ├── BrowserLinkExtensionTemplate.csproj │ │ │ ├── BrowserLinkExtensionTemplate.vsct │ │ │ ├── BrowserLinkExtensionTemplatePackage.cs │ │ │ ├── Guids.cs │ │ │ ├── Intellisense │ │ │ │ ├── browserlink.intellisense.js │ │ │ │ ├── jquery-1.8.2.intellisense.js │ │ │ │ └── jquery-1.8.2.js │ │ │ ├── MyExtension.cs │ │ │ ├── PkgCmdID.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── Images.png │ │ │ │ └── Package.ico │ │ │ ├── Scripts │ │ │ │ └── MyExtension.js │ │ │ ├── VSPackage.resx │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── _source.extension.vsixmanifest │ │ │ └── logo.png │ │ ├── BrowserLinkExtensionSimple │ │ │ ├── BrowserLinkExtensionTemplate.csproj │ │ │ ├── Intellisense │ │ │ │ ├── browserlink.intellisense.js │ │ │ │ ├── jquery-1.8.2.intellisense.js │ │ │ │ └── jquery-1.8.2.js │ │ │ ├── MyExtension.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ │ └── MyExtension.js │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── _source.extension.vsixmanifest │ │ │ └── logo.png │ │ └── SnippetProject │ │ │ ├── MySnippets.csproj │ │ │ ├── README.txt │ │ │ ├── Snippets │ │ │ └── CSharp │ │ │ │ └── MySnippets │ │ │ │ ├── Dispose.Snippet │ │ │ │ └── WCFUsing.Snippet │ │ │ ├── _Definitions │ │ │ └── CSharp.vstemplate │ │ │ ├── _source.extension.vsixmanifest │ │ │ ├── logo.png │ │ │ └── registry.pkgdef │ ├── Web │ │ ├── AngularJSWebApiEmpty │ │ │ ├── AngularJSWebApiEmpty.csproj │ │ │ ├── App │ │ │ │ └── app.js │ │ │ ├── App_Start │ │ │ │ └── WebApiConfig.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ │ ├── angular-animate.js │ │ │ │ ├── angular-animate.min.js │ │ │ │ ├── angular-animate.min.js.map │ │ │ │ ├── angular-mocks.js │ │ │ │ ├── angular-route.js │ │ │ │ ├── angular-route.min.js │ │ │ │ ├── angular-route.min.js.map │ │ │ │ ├── angular.js │ │ │ │ ├── angular.min.js │ │ │ │ └── angular.min.js.map │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── _Definitions │ │ │ │ └── _project.vstemplate.xml │ │ │ ├── _preprocess.xml │ │ │ ├── index.html │ │ │ ├── packages.config │ │ │ └── template-icon.png │ │ ├── Chrome Extension │ │ │ ├── ChromeExtensionProjectTemplate.csproj │ │ │ ├── DebugSettings.template.xml │ │ │ ├── Properties │ │ │ │ └── build │ │ │ │ │ ├── lib │ │ │ │ │ ├── Ionic.Zip.DLL │ │ │ │ │ └── MSBuild.ExtensionPack.dll │ │ │ │ │ └── ligershark.chrome.targets │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── __TemplateIcon.png │ │ │ ├── app │ │ │ │ ├── img │ │ │ │ │ └── icon.png │ │ │ │ ├── manifest.json │ │ │ │ ├── popup.html │ │ │ │ └── popup.js │ │ │ ├── index.htm │ │ │ ├── screenshots │ │ │ │ ├── readme.txt │ │ │ │ └── screenshot.png │ │ │ └── scripts │ │ │ │ ├── _references.js │ │ │ │ └── chrome-api-vsdoc.js │ │ ├── Chrome Theme │ │ │ ├── ChromeTheme.csproj │ │ │ ├── DebugSettings.template.xml │ │ │ ├── Properties │ │ │ │ └── build │ │ │ │ │ ├── lib │ │ │ │ │ ├── Ionic.Zip.DLL │ │ │ │ │ └── MSBuild.ExtensionPack.dll │ │ │ │ │ └── ligershark.chrome.targets │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── __PreviewImage.png │ │ │ ├── __TemplateIcon.png │ │ │ └── app │ │ │ │ ├── images │ │ │ │ ├── theme_frame.png │ │ │ │ ├── theme_ntp_background.png │ │ │ │ ├── theme_tab_background.png │ │ │ │ └── theme_toolbar.png │ │ │ │ └── manifest.json │ │ ├── Chrome Web Store App │ │ │ ├── ChromeApp.csproj │ │ │ ├── ChromeApp.png │ │ │ ├── Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── Properties │ │ │ │ └── build │ │ │ │ │ ├── lib │ │ │ │ │ ├── Ionic.Zip.DLL │ │ │ │ │ └── MSBuild.ExtensionPack.dll │ │ │ │ │ └── ligershark.chrome.targets │ │ │ ├── __PreviewImage.png │ │ │ ├── __TemplateIcon.png │ │ │ └── manifest.json │ │ ├── Durandal451 │ │ │ ├── App │ │ │ │ ├── global │ │ │ │ │ └── session.js │ │ │ │ ├── main-built.js │ │ │ │ ├── main.js │ │ │ │ ├── services │ │ │ │ │ ├── logger.js │ │ │ │ │ └── security.js │ │ │ │ ├── viewmodels │ │ │ │ │ ├── flickr.js │ │ │ │ │ ├── login.js │ │ │ │ │ ├── manage.js │ │ │ │ │ ├── register.js │ │ │ │ │ ├── registerExternal.js │ │ │ │ │ ├── shell.js │ │ │ │ │ ├── start.js │ │ │ │ │ └── welcome.js │ │ │ │ └── views │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── flickr.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── manage.html │ │ │ │ │ ├── register.html │ │ │ │ │ ├── registerExternal.html │ │ │ │ │ ├── shell.html │ │ │ │ │ ├── start.html │ │ │ │ │ └── welcome.html │ │ │ ├── App_Data │ │ │ │ ├── Durandal451.mdf │ │ │ │ └── Durandal451_log.ldf │ │ │ ├── App_Start │ │ │ │ ├── BundleConfig.cs │ │ │ │ ├── DurandalBundleConfig.cs │ │ │ │ ├── DurandalConfig.cs │ │ │ │ ├── FilterConfig.cs │ │ │ │ ├── RouteConfig.cs │ │ │ │ ├── Startup.Auth.cs │ │ │ │ └── WebApiConfig.cs │ │ │ ├── Areas │ │ │ │ └── HelpPage │ │ │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ │ │ ├── App_Start │ │ │ │ │ └── HelpPageConfig.cs │ │ │ │ │ ├── Controllers │ │ │ │ │ └── HelpController.cs │ │ │ │ │ ├── HelpPage.css │ │ │ │ │ ├── HelpPageAreaRegistration.cs │ │ │ │ │ ├── HelpPageConfigurationExtensions.cs │ │ │ │ │ ├── Models │ │ │ │ │ └── HelpPageApiModel.cs │ │ │ │ │ ├── SampleGeneration │ │ │ │ │ ├── HelpPageSampleGenerator.cs │ │ │ │ │ ├── HelpPageSampleKey.cs │ │ │ │ │ ├── ImageSample.cs │ │ │ │ │ ├── InvalidSample.cs │ │ │ │ │ ├── ObjectGenerator.cs │ │ │ │ │ ├── SampleDirection.cs │ │ │ │ │ └── TextSample.cs │ │ │ │ │ ├── Views │ │ │ │ │ ├── Help │ │ │ │ │ │ ├── Api.cshtml │ │ │ │ │ │ ├── DisplayTemplates │ │ │ │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ │ │ │ ├── ImageSample.cshtml │ │ │ │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ │ │ │ ├── Parameters.cshtml │ │ │ │ │ │ │ ├── Samples.cshtml │ │ │ │ │ │ │ └── TextSample.cshtml │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── Shared │ │ │ │ │ │ └── _Layout.cshtml │ │ │ │ │ ├── Web.config │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ └── XmlDocumentationProvider.cs │ │ │ ├── Content │ │ │ │ ├── Site.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── durandal.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── ie10mobile.css │ │ │ │ ├── images │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── iconOriginal.png │ │ │ │ │ ├── ios-startup-image-landscape.png │ │ │ │ │ └── ios-startup-image-portrait.png │ │ │ │ ├── starterkit.css │ │ │ │ ├── toastr.css │ │ │ │ ├── toastr.less │ │ │ │ └── toastr.min.css │ │ │ ├── Controllers │ │ │ │ ├── AccountController.cs │ │ │ │ └── DurandalController.cs │ │ │ ├── Durandal451.csproj │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Models │ │ │ │ ├── AccountBindingModels.cs │ │ │ │ ├── AccountViewModels.cs │ │ │ │ └── IdentityDbInitializer.cs │ │ │ ├── Project_Readme.html │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Providers │ │ │ │ └── ApplicationOAuthProvider.cs │ │ │ ├── Results │ │ │ │ └── ChallengeResult.cs │ │ │ ├── Scripts │ │ │ │ ├── _references.js │ │ │ │ ├── almond-custom.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── durandal │ │ │ │ │ ├── activator.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── binder.js │ │ │ │ │ ├── composition.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ ├── history.js │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ ├── observable.js │ │ │ │ │ │ ├── router.js │ │ │ │ │ │ ├── serializer.js │ │ │ │ │ │ └── widget.js │ │ │ │ │ ├── system.js │ │ │ │ │ ├── transitions │ │ │ │ │ │ └── entrance.js │ │ │ │ │ ├── viewEngine.js │ │ │ │ │ └── viewLocator.js │ │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ ├── jquery.utilities.js │ │ │ │ ├── knockout-2.3.0.debug.js │ │ │ │ ├── knockout-2.3.0.js │ │ │ │ ├── knockout.validation.debug.js │ │ │ │ ├── knockout.validation.js │ │ │ │ ├── modernizr-2.6.2.js │ │ │ │ ├── r.js │ │ │ │ ├── require.js │ │ │ │ ├── respond.js │ │ │ │ ├── respond.min.js │ │ │ │ ├── text.js │ │ │ │ ├── toastr.js │ │ │ │ ├── toastr.min.js │ │ │ │ └── toastr.min.js.map │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ │ ├── Durandal │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── _splash.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── Web.config.install.Debug.xdt │ │ │ ├── Web.config.install.Release.xdt │ │ │ ├── Web.config.install.xdt │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── __TemplateIcon.png │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── packages.config │ │ │ └── weyland-config.js │ │ ├── HTML5 Boiler Platev4.3 │ │ │ ├── .htaccess │ │ │ ├── 404.html │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── HTML5 Boiler Plate v4.3.csproj │ │ │ ├── LICENSE.md │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── __PreviewImage.png │ │ │ ├── __TemplateIcon.png │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── crossdomain.xml │ │ │ ├── css │ │ │ │ ├── main.css │ │ │ │ └── normalize.css │ │ │ ├── doc │ │ │ │ ├── TOC.md │ │ │ │ ├── crossdomain.md │ │ │ │ ├── css.md │ │ │ │ ├── extend.md │ │ │ │ ├── faq.md │ │ │ │ ├── html.md │ │ │ │ ├── js.md │ │ │ │ ├── misc.md │ │ │ │ └── usage.md │ │ │ ├── favicon.ico │ │ │ ├── humans.txt │ │ │ ├── img │ │ │ │ └── .gitignore │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── main.js │ │ │ │ ├── plugins.js │ │ │ │ └── vendor │ │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ │ └── modernizr-2.6.2.min.js │ │ │ └── robots.txt │ │ ├── _Sample Multi Project │ │ │ ├── Shared │ │ │ │ ├── Contact.cs │ │ │ │ ├── My.Cool.Company.SharedLibrary.csproj │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── __TemplateIcon.ico │ │ │ │ └── _preprocess.xml │ │ │ ├── Web │ │ │ │ ├── Default.aspx │ │ │ │ ├── Default.aspx.cs │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ ├── My.Cool.Company.WebFrontEnd.csproj │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.Release.config │ │ │ │ ├── Web.config │ │ │ │ ├── __PreviewImage.png │ │ │ │ ├── __TemplateIcon.png │ │ │ │ └── _preprocess.xml │ │ │ ├── _Definitions │ │ │ │ ├── CSharp.vstemplate │ │ │ │ └── templateinfo.xml │ │ │ └── logo.png │ │ ├── _SampleFSharpTemplate │ │ │ ├── App.config │ │ │ ├── Program.fs │ │ │ ├── SayedFSharpSample.fsproj │ │ │ ├── _Definitions │ │ │ │ └── fsharp.vstemplate │ │ │ ├── fsharp-logo-256x256.png │ │ │ ├── fsharp-logo-32x32.pdn │ │ │ ├── fsharp-logo-32x32.png │ │ │ └── icon.png │ │ ├── _SampleNewWeb │ │ │ ├── App_Start │ │ │ │ ├── BundleConfig.cs │ │ │ │ ├── FilterConfig.cs │ │ │ │ ├── RouteConfig.cs │ │ │ │ └── Startup.Auth.cs │ │ │ ├── Content │ │ │ │ ├── Site.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── Controllers │ │ │ │ ├── AccountController.cs │ │ │ │ └── HomeController.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Models │ │ │ │ ├── AccountViewModels.cs │ │ │ │ └── IdentityModels.cs │ │ │ ├── Project_Readme.html │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ │ ├── _references.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ ├── jquery.validate-vsdoc.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ │ ├── modernizr-2.6.2.js │ │ │ │ ├── respond.js │ │ │ │ └── respond.min.js │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ │ ├── Account │ │ │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ │ │ ├── Login.cshtml │ │ │ │ │ ├── Manage.cshtml │ │ │ │ │ ├── Register.cshtml │ │ │ │ │ ├── _ChangePasswordPartial.cshtml │ │ │ │ │ ├── _ExternalLoginsListPartial.cshtml │ │ │ │ │ ├── _RemoveAccountPartial.cshtml │ │ │ │ │ └── _SetPasswordPartial.cshtml │ │ │ │ ├── Home │ │ │ │ │ ├── About.cshtml │ │ │ │ │ ├── Contact.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _LoginPartial.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── WebApplication1.csproj │ │ │ ├── _Definitions │ │ │ │ └── _project.vstemplate.xml │ │ │ ├── _preprocess.xml │ │ │ ├── favicon.ico │ │ │ ├── file-icon.png │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── packages.config │ │ └── _SampleWeb │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SampleWeb.csproj │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── _Definitions │ │ │ └── CSharp.vstemplate │ │ │ └── __TemplateIcon.ico │ ├── Windows Phone │ │ └── readme.md │ ├── Windows Store │ │ ├── TypeScript Blank │ │ │ ├── Scripts │ │ │ │ └── typings │ │ │ │ │ ├── jquery.d.ts │ │ │ │ │ ├── lib.d.ts │ │ │ │ │ ├── winjs.d.ts │ │ │ │ │ └── winrt.d.ts │ │ │ ├── WSaTypeScript.jsproj │ │ │ ├── _Definitions │ │ │ │ └── CSharp.vstemplate │ │ │ ├── __TemplateIcon.ico │ │ │ ├── css │ │ │ │ └── default.css │ │ │ ├── default.html │ │ │ ├── images │ │ │ │ ├── logo.scale-100.png │ │ │ │ ├── smalllogo.scale-100.png │ │ │ │ ├── splashscreen.scale-100.png │ │ │ │ └── storelogo.scale-100.png │ │ │ ├── js │ │ │ │ ├── default.js │ │ │ │ └── default.ts │ │ │ └── package.appxmanifest │ │ └── readme.md │ └── Windows │ │ └── Caliburn.Micro WPF Application │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppBootstrapper.cs │ │ ├── Caliburn.Micro WPF Application.csproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ViewModels │ │ └── ShellViewModel.cs │ │ ├── Views │ │ ├── ShellView.xaml │ │ └── ShellView.xaml.cs │ │ ├── _Definitions │ │ └── CSharp.vstemplate │ │ ├── __TemplateIcon.png │ │ └── packages.config ├── Properties │ ├── AssemblyInfo.cs │ └── template-builder.props ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── Snippets │ ├── CSS │ │ └── SideWaffle │ │ │ ├── css-linear-gradient.snippet │ │ │ └── css-radial-gradient.snippet │ ├── CSharp │ │ └── SideWaffle │ │ │ ├── Dispose.Snippet │ │ │ ├── FakeItEasyACallTo.Snippet │ │ │ ├── FakeItEasyACallToMustHaveHappened.Snippet │ │ │ ├── FakeItEasyACallToMustHaveHappenedExactlyOnce.Snippet │ │ │ ├── FakeItEasyACallToMustHaveHappenedExactlyTimes.Snippet │ │ │ ├── FakeItEasyACallToMustHaveHappenedExactlyTwice.Snippet │ │ │ ├── FakeItEasyACallToMustNotHaveHappened.Snippet │ │ │ ├── FakeItEasyAFake.Snippet │ │ │ ├── FakeItEasyAFakeStrict.Snippet │ │ │ ├── NancyModuleDelete.Snippet │ │ │ ├── NancyModuleGet.Snippet │ │ │ ├── NancyModuleHead.Snippet │ │ │ ├── NancyModuleOptions.Snippet │ │ │ ├── NancyModulePatch.Snippet │ │ │ ├── NancyModulePost.Snippet │ │ │ ├── NancyModulePut.Snippet │ │ │ └── WCFUsing.Snippet │ ├── JavaScript │ │ └── SideWaffle │ │ │ ├── ng.controller.snippet │ │ │ ├── ng.directive.snippet │ │ │ ├── ng.module.snippet │ │ │ ├── ng.service.snippet │ │ │ └── ng.testSpec.snippet │ └── TypeScript │ │ └── SideWaffle │ │ ├── ng2.component.bootstrap.snippet │ │ ├── ng2.component.root.snippet │ │ ├── ng2.component.snippet │ │ ├── ng2.httpGet.snippet │ │ ├── ng2.pipe.snippet │ │ ├── ng2.routePath.snippet │ │ ├── ng2.routes.snippet │ │ ├── ng2.service.snippet │ │ └── ng2.subscribe.snippet ├── TemplatePack.csproj ├── TemplatePack.vsct ├── TemplatePackPackage.cs ├── Tooling │ ├── ActivityLogger.cs │ ├── DynamicTemplateBuilder.cs │ ├── ProjectSelector2.xaml │ ├── ProjectSelector2.xaml.cs │ ├── RemoteTemplateSettings.cs │ ├── SolutionHelper.cs │ ├── TemplateLocalInfo.cs │ ├── TemplateReferenceCreator.cs │ └── UpdateFrequency.cs ├── VSPackage.Designer.cs ├── VSPackage.resx ├── app.config ├── checkmark.png ├── feed.pkgdef ├── loading.gif ├── logo.ico ├── logo_big.png ├── logo_small.png ├── packages.config ├── resources │ ├── Images.png │ ├── Package.ico │ ├── SideWaffle-icon-16x16.png │ ├── SideWaffle-icon-24x24.png │ ├── SideWaffle-icon-32x32.png │ ├── SideWaffle-icon-48x48.png │ ├── SideWaffle-icon-64x64.png │ ├── SideWaffle.ico │ ├── SideWaffle16blue.png │ ├── appveyor-file-icon.psd │ ├── appveyor_400x400.png │ ├── file-icon-sidewaffle.pdn │ ├── file-icon.pdn │ ├── file-icon.png │ ├── powershell-file-icon.psd │ ├── sidewaffle-icon-bw.svg │ ├── sidewaffle-icon.svg │ └── vs-logo-project.png ├── source.extension.vsixmanifest ├── template-report.xml └── templatesources.json ├── add-telemtrywizard.ps1 ├── add-templateid.ps1 ├── add-templatetypeparameter.ps1 ├── appveyor.ps1 ├── appveyor.yml ├── assemblies ├── Microsoft.VisualStudio.CommandBars.dll ├── Microsoft.VisualStudio.ComponentModelHost.dll ├── Microsoft.VisualStudio.OLE.Interop.dll ├── Microsoft.VisualStudio.Shell.11.0.dll ├── Microsoft.VisualStudio.Shell.Immutable.10.0.dll ├── Microsoft.VisualStudio.Shell.Immutable.11.0.dll ├── Microsoft.VisualStudio.Shell.Interop.10.0.dll ├── Microsoft.VisualStudio.Shell.Interop.11.0.dll ├── Microsoft.VisualStudio.Shell.Interop.8.0.dll ├── Microsoft.VisualStudio.Shell.Interop.9.0.dll ├── Microsoft.VisualStudio.Shell.Interop.dll └── Microsoft.VisualStudio.TextManager.Interop.dll ├── build-main.ps1 ├── build-templates.proj ├── item-templates └── PowerShell │ ├── CmdletAdvancedFunctions │ ├── Definitions │ │ ├── CSharp.vstemplate │ │ └── vb.vstemplate │ ├── cmdlet-adv-function.ps1 │ ├── icon.png │ └── powershell-file-icon.png │ ├── CmdletAdvancedFunctionsComplete │ ├── Definitions │ │ ├── CSharp.vstemplate │ │ └── vb.vstemplate │ ├── cmdlet-adv-function-complete.ps1 │ ├── icon.png │ └── powershell-file-icon.png │ ├── DscConfigurationSimple │ ├── Definitions │ │ ├── CSharp.vstemplate │ │ └── vb.vstemplate │ ├── dsc-configuration-simple.ps1 │ ├── icon.png │ └── powershell-file-icon.png │ ├── DscResourceProvider │ ├── Definitions │ │ ├── CSharp.vstemplate │ │ └── vb.vstemplate │ ├── dsc-resource-provider.ps1 │ ├── icon.png │ └── powershell-file-icon.png │ └── EmptyPowerShellFile │ ├── Definitions │ ├── CSharp.vstemplate │ └── vb.vstemplate │ ├── empty.ps1 │ ├── icon.png │ └── powershell-file-icon.png ├── multi-project-templates.docx ├── release-notes.xml └── screenshot.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/.nuget/NuGet.exe -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2013 Sayed Hashimi and Mads Kristensen 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 4 | 5 | http://www.apache.org/licenses/LICENSE-2.0 6 | 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -------------------------------------------------------------------------------- /LigerShark.Templates/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LigerShark.Templates/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LigerShark.Templates/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace LigerShark.Templates { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /LigerShark.Templates/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /LigerShark.Templates/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /LigerShark.Templates/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Project Templates/Azure/WebJobs/WebJobsHelloWorld/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Project Templates/Azure/WebJobs/WebJobsHelloWorld/azure-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Azure/WebJobs/WebJobsHelloWorld/azure-icon-120x120.png -------------------------------------------------------------------------------- /Project Templates/Azure/WebJobs/WebJobsHelloWorld/azure-icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Azure/WebJobs/WebJobsHelloWorld/azure-icon-256x256.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHost/Bootstrapper.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.AspNetHost 4 | { 5 | public class Bootstrapper : DefaultNancyBootstrapper 6 | { 7 | // The bootstrapper enables you to reconfigure the composition of the framework, 8 | // by overriding the various methods and properties. 9 | // For more information https://github.com/NancyFx/Nancy/wiki/Bootstrapper 10 | } 11 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHost/Content/nancy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.AspNetHost/Content/nancy-logo.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHost/Modules/IndexModule.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.AspNetHost.Modules 4 | { 5 | public class IndexModule : NancyModule 6 | { 7 | public IndexModule() 8 | { 9 | Get["/"] = parameters => { 10 | return View["index"]; 11 | }; 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHost/Views/index.sshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | $safeprojectname$ 6 | 7 | 14 | 15 | 16 | 17 | Nancy logo
18 | This view was rendered using the SuperSimpleViewEngine 19 | 20 | 21 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHost/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.AspNetHost/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHost/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHostWithRazor/Bootstrapper.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.AspNetHostWithRazor 4 | { 5 | public class Bootstrapper : DefaultNancyBootstrapper 6 | { 7 | // The bootstrapper enables you to reconfigure the composition of the framework, 8 | // by overriding the various methods and properties. 9 | // For more information https://github.com/NancyFx/Nancy/wiki/Bootstrapper 10 | } 11 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHostWithRazor/Content/nancy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.AspNetHostWithRazor/Content/nancy-logo.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHostWithRazor/Modules/IndexModule.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.AspNetHostWithRazor.Modules 4 | { 5 | public class IndexModule : NancyModule 6 | { 7 | public IndexModule() 8 | { 9 | Get["/"] = parameters => 10 | { 11 | return View["index"]; 12 | }; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHostWithRazor/Views/index.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | $safeprojectname$ 6 | 7 | 14 | 15 | 16 | 17 | Nancy logo
18 | This view was rendered using the Nancy Razor view engine 19 | 20 | 21 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHostWithRazor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.AspNetHostWithRazor/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.AspNetHostWithRazor/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.Demo/Bootstrapper.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.Demo 4 | { 5 | public class Bootstrapper : DefaultNancyBootstrapper 6 | { 7 | // The bootstrapper enables you to reconfigure the composition of the framework, 8 | // by overriding the various methods and properties. 9 | // For more information https://github.com/NancyFx/Nancy/wiki/Bootstrapper 10 | } 11 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.Demo/Content/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.Demo/Content/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.Demo/Content/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.Demo/Content/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.Demo/Content/nancy-vertical-bf-tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.Demo/Content/nancy-vertical-bf-tb.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.Demo/Modules/IndexModule.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.Demo.Modules 4 | { 5 | public class IndexModule : NancyModule 6 | { 7 | public IndexModule() 8 | { 9 | Get["/"] = _ => View["index"]; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.Demo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.Demo/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.Demo/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptyAspNetHost/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.EmptyAspNetHost/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptyAspNetHost/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptyAspNetHostingWithRazor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.EmptyAspNetHostingWithRazor/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptyAspNetHostingWithRazor/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHost/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Nancy.Hosting.Self; 3 | 4 | namespace Nancy.CSharp.EmptySelfHost 5 | { 6 | class Program 7 | { 8 | static void Main(string[] args) 9 | { 10 | var uri = 11 | new Uri("http://localhost:3579"); 12 | 13 | using (var host = new NancyHost(uri)) 14 | { 15 | host.Start(); 16 | 17 | Console.WriteLine("Your application is running on " + uri); 18 | Console.WriteLine("Press any [Enter] to close the host."); 19 | Console.ReadLine(); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHost/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHost/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.EmptySelfHost/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHost/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHostWithRazor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Nancy.Hosting.Self; 3 | 4 | namespace Nancy.CSharp.EmptySelfHostWithRazor 5 | { 6 | class Program 7 | { 8 | static void Main(string[] args) 9 | { 10 | var uri = 11 | new Uri("http://localhost:3579"); 12 | 13 | using (var host = new NancyHost(uri)) 14 | { 15 | host.Start(); 16 | 17 | Console.WriteLine("Your application is running on " + uri); 18 | Console.WriteLine("Press any [Enter] to close the host."); 19 | Console.ReadLine(); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHostWithRazor/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHostWithRazor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.EmptySelfHostWithRazor/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.EmptySelfHostWithRazor/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/Bootstrapper.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.SelfHost 4 | { 5 | public class Bootstrapper : DefaultNancyBootstrapper 6 | { 7 | // The bootstrapper enables you to reconfigure the composition of the framework, 8 | // by overriding the various methods and properties. 9 | // For more information https://github.com/NancyFx/Nancy/wiki/Bootstrapper 10 | } 11 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/Content/nancy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.SelfHost/Content/nancy-logo.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/Modules/IndexModule.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.SelfHost.Modules 4 | { 5 | public class IndexModule : NancyModule 6 | { 7 | public IndexModule() 8 | { 9 | Get["/"] = parameters => { 10 | return View["index"]; 11 | }; 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Nancy.Hosting.Self; 3 | 4 | namespace Nancy.CSharp.SelfHost 5 | { 6 | class Program 7 | { 8 | static void Main(string[] args) 9 | { 10 | var uri = 11 | new Uri("http://localhost:3579"); 12 | 13 | using (var host = new NancyHost(uri)) 14 | { 15 | host.Start(); 16 | 17 | Console.WriteLine("Your application is running on " + uri); 18 | Console.WriteLine("Press any [Enter] to close the host."); 19 | Console.ReadLine(); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/Views/index.sshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | $safeprojectname$ 6 | 7 | 14 | 15 | 16 | 17 | Nancy logo
18 | This view was rendered using the SuperSimpleViewEngine 19 | 20 | 21 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.SelfHost/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHost/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHostWithRazor/Bootstrapper.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.SelfHostWithRazor 4 | { 5 | public class Bootstrapper : DefaultNancyBootstrapper 6 | { 7 | // The bootstrapper enables you to reconfigure the composition of the framework, 8 | // by overriding the various methods and properties. 9 | // For more information https://github.com/NancyFx/Nancy/wiki/Bootstrapper 10 | } 11 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHostWithRazor/Content/nancy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.SelfHostWithRazor/Content/nancy-logo.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHostWithRazor/Modules/IndexModule.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace Nancy.CSharp.SelfHostWithRazor.Modules 4 | { 5 | public class IndexModule : NancyModule 6 | { 7 | public IndexModule() 8 | { 9 | Get["/"] = parameters => 10 | { 11 | return View["index"]; 12 | }; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHostWithRazor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Nancy.Hosting.Self; 3 | 4 | namespace Nancy.CSharp.SelfHostWithRazor 5 | { 6 | class Program 7 | { 8 | static void Main(string[] args) 9 | { 10 | var uri = 11 | new Uri("http://localhost:3579"); 12 | 13 | using (var host = new NancyHost(uri)) 14 | { 15 | host.Start(); 16 | 17 | Console.WriteLine("Your application is running on " + uri); 18 | Console.WriteLine("Press any [Enter] to close the host."); 19 | Console.ReadLine(); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHostWithRazor/Views/index.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | $safeprojectname$ 6 | 7 | 14 | 15 | 16 | 17 | Nancy logo
18 | This view was rendered using the Nancy Razor view engine 19 | 20 | 21 | -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHostWithRazor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/Nancy.CSharp.SelfHostWithRazor/icon.png -------------------------------------------------------------------------------- /Project Templates/Nancy.CSharp.SelfHostWithRazor/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Account/AccountLockedOut.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/_SiteLayout.cshtml"; 3 | Page.Title = "Account Locked"; 4 | } 5 | 6 |
7 |

@Page.Title.

8 |

Your account was locked out due to too many invalid log in attempts.

9 |
10 | 11 |

12 | Don't worry, the account will automatically be unlocked in 60 seconds. 13 | Please try again after that time has passed. 14 |

-------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Set the layout page and page title 3 | Layout = "~/_SiteLayout.cshtml"; 4 | Page.Title = "Login Failure"; 5 | } 6 | 7 |
8 |

@Page.Title.

9 |

Unsuccessful login with service.

10 |
11 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Account/Logout.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | WebSecurity.RequireAuthenticatedUser(); 3 | 4 | if (IsPost) { 5 | // Verify the request was submitted by the user 6 | AntiForgery.Validate(); 7 | 8 | // Log out of the current user context 9 | WebSecurity.Logout(); 10 | 11 | // Redirect back to the return URL or homepage 12 | var returnUrl = Request.QueryString["ReturnUrl"]; 13 | Context.RedirectLocal(returnUrl); 14 | } else { 15 | Response.Redirect("~/"); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/App_Data/StarterSite.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/App_Data/StarterSite.sdf -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { 12 | position: absolute; 13 | z-index: 100; 14 | border: 1px dotted black; 15 | } 16 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | body .ui-tooltip { 18 | border-width: 2px; 19 | } 20 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.3 - 2013-05-03 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-autocomplete{position:absolute;top:0;left:0;cursor:default} -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.3 - 2013-05-03 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none} -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.3 - 2013-05-03 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000} -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.3 - 2013-05-03 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/accent.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/bullet.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/heroAccent.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList0.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList1.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList2.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList3.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList4.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList5.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList6.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList7.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList8.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/Images/orderedList9.png -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/Scripts/_references.js: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | /// 5 | /// 6 | /// 7 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/favicon.ico -------------------------------------------------------------------------------- /Project Templates/RazorV3WebApplication/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/RazorV3WebApplication/sw-file-icon.png -------------------------------------------------------------------------------- /Project Templates/Windows Desktop/ConsoleApplicationAsync/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Project Templates/Windows Desktop/ConsoleApplicationAsync/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ConsoleApplicationAsync 8 | { 9 | class Program 10 | { 11 | static void Main(string[] args) 12 | { 13 | Task t = MainAsync(args); 14 | t.Wait(); 15 | } 16 | 17 | private async static Task MainAsync(string[] args) 18 | { 19 | //Add your async code here 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Project Templates/Windows Desktop/ConsoleApplicationAsync/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project Templates/_SampleProjRef/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Project Templates/_SampleProjRef/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace _SampleProjRef { 8 | class Program { 9 | static void Main(string[] args) { 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Project Templates/_SampleProjRef/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Project Templates/_SampleProjRef/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/_SampleProjRef/sw-file-icon.png -------------------------------------------------------------------------------- /Project Templates/html5up/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project Templates/html5up/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project Templates/html5up/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/html5up/sw-file-icon.png -------------------------------------------------------------------------------- /Project Templates/xUnitTestProject/Class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Xunit; 6 | 7 | namespace UnitTestProject 8 | { 9 | // This project can output the Class library as a NuGet Package. 10 | // To enable this option, right-click on the project and select the Properties menu item. In the Build tab select "Produce outputs on build". 11 | public class Class1 12 | { 13 | 14 | [Fact] 15 | public void UniTest1() 16 | { 17 | Assert.True(true); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Project Templates/xUnitTestProject/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project Templates/xUnitTestProject/logo-512-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/xUnitTestProject/logo-512-transparent.png -------------------------------------------------------------------------------- /Project Templates/xUnitTestProject/logo-64-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/xUnitTestProject/logo-64-transparent.png -------------------------------------------------------------------------------- /Project Templates/xUnitTestProject/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/Project Templates/xUnitTestProject/sw-file-icon.png -------------------------------------------------------------------------------- /SideWaffle.Common/DownloadZipWindow.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /SideWaffle.Common/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /SideWaffle.Common/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TemplatePack/ImageCompressor.Job.exe.csv: -------------------------------------------------------------------------------- 1 | 7/13/2014 9:00:42 PM, TemplatePack/logo_small.png, 6411, 6411 2 | adHelper/azure-icon.png, 1109, 1109 3 | 4 | 09, 309 5 | 6 | 7 | 1727 8 | 7 9 | 147 10 | 7 11 | 12 | 13 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/AppVeyor/Empty/appveyor-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/AppVeyor/Empty/appveyor-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/AppVeyor/Empty/appveyor.yml: -------------------------------------------------------------------------------- 1 | # - Minimal appveyor.yml file is an empty file. All sections are optional. 2 | # - Indent each level of configuration with 2 spaces. Do not use tabs! 3 | # - Full reference for appveyor.yml can be found at http://www.appveyor.com/docs/appveyor-yml 4 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/AppVeyor/Full/appveyor-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/AppVeyor/Full/appveyor-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Azure/BlobUploadHelper/azure-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Azure/BlobUploadHelper/azure-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Azure/CloudServicePlugin/azure-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Azure/CloudServicePlugin/azure-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Azure/TableStorageEntity/TableStorageEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table.DataServices; 2 | using System; 3 | 4 | namespace $rootnamespace$ 5 | { 6 | public class $safeitemname$ : TableServiceEntity 7 | { 8 | public $safeitemname$() 9 | { 10 | this.RowKey = Guid.NewGuid().ToString(); 11 | this.PartitionKey = "default"; 12 | } 13 | 14 | public string PropertyA { get; set; } 15 | public DateTime PropertyB { get; set; } 16 | public int PropertyC { get; set; } 17 | } 18 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Azure/TableStorageEntity/azure-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Azure/TableStorageEntity/azure-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicProjFile/build.proj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | $(BuildDependsOn); 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicProjFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicProjFile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicPropsFile/custom.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicPropsFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicPropsFile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicTargetsFile/custom.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicTargetsFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Build and NuGet/MSBuild/BasicTargetsFile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/MSBuild/NuGetRestoreProjFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Build and NuGet/MSBuild/NuGetRestoreProjFile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/NuGet/Advanced .nuspec file/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Build and NuGet/NuGet/Advanced .nuspec file/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Build and NuGet/NuGet/Basic .nuspec file/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Build and NuGet/NuGet/Basic .nuspec file/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/BrowserLink/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/BrowserLink/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/CodeSnippet/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/CodeSnippet/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/Editor Drop Handler/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/Editor Drop Handler/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/HtmlSmartTag/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/HtmlSmartTag/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/HtmlValidator/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/HtmlValidator/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/JsonSchemaSelector/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/JsonSchemaSelector/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/Package Definition/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/Package Definition/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/Package Definition/project.pkgdef: -------------------------------------------------------------------------------- 1 | [$RootKey$\ExtensionManager\Repositories\{549d04c2-adc0-490f-8587-9cc268ca81d5}] 2 | @="http://sidewaffle.com/feed" 3 | "Priority"=dword:00000064 4 | "Protocol"="Atom Feed" 5 | "DisplayName"="SideWaffle" -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SW-ProjectVSTemplateFile/_preprocess-template.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SW-ProjectVSTemplateFile/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/SideWaffle/SW-ProjectVSTemplateFile/sw-file-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-DefinitionFiles/VB.vstemplat-: -------------------------------------------------------------------------------- 1 | 2 | 3 | VisualBasic 4 | 5 | readme.txt 6 | Basic name here 7 | Long description here 8 | icon.png 9 | 1 10 | 11 | 12 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-DefinitionFiles/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-DefinitionFiles/file-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-DefinitionFiles/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-DefinitionFiles/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-DefinitionFiles/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | In order to enable your template for each category you'll need to do two things: 3 | 1. Rename the file(s) under Definitions from *.vstemplat- to *.vstemplate 4 | 2. Update the content in the relevant *.vstemplate files 5 | 6 | 7 | You should also consider replacing the icon.png with one of your own. 8 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-ItemTemplate-Basic/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-ItemTemplate-Basic/file-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-ItemTemplate-Basic/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-ItemTemplate-Basic/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-ItemTemplate-Basic/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | In order to enable your template for each category you'll need to do two things: 3 | 1. Rename the file(s) under Definitions from *.vstemplat- to *.vstemplate 4 | 2. Update the content in the relevant *.vstemplate files 5 | 6 | 7 | You should also consider replacing the icon.png with one of your own. 8 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-PreprocessXml/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-PreprocessXml/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/SideWaffle/SideWaffle-PreprocessXml/file-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/VS Command Table/Guids.cs: -------------------------------------------------------------------------------- 1 | // Guids.cs 2 | // MUST match guids.h 3 | using System; 4 | 5 | namespace $rootnamespace$ 6 | { 7 | static class GuidList 8 | { 9 | public const string guid$rootnamespace$PkgString = "$guid1$"; 10 | public const string guid$rootnamespace$CmdSetString = "$guid2$"; 11 | 12 | public static readonly Guid guid$rootnamespace$CmdSet = new Guid(guid$rootnamespace$CmdSetString); 13 | }; 14 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/VS Command Table/PkgCmdID.cs: -------------------------------------------------------------------------------- 1 | // PkgCmdID.cs 2 | // MUST match PkgCmdID.h 3 | using System; 4 | 5 | namespace $rootnamespace$ 6 | { 7 | static class PkgCmdIDList 8 | { 9 | public const uint cmdidMyCommand = 0x100; 10 | }; 11 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Extensibility/VS Command Table/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Extensibility/VS Command Table/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/LightSwitch/WebAPI2EmptyController/EmptyController.cs: -------------------------------------------------------------------------------- 1 | namespace $rootnamespace$ 2 | { 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Net; 7 | using System.Net.Http; 8 | using System.Web.Http; 9 | using System.Collections; 10 | using Microsoft.LightSwitch; 11 | 12 | public class $safeitemname$ : ApiController 13 | { 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/LightSwitch/WebAPI2EmptyController/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="$rootnamespace$.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/LightSwitch/WebAPI2EmptyController/Global.asax.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace $rootnamespace$ 3 | { 4 | using System.Web.Routing; 5 | using System.Web.Http; 6 | 7 | public class WebApiApplication : System.Web.HttpApplication 8 | { 9 | protected void Application_Start() 10 | { 11 | RouteTable.Routes.MapHttpRoute( 12 | name: "DefaultApi", 13 | routeTemplate: "api/{controller}/{id}", 14 | defaults: new { id = RouteParameter.Optional } 15 | ); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/LightSwitch/WebAPI2EmptyController/aspnet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/LightSwitch/WebAPI2EmptyController/aspnet.ico -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Misc/Dockerfile/Dockerfile: -------------------------------------------------------------------------------- 1 | # 2 | # For information about the Dockerfile format see http://docs.docker.com/reference/builder/ 3 | # 4 | # Example taken from http://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx 5 | # 6 | FROM microsoft/aspnet 7 | 8 | COPY . /app 9 | WORKDIR /app 10 | RUN ["kpm", "restore"] 11 | 12 | EXPOSE 5004 13 | ENTRYPOINT ["k", "kestrel"] 14 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Misc/Dockerfile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Misc/Dockerfile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Misc/ReadmeMd/icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Misc/ReadmeMd/icon.pdn -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Misc/ReadmeMd/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Misc/ReadmeMd/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Misc/ReadmeMd/readme.md: -------------------------------------------------------------------------------- 1 | # Readme.md 2 | 3 | 4 | To learn more about the markdown syntax, refer to these links: 5 | 6 | - [Markdown Syntax Guide](http://daringfireball.net/projects/markdown/syntax) 7 | - [Markdown Basics](http://daringfireball.net/projects/markdown/basics) 8 | - [GitHub Flavored Markdown](http://github.github.com/github-flavored-markdown/) 9 | - [markdown at wikipedia](https://secure.wikimedia.org/wikipedia/en/wiki/Markdown) -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Misc/Svg/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Misc/Svg/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Misc/Svg/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Test/NUnitFixture/NUnitFixture.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using NUnit.Framework; 7 | 8 | namespace $rootnamespace$ 9 | { 10 | [TestFixture] 11 | public class $safeitemname$ 12 | { 13 | [SetUp] 14 | public void Setup() 15 | { 16 | 17 | } 18 | 19 | [Test] 20 | public void Test() 21 | { 22 | throw new NotImplementedException(); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Test/NUnitFixture/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Test/NUnitFixture/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Test/RunSettings/STAR10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Test/RunSettings/STAR10.ico -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Controller using $scope/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Controller using $scope/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Controller/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Controller/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Directive/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Directive/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Factory/factory.ts: -------------------------------------------------------------------------------- 1 | // Install the angularjs.TypeScript.DefinitelyTyped NuGet package 2 | module App { 3 | "use strict"; 4 | 5 | interface I$safeitemname$ { 6 | getData: () => string; 7 | } 8 | 9 | $safeitemname$.$inject = ["$http"]; 10 | 11 | function $safeitemname$($http: angular.IHttpService): I$safeitemname$ { 12 | var service: I$safeitemname$ = { 13 | getData: getData 14 | }; 15 | 16 | return service; 17 | 18 | function getData() { 19 | return ""; 20 | } 21 | } 22 | 23 | 24 | angular.module("app").factory("$safeitemname$", $safeitemname$); 25 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Factory/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Factory/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Module/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Module/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Module/module.ts: -------------------------------------------------------------------------------- 1 | // Install the angularjs.TypeScript.DefinitelyTyped NuGet package 2 | 3 | module App { 4 | "use strict"; 5 | 6 | // Create the module and define its dependencies. 7 | angular.module("$safeitemname$", [ 8 | // Angular modules 9 | "ngAnimate", // animations 10 | "ngRoute" // routing 11 | 12 | // Custom modules 13 | 14 | // 3rd Party Modules 15 | ]); 16 | } 17 | 18 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Service/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Service/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/AngularJs/TypeScript Service/service.ts: -------------------------------------------------------------------------------- 1 | // Install the angularjs.TypeScript.DefinitelyTyped NuGet package 2 | module App { 3 | "use strict"; 4 | 5 | interface I$safeitemname$ { 6 | getData: () => string; 7 | } 8 | 9 | class $safeitemname$ implements I$safeitemname$ { 10 | static $inject: string[] = ["$http"]; 11 | 12 | constructor(private $http: angular.IHttpService) { 13 | } 14 | 15 | getData() { 16 | return ""; 17 | } 18 | } 19 | 20 | angular.module("app").service("$safeitemname$", $safeitemname$); 21 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/TypeScript/TS watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/TypeScript/TS watermark.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/WPF/readme.md: -------------------------------------------------------------------------------- 1 | Be the first to add a template in this folder -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/ApiControllerEmpty/Controller.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="C#" HostSpecific="True" #> 2 | <#@ output extension="cs" #> 3 | <#@ parameter type="System.String" name="ControllerName" #> 4 | <#@ parameter type="System.String" name="Namespace" #> 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Linq; 8 | using System.Net; 9 | using System.Net.Http; 10 | using System.Web.Http; 11 | 12 | namespace <#= Namespace #> 13 | { 14 | public class <#= ControllerName #> : ApiController 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/ApiControllerEmpty/Controller.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="VB" HostSpecific="True" #> 2 | <#@ output extension="vb" #> 3 | <#@ parameter type="System.String" name="ControllerName" #> 4 | <#@ parameter type="System.String" name="Namespace" #> 5 | Imports System.Net 6 | Imports System.Web.Http 7 | 8 | Namespace <#= Namespace #> 9 | Public Class <#= ControllerName #> 10 | Inherits ApiController 11 | End Class 12 | End Namespace -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/ApiDependencyCodeGenerator/Global.asax.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="VB" HostSpecific="True" #> 2 | <#@ output extension="vb" #> 3 | <#@ parameter type="System.String" name="WebApiConfig" #> 4 | Imports System 5 | Imports System.Collections.Generic 6 | Imports System.Linq 7 | Imports System.Web 8 | Imports System.Web.Http 9 | Imports System.Web.Routing 10 | 11 | Public Class WebApiApplication 12 | Inherits System.Web.HttpApplication 13 | 14 | Sub Application_Start() 15 | GlobalConfiguration.Configure(AddressOf <#= WebApiConfig #>.Register) 16 | End Sub 17 | End Class -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/ApiDependencyCodeGenerator/Global.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="C#" HostSpecific="True" #> 2 | <#@ output extension="asax" #> 3 | <#@ parameter type="System.String" name="Namespace" #> 4 | <%@ Application Codebehind="Global.asax.cs" Inherits="<#= Namespace #>.WebApiApplication" Language="C#" %> 5 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/ApiDependencyCodeGenerator/Global.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="VB" HostSpecific="True" #> 2 | <#@ output extension="asax" #> 3 | <#@ parameter type="System.String" name="Namespace" #> 4 | <%@ Application Codebehind="Global.asax.vb" Inherits="<#= Namespace #>.WebApiApplication" Language="VB" %> -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | @{ 3 | Layout = null; 4 | } 5 | 6 | 7 | 8 | 9 | 10 | Error 11 | 12 | 13 |
14 |

Error.

15 |

An error occurred while processing your request.

16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/Error.vbhtml: -------------------------------------------------------------------------------- 1 | @ModelType System.Web.Mvc.HandleErrorInfo 2 | 3 | @Code 4 | Layout = Nothing 5 | End Code 6 | 7 | 8 | 9 | 10 | 11 | Error 12 | 13 | 14 |
15 |

Error.

16 |

An error occurred while processing your request.

17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/FilterConfig.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="C#" HostSpecific="True" #> 2 | <#@ output extension="cs" #> 3 | <#@ parameter type="System.String" name="Namespace" #> 4 | <#@ parameter type="System.String" name="FilterConfig" #> 5 | using System.Web; 6 | using System.Web.Mvc; 7 | 8 | namespace <#= Namespace #> 9 | { 10 | public class <#= FilterConfig #> 11 | { 12 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 13 | { 14 | filters.Add(new HandleErrorAttribute()); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/FilterConfig.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="VB" HostSpecific="True" #> 2 | <#@ output extension="vb" #> 3 | <#@ parameter type="System.String" name="FilterConfig" #> 4 | Imports System.Web 5 | Imports System.Web.Mvc 6 | 7 | Public Module <#= FilterConfig #> 8 | Public Sub RegisterGlobalFilters(ByVal filters As GlobalFilterCollection) 9 | filters.Add(New HandleErrorAttribute()) 10 | End Sub 11 | End Module -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/Global.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ include file="..\MvcMinimalDependencyCodeGenerator\Global.cs.t4" #> -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/Global.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ include file="..\MvcMinimalDependencyCodeGenerator\Global.vb.t4" #> -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/RouteConfig.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ include file="..\MvcMinimalDependencyCodeGenerator\RouteConfig.cs.t4" #> -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/RouteConfig.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ include file="..\MvcMinimalDependencyCodeGenerator\RouteConfig.vb.t4" #> -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/_ViewStart.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="C#" HostSpecific="True" #> 2 | <#@ output extension="cshtml" #> 3 | <#@ parameter type="System.String" name="AreaName" #> 4 | @{ 5 | Layout = "<#= String.IsNullOrEmpty(AreaName) ? "~/Views/Shared/_Layout.cshtml" : "~/Areas/" + AreaName + "/Views/Shared/_Layout.cshtml" #>"; 6 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcFullDependencyCodeGenerator/_ViewStart.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="VB" HostSpecific="True" #> 2 | <#@ output extension="vbhtml" #> 3 | <#@ parameter type="System.String" name="AreaName" #> 4 | @Code 5 | Layout = "<#= If(String.IsNullOrEmpty(AreaName), "~/Views/Shared/_Layout.vbhtml", "~/Areas/" + AreaName + "/Views/Shared/_Layout.vbhtml") #>" 6 | End Code -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcMinimalDependencyCodeGenerator/Global.asax.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="VB" HostSpecific="True" #> 2 | <#@ output extension="vb" #> 3 | <#@ parameter type="System.String" name="RouteConfig" #> 4 | Imports System.Web.Mvc 5 | Imports System.Web.Routing 6 | 7 | Public Class MvcApplication 8 | Inherits System.Web.HttpApplication 9 | 10 | Sub Application_Start() 11 | AreaRegistration.RegisterAllAreas() 12 | <#= RouteConfig #>.RegisterRoutes(RouteTable.Routes) 13 | End Sub 14 | End Class -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcMinimalDependencyCodeGenerator/Global.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="C#" HostSpecific="True" #> 2 | <#@ output extension="asax" #> 3 | <#@ parameter type="System.String" name="Namespace" #> 4 | <%@ Application Codebehind="Global.asax.cs" Inherits="<#= Namespace #>.MvcApplication" Language="C#" %> 5 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/MvcMinimalDependencyCodeGenerator/Global.vb.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="VB" HostSpecific="True" #> 2 | <#@ output extension="asax" #> 3 | <#@ parameter type="System.String" name="Namespace" #> 4 | <%@ Application Codebehind="Global.asax.vb" Inherits="<#= Namespace #>.MvcApplication" Language="VB" %> -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/scaffolding-file-icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/scaffolding-file-icon.pdn -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/scaffolding-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/ASP.NET/Custom T4 Files/scaffolding-file-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/ASP.NET/WhitespaceModule/aspnet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/ASP.NET/WhitespaceModule/aspnet.ico -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Bower/bower-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Bower/bower-logo.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Bower/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ProjectName", 3 | "private": true, 4 | "dependencies": { 5 | } 6 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Component/component.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular 5 | .module('app') 6 | .component('$safeitemname$', { 7 | template: '

$saveitemname$

', 8 | controller: $safeItemname$Controller 9 | }); 10 | 11 | $safeitemname$Controller.$inject = ['$http']; 12 | 13 | function $safeitemname$Controller($http) { 14 | var ctrl = this; 15 | 16 | ctrl.$onInit = function(){ 17 | ctrl.title = $safeitemname$; 18 | } 19 | } 20 | })(); 21 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Component/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Component/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Controller As/controller.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular 5 | .module('app') 6 | .controller('$safeitemname$', $safeitemname$); 7 | 8 | $safeitemname$.$inject = ['$location']; 9 | 10 | function $safeitemname$($location) { 11 | /* jshint validthis:true */ 12 | var vm = this; 13 | vm.title = '$safeitemname$'; 14 | 15 | activate(); 16 | 17 | function activate() { } 18 | } 19 | })(); 20 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Controller As/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Controller As/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Controller using $scope/controller.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular 5 | .module('app') 6 | .controller('$safeitemname$', $safeitemname$); 7 | 8 | $safeitemname$.$inject = ['$scope']; 9 | 10 | function $safeitemname$($scope) { 11 | $scope.title = '$safeitemname$'; 12 | 13 | activate(); 14 | 15 | function activate() { } 16 | } 17 | })(); 18 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Controller using $scope/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Controller using $scope/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Directive/directive.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 'use strict'; 3 | 4 | angular 5 | .module('app') 6 | .directive('$safeitemname$', $safeitemname$); 7 | 8 | $safeitemname$.$inject = ['$window']; 9 | 10 | function $safeitemname$ ($window) { 11 | // Usage: 12 | // <$directiveUsage$> 13 | // Creates: 14 | // 15 | var directive = { 16 | link: link, 17 | restrict: 'EA' 18 | }; 19 | return directive; 20 | 21 | function link(scope, element, attrs) { 22 | } 23 | } 24 | 25 | })(); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Directive/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Directive/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Factory/factory.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular 5 | .module('app') 6 | .factory('$safeitemname$', $safeitemname$); 7 | 8 | $safeitemname$.$inject = ['$http']; 9 | 10 | function $safeitemname$($http) { 11 | var service = { 12 | getData: getData 13 | }; 14 | 15 | return service; 16 | 17 | function getData() { } 18 | } 19 | })(); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Factory/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Factory/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Filter/filter.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular 5 | .module('app') 6 | .filter('$safeitemname$', $safeitemname$); 7 | 8 | function $safeitemname$() { 9 | return $safeitemname$Filter; 10 | 11 | function $safeitemname$Filter(input) { 12 | return input; 13 | } 14 | } 15 | })(); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Filter/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Filter/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Module/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Module/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Module/module.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular.module('$safeitemname$', [ 5 | // Angular modules 6 | 'ngAnimate', 7 | 'ngRoute' 8 | 9 | // Custom modules 10 | 11 | // 3rd Party Modules 12 | 13 | ]); 14 | })(); 15 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Provider/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Provider/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Service01/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Service01/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Service01/service.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular 5 | .module('app') 6 | .service('$safeitemname$', $safeitemname$); 7 | 8 | $safeitemname$.$inject = ['$http']; 9 | 10 | function $safeitemname$($http) { 11 | this.getData = getData; 12 | 13 | function getData() { } 14 | } 15 | })(); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Test/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Test/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/AngularJs/Test/spec.js: -------------------------------------------------------------------------------- 1 | describe('$safeitemname$', function () { 2 | var $controller, 3 | $httpBackend, 4 | $rootScope; 5 | 6 | beforeEach(function () { 7 | module('app'); 8 | inject(function (_$controller_, _$httpBackend_, _$rootScope_) { 9 | $controller = _$controller_; 10 | $httpBackend = _$httpBackend_; 11 | $rootScope = _$rootScope_; 12 | }); 13 | }); 14 | 15 | it('should exist', function () { 16 | //TODO: expectation goes here 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/CKEditor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/CKEditor/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/CKEditor/plugin.js: -------------------------------------------------------------------------------- 1 | // Register the plugin within the editor. 2 | CKEDITOR.plugins.add('$fileinputname$', { 3 | 4 | // The plugin initialization logic goes inside this method. 5 | init: function(editor) { 6 | 7 | } 8 | 9 | }); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Common/IIFE Module/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Common/IIFE Module/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Common/IIFE Module/iifem.js: -------------------------------------------------------------------------------- 1 | var $safeitemname$ = (function (module, undefined) { 2 | 3 | 'use strict'; 4 | 5 | return module; 6 | 7 | })($safeitemname$ || {}); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Common/IIFE/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Common/IIFE/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Common/IIFE/iife.js: -------------------------------------------------------------------------------- 1 | (function (undefined) { 2 | 3 | 'use strict'; 4 | 5 | })(); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Durandal/Main/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Durandal/Main/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Durandal/Service/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Durandal/Service/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Durandal/Service/service.js: -------------------------------------------------------------------------------- 1 | //TODO: Inject dependencies 2 | define(['config'], 3 | function (config) { 4 | // Internal properties and functions 5 | 6 | // Reveal the accessible members 7 | var $safeitemname$ = { 8 | //TODO: Modify for you API 9 | getPersonById: getPersonById 10 | }; 11 | return $safeitemname$; 12 | 13 | function getPersonById(id) { 14 | 15 | }; 16 | }); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Durandal/ViewModel/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Durandal/ViewModel/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/GruntJS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/GruntJS/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/GulpJS/BasicFile/Gulpfile.js: -------------------------------------------------------------------------------- 1 | /* 2 | This file in the main entry point for defining Gulp tasks and using Gulp plugins. 3 | Click here to learn more. http://go.microsoft.com/fwlink/?LinkId=518007 4 | */ 5 | 6 | var gulp = require('gulp'); 7 | 8 | gulp.task('default', function () { 9 | // place code for your default task here 10 | }); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/GulpJS/BasicFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/GulpJS/BasicFile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/GulpJS/ConfigurationFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/GulpJS/ConfigurationFile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Jasmine/Jasmine Spec and HTML/JasmineTestRunner.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Jasmine Tests 5 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Jasmine/Jasmine Spec and HTML/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Jasmine/Jasmine Spec and HTML/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Jasmine/Jasmine Spec/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Jasmine/Jasmine Spec/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/JsHintIgnore/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/JsHintIgnore/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/JsHintIgnore/jshintignore.txt: -------------------------------------------------------------------------------- 1 | legacy.js 2 | somelib/*.* 3 | otherlib/*.js -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/JsHintRc/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/JsHintRc/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Karma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Karma/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Knockout/CustomBinding/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Knockout/CustomBinding/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/Mocha/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/Mocha/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/NodeJS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/NodeJS/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/QUnit/QUnit Spec and HTML/QUnitTestRunner.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 |
13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/QUnit/QUnit Spec and HTML/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/QUnit/QUnit Spec and HTML/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/QUnit/QUnit Spec/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/QUnit/QUnit Spec/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/RequireJs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/RequireJs/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/RequireJs/template.js: -------------------------------------------------------------------------------- 1 | require(["helper/util"], function (util) { 2 | //This function is called when scripts/helper/util.js is loaded. 3 | //If util.js calls define(), then this function is not fired until 4 | //util's dependencies have loaded, and the util argument will hold 5 | //the module value for "helper/util". 6 | }); 7 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/TsLint/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/TsLint/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/jQuery/BasicJsFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/jQuery/BasicJsFile/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/jQuery/BasicJsFile/jQueryJSFile.js: -------------------------------------------------------------------------------- 1 | // Basic template based on: http://learn.jquery.com/using-jquery-core/document-ready/ 2 | $(function () { 3 | // your jQuery code here 4 | }); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/jQuery/Plugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/jQuery/Plugin/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/jscsrc/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/jscsrc/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/tinymce/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/JavaScript/tinymce/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/JavaScript/tinymce/plugin.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add('$fileinputname$', function (editor) { 2 | 3 | // write your code here 4 | 5 | }); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/AppCacheManifest/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/AppCacheManifest/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/AppCacheManifest/site.appcache: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | 3 | index.html 4 | stylesheet.css 5 | images/logo.png 6 | scripts/main.js 7 | http://cdn.example.com/scripts/main.js 8 | 9 | # Read more about App Cache here: http://www.html5rocks.com/en/tutorials/appcache/beginner/ -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/Favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/Favicon/favicon.ico -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/Favicon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/Favicon/icon.ico -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/FirefoxOsManifest/app.manifest: -------------------------------------------------------------------------------- 1 | #Delete this line. Read more about app.manifest here: https://developer.mozilla.org/de/docs/Apps/Manifest 2 | 3 | { 4 | "name": "My App", 5 | "description": "My elevator pitch goes here", 6 | "launch_path": "/", 7 | "icons": { 8 | "128": "/img/icon-128.png" 9 | }, 10 | "developer": { 11 | "name": "Your name or organization", 12 | "url": "http://your-homepage-here.org" 13 | }, 14 | "default_locale": "en" 15 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/FirefoxOsManifest/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/FirefoxOsManifest/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/HumansTxt/humans.txt: -------------------------------------------------------------------------------- 1 | # THE TEAM 2 | 3 | John Doe 4 | Site: http://example.com/ 5 | Twitter: @johndoe 6 | Location: Seattle, WA USA 7 | 8 | Jane Doe 9 | Site: http://example.net/ 10 | Twitter: @janedoe 11 | Location: Copenhagen, Denmark -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/HumansTxt/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/HumansTxt/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/JsonSchema/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/JsonSchema/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/JsonSchema/schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/draft-04/schema#", 3 | "title": "My schema file", 4 | "description": "A description of my schema file", 5 | "type": "object", 6 | "properties": { 7 | "name": { 8 | "description": "A description of the 'name' property", 9 | "type": "string" 10 | }, 11 | "required": [ "name" ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/ReadmeMd/icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/ReadmeMd/icon.pdn -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/ReadmeMd/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/ReadmeMd/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/ReadmeMd/readme.md: -------------------------------------------------------------------------------- 1 | # Readme.md 2 | 3 | 4 | To learn more about the markdown syntax, refer to these links: 5 | 6 | - [Markdown Syntax Guide](http://daringfireball.net/projects/markdown/syntax) 7 | - [Markdown Basics](http://daringfireball.net/projects/markdown/basics) 8 | - [GitHub Flavored Markdown](http://github.github.com/github-flavored-markdown/) 9 | - [markdown at wikipedia](https://secure.wikimedia.org/wikipedia/en/wiki/Markdown) -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/RobotsTxt/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/RobotsTxt/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/RobotsTxt/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /admin/ 3 | Disallow: /views/secret.html 4 | 5 | # The sitemap must be an absolute URL 6 | sitemap: http://mysite.com/sitemap.xml -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/WebVTT/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Misc/WebVTT/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Misc/WebVTT/subtitles.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT 2 | 3 | 00:00:01.000 --> 00:00:03.000 4 | Hey Batman and Robin 5 | 6 | 7 | NOTE elements can be used with the ::cue(v[voice=batman]) CSS selector 8 | 9 | 10 | 00:00:03.000 --> 00:00:05.500 11 | Wazzup? 12 | 13 | 00:00:06.000 --> 00:00:09.000 14 | Holla -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Mvc/NinjectControllerFactory/aspnet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Mvc/NinjectControllerFactory/aspnet.ico -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Nancy/NancyBootstrapper/bootstrapper.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace $rootnamespace$ 4 | { 5 | public class $safeitemname$ : DefaultNancyBootstrapper 6 | { 7 | // The bootstrapper enables you to reconfigure the composition of the framework, 8 | // by overriding the various methods and properties. 9 | // For more information https://github.com/NancyFx/Nancy/wiki/Bootstrapper 10 | } 11 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Nancy/NancyBootstrapper/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Nancy/NancyBootstrapper/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Nancy/NancyModule/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/Nancy/NancyModule/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/Nancy/NancyModule/module.cs: -------------------------------------------------------------------------------- 1 | using Nancy; 2 | 3 | namespace $rootnamespace$ 4 | { 5 | public class $safeitemname$ : NancyModule 6 | { 7 | public $safeitemname$() 8 | { 9 | Get["/"] = _ => "Hello!"; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/SignalR/BasicHubAndPage/aspnet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/SignalR/BasicHubAndPage/aspnet.ico -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Bootstrap/bootstrap.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { bootstrap } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppComponent } from './name.component'; 5 | 6 | // enableProdMode(); 7 | 8 | bootstrap(AppComponent) 9 | .then(success => console.log(`Bootstrap success`)) 10 | .catch(error => console.log(error)); -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Bootstrap/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Bootstrap/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Component/component.ts: -------------------------------------------------------------------------------- 1 | import {Component, OnInit} from 'angular2/core'; 2 | 3 | @Component({ 4 | selector: '$safeitemname$', 5 | templateUrl: 'app/$safeitemname$.component.html', 6 | styleUrls: ['app/$safeitemname$.component.css'] 7 | }) 8 | 9 | export class $properName$Component implements OnInit { 10 | 11 | constructor() { 12 | 13 | } 14 | 15 | ngOnInit() { 16 | 17 | } 18 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Component/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Component/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Pipe/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Pipe/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Pipe/pipe.ts: -------------------------------------------------------------------------------- 1 | import {Pipe, PipeTransform} from 'angular2/core'; 2 | 3 | @Pipe({ 4 | name: '$safeitemname$' 5 | }) 6 | 7 | export class $properName$Pipe implements PipeTransform { 8 | transform(value: string, args: string[]): any { 9 | 10 | } 11 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Root/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Root/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Root/root.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import { HTTP_PROVIDERS } from '@angular/http'; 3 | import { Routes, ROUTER_DIRECTIVES, ROUTER_PROVIDERS } from '@angular/router'; 4 | import 'rxjs/Rx'; // load the full rxjs 5 | 6 | @Component({ 7 | moduleId: module.id, 8 | selector: 'selector', 9 | templateUrl: 'name.component.html', 10 | directives: [ROUTER_DIRECTIVES], 11 | providers: [ 12 | HTTP_PROVIDERS, 13 | ROUTER_PROVIDERS 14 | ] 15 | }) 16 | @Routes([ 17 | 18 | ]) 19 | export class AppComponent { } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Service/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Service/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/TypeScript/Angular2/Service/service.ts: -------------------------------------------------------------------------------- 1 | import {Injectable} from 'angular2/core'; 2 | 3 | @Injectable() 4 | export class $properName$Service { 5 | 6 | } -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/WebEssentials/WEIgnore/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/WebEssentials/WEIgnore/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/WebEssentials/WEIgnore/weignore.txt: -------------------------------------------------------------------------------- 1 | # For more examples: http://vswebessentials.com/goto/weignore 2 | 3 | # To ignore file path including the word "style": 4 | # **/**style** 5 | 6 | # To ignore path with .min.js at the end: 7 | # **/**.min.js 8 | 9 | # To ignore the file from being processed by Autoprefixer, use the word autoprefixer: 10 | # **/bug.scss autoprefixer 11 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample FSharp/Sayed.fs: -------------------------------------------------------------------------------- 1 | module $safeitemname$ 2 | 3 | // this is a sample F# file by Sayed (yes I know it's lame, I don't know much F#). 4 | // Please improve/replace it -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample FSharp/fsharp-logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/_Samples/_Sample FSharp/fsharp-logo-32x32.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample FSharp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/_Samples/_Sample FSharp/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/ISearchController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace $rootnamespace$ { 3 | public interface $safeitemname$ { 4 | void Invoke(); 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/InputModels/Search/readme.txt: -------------------------------------------------------------------------------- 1 | place your input models here -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/SearchController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace $rootnamespace$ { 8 | public class $safeitemname$ : $rootnamespace$.I$safeitemname$ { 9 | public void Invoke() { 10 | 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/ViewModels/readme.txt: -------------------------------------------------------------------------------- 1 | place your view models here -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/Views/readme.txt: -------------------------------------------------------------------------------- 1 | place your views here -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/WorkerService/ISearchWorkerService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace $rootnamespace$.WorkerService { 3 | public interface $safeitemname$ { 4 | void DoWork(); 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/WorkerService/SearchWorkerService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace $rootnamespace$.WorkerService { 8 | public class $safeitemname$ : $rootnamespace$.WorkerService.I$safeitemname$ { 9 | public void DoWork() { 10 | 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Web/_Samples/_Sample Multi Files/icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Windows Phone/CaliburnMicroBootstrapper/caliburn-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ItemTemplates/Windows Phone/CaliburnMicroBootstrapper/caliburn-icon.png -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Windows Phone/readme.md: -------------------------------------------------------------------------------- 1 | Be the first to add a template in this folder -------------------------------------------------------------------------------- /TemplatePack/ItemTemplates/Windows Store/readme.md: -------------------------------------------------------------------------------- 1 | Be the first to add a template in this folder -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Cloud/readme.md: -------------------------------------------------------------------------------- 1 | Be the first to add a template in this folder -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/AspNetScaffolding/Basic/CustomScaffolder/Resources/_TemplateIconSample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Extensibility/AspNetScaffolding/Basic/CustomScaffolder/Resources/_TemplateIconSample.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/AspNetScaffolding/Basic/CustomScaffolder/Templates/CustomCodeGenerator/CustomTextTemplate.cs.t4: -------------------------------------------------------------------------------- 1 | <#@ template language="C#" #> 2 | <#@ assembly name="System.Core" #> 3 | <#@ assembly name="EnvDTE" #> 4 | <#@ import namespace="System.Linq" #> 5 | <#@ import namespace="System.Text" #> 6 | <#@ import namespace="System.Collections.Generic" #> 7 | <#@ parameter name="ModelType" type="EnvDTE.CodeType" #> 8 | 9 | /// This code was generated by Basic Scaffolder. 10 | 11 | namespace <#= ModelType.Namespace.FullName #> 12 | { 13 | public class <#= ModelType.Name #>Controller 14 | { 15 | public void <#= ModelType.Name #>Method() 16 | { 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/AspNetScaffolding/Basic/CustomScaffolder/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/AspNetScaffolding/Basic/CustomScaffolderExtension/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/AspNetScaffolding/Basic/_Definitions/templateinfo.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/Guids.cs: -------------------------------------------------------------------------------- 1 | // Guids.cs 2 | // MUST match guids.h 3 | using System; 4 | 5 | namespace $safeprojectname$ 6 | { 7 | static class GuidList 8 | { 9 | public const string guidBrowserLinkExtensionTemplatePkgString = "$guid1$"; 10 | public const string guidBrowserLinkExtensionTemplateCmdSetString = "$guid2$"; 11 | 12 | public static readonly Guid guidBrowserLinkExtensionTemplateCmdSet = new Guid(guidBrowserLinkExtensionTemplateCmdSetString); 13 | }; 14 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/PkgCmdID.cs: -------------------------------------------------------------------------------- 1 | // PkgCmdID.cs 2 | // MUST match PkgCmdID.h 3 | using System; 4 | 5 | namespace $safeprojectname$ 6 | { 7 | static class PkgCmdIDList 8 | { 9 | public const uint cmdidMyCommand = 0x100; 10 | 11 | 12 | }; 13 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/Resources/Images.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/Resources/Package.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtension/logo.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtensionSimple/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Extensibility/BrowserLinkExtensionSimple/logo.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/SnippetProject/README.txt: -------------------------------------------------------------------------------- 1 | Read more about how to customize the snippet project at http://madskristensen.net/post/shipping-visual-studio-snippets-in-an-extension -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/SnippetProject/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Extensibility/SnippetProject/logo.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Extensibility/SnippetProject/registry.pkgdef: -------------------------------------------------------------------------------- 1 | // C# 2 | [$RootKey$\Languages\CodeExpansions\CSharp\Paths] 3 | "$safeprojectname$"="$PackageFolder$\Snippets\CSharp\$safeprojectname$" -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/AngularJSWebApiEmpty/App/app.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | angular.module('app', [ 5 | // Angular modules 6 | 'ngAnimate', 7 | 'ngRoute' 8 | 9 | // Custom modules 10 | 11 | // 3rd Party Modules 12 | 13 | ]); 14 | })(); 15 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/AngularJSWebApiEmpty/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="AngularJSWebApiEmpty.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/AngularJSWebApiEmpty/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Routing; 7 | 8 | namespace AngularJSWebApiEmpty 9 | { 10 | public class WebApiApplication : System.Web.HttpApplication 11 | { 12 | protected void Application_Start() 13 | { 14 | GlobalConfiguration.Configure(WebApiConfig.Register); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/AngularJSWebApiEmpty/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/AngularJSWebApiEmpty/index.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/AngularJSWebApiEmpty/template-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/AngularJSWebApiEmpty/template-icon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/Properties/build/lib/Ionic.Zip.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Extension/Properties/build/lib/Ionic.Zip.DLL -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/Properties/build/lib/MSBuild.ExtensionPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Extension/Properties/build/lib/MSBuild.ExtensionPack.dll -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Extension/__TemplateIcon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/app/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Extension/app/img/icon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/app/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | 4 | "name": "One-click Kittens", 5 | "description": "This extension demonstrates a browser action with kittens.", 6 | "version": "1.0", 7 | 8 | "permissions": [ 9 | "https://secure.flickr.com/" 10 | ], 11 | "browser_action": { 12 | "default_icon": "img/icon.png", 13 | "default_popup": "popup.html" 14 | } 15 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Extension/index.htm -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/screenshots/readme.txt: -------------------------------------------------------------------------------- 1 | When uploading your extension to the Chrome Web Store, you can add screenshots 2 | that will be presented on the download page at the store. Use this folder for your 3 | screenshots. 4 | 5 | The Web Store is located here: https://chrome.google.com/webstore/category/extensions -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Extension/screenshots/screenshot.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Extension/scripts/_references.js: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/Properties/build/lib/Ionic.Zip.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/Properties/build/lib/Ionic.Zip.DLL -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/Properties/build/lib/MSBuild.ExtensionPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/Properties/build/lib/MSBuild.ExtensionPack.dll -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/__PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/__PreviewImage.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/__TemplateIcon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_frame.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_ntp_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_ntp_background.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_tab_background.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Theme/app/images/theme_toolbar.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Web Store App/ChromeApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Web Store App/ChromeApp.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Web Store App/Properties/build/lib/Ionic.Zip.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Web Store App/Properties/build/lib/Ionic.Zip.DLL -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Web Store App/Properties/build/lib/MSBuild.ExtensionPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Web Store App/Properties/build/lib/MSBuild.ExtensionPack.dll -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Web Store App/__PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Web Store App/__PreviewImage.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Web Store App/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Chrome Web Store App/__TemplateIcon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Chrome Web Store App/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google chrome App", 3 | "description": "Sample Google chrome App", 4 | "version": "1", 5 | "manifest_version": 2, 6 | "app": { 7 | "urls": [ 8 | "*://www.yourwebsite.com" 9 | ], 10 | "launch": { 11 | "web_url": "http://yourwebsite.com" 12 | } 13 | }, 14 | "icons": { 15 | "128": "ChromeApp.png" 16 | }, 17 | "permissions": [ 18 | "unlimitedStorage", 19 | "notifications" 20 | ] 21 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/App/views/detail.html: -------------------------------------------------------------------------------- 1 | 
2 | 5 | 8 |
-------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/App/views/flickr.html: -------------------------------------------------------------------------------- 1 | 
2 |

3 | 10 |
-------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/App_Data/Durandal451.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/App_Data/Durandal451.mdf -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/App_Data/Durandal451_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/App_Data/Durandal451_log.ldf -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/App_Start/DurandalConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Web.Optimization; 3 | 4 | [assembly: WebActivator.PostApplicationStartMethod( 5 | typeof($safeprojectname$.App_Start.DurandalConfig), "PreStart")] 6 | 7 | namespace $safeprojectname$.App_Start 8 | { 9 | public static class DurandalConfig 10 | { 11 | public static void PreStart() 12 | { 13 | // Add your start logic here 14 | DurandalBundleConfig.RegisterBundles(BundleTable.Bundles); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace $safeprojectname$ 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- 1 | namespace $safeprojectname$.Areas.HelpPage 2 | { 3 | /// 4 | /// Indicates whether the sample is used for request or response 5 | /// 6 | public enum SampleDirection 7 | { 8 | Request = 0, 9 | Response 10 | } 11 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- 1 | @using $safeprojectname$.Areas.HelpPage 2 | @model ImageSample 3 | 4 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- 1 | @using $safeprojectname$.Areas.HelpPage 2 | @model InvalidSample 3 | 4 | @if (HttpContext.Current.IsDebuggingEnabled) 5 | { 6 |
7 |

@Model.ErrorMessage

8 |
9 | } 10 | else 11 | { 12 |

Sample not available.

13 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- 1 | @using $safeprojectname$.Areas.HelpPage 2 | @model TextSample 3 | 4 |
5 | @Model.Text
6 | 
-------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @RenderSection("scripts", required: false) 8 | 9 | 10 | @RenderBody() 11 | 12 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages 3 | Layout = "~/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Content/ie10mobile.css: -------------------------------------------------------------------------------- 1 | @-webkit-viewport { 2 | width: device-width; 3 | } 4 | 5 | @-moz-viewport { 6 | width: device-width; 7 | } 8 | 9 | @-ms-viewport { 10 | width: device-width; 11 | } 12 | 13 | @-o-viewport { 14 | width: device-width; 15 | } 16 | 17 | @viewport { 18 | width: device-width; 19 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/icon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/iconOriginal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/iconOriginal.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/ios-startup-image-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/ios-startup-image-landscape.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/ios-startup-image-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/Content/images/ios-startup-image-portrait.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Controllers/DurandalController.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Mvc; 2 | 3 | namespace $safeprojectname$.Controllers { 4 | public class DurandalController : Controller { 5 | public ActionResult Index() { 6 | return View(); 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="$safeprojectname$.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/Scripts/_references.js -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using Microsoft.Owin; 5 | using Owin; 6 | 7 | [assembly: OwinStartup(typeof($safeprojectname$.Startup))] 8 | 9 | namespace $safeprojectname$ 10 | { 11 | public partial class Startup 12 | { 13 | public void Configuration(IAppBuilder app) 14 | { 15 | ConfigureAuth(app); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Views/Durandal/_splash.cshtml: -------------------------------------------------------------------------------- 1 | 
2 |
3 | Durandal Starter Kit 4 |
5 | 6 |
-------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | @{ 3 | ViewBag.Title = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/Web.config.install.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/__TemplateIcon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/favicon.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/Durandal451/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/Durandal451/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/__PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/__PreviewImage.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/__TemplateIcon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/favicon.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/humans.txt: -------------------------------------------------------------------------------- 1 | # humanstxt.org/ 2 | # The humans responsible & technology colophon 3 | 4 | # TEAM 5 | 6 | -- -- 7 | 8 | # THANKS 9 | 10 | 11 | 12 | # TECHNOLOGY COLOPHON 13 | 14 | HTML5, CSS3 15 | Normalize.css, jQuery, Modernizr 16 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/img/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/img/.gitignore -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/HTML5 Boiler Platev4.3/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Shared/Contact.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | // replace test $saferootprojectname$ 7 | namespace $safeprojectname$ 8 | { 9 | public class Contact 10 | { 11 | public long Id { get; set; } 12 | public string Firstname { get; set; } 13 | public string Lastname { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Shared/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Shared/__TemplateIcon.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Shared/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/Default.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="$safeprojectname$.Default" %> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 | 13 |
14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/Default.aspx.cs: -------------------------------------------------------------------------------- 1 | using My.Cool.Company.SharedLibrary; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Web; 6 | using System.Web.UI; 7 | using System.Web.UI.WebControls; 8 | 9 | namespace $safeprojectname$ { 10 | public partial class Default : System.Web.UI.Page { 11 | protected void Page_Load(object sender, EventArgs e) { 12 | Contact contact = new Contact { 13 | Firstname = "Sayed", 14 | Lastname = "Hashimi" 15 | }; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/__PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/__PreviewImage.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/__TemplateIcon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/Web/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/_Definitions/templateinfo.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_Sample Multi Project/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_Sample Multi Project/logo.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/Program.fs: -------------------------------------------------------------------------------- 1 | // Learn more about F# at http://fsharp.net 2 | // See the 'F# Tutorial' project for more help. 3 | 4 | // custom template by Sayed 5 | [] 6 | let main argv = 7 | printfn "%A" argv 8 | 0 // return an integer exit code 9 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/fsharp-logo-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/fsharp-logo-256x256.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/fsharp-logo-32x32.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/fsharp-logo-32x32.pdn -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/fsharp-logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/fsharp-logo-32x32.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleFSharpTemplate/icon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace WebApplication1 { 5 | public class FilterConfig { 6 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) { 7 | filters.Add(new HandleErrorAttribute()); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="WebApplication1.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Models/IdentityModels.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNet.Identity.EntityFramework; 2 | 3 | namespace WebApplication1.Models 4 | { 5 | // You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more. 6 | public class ApplicationUser : IdentityUser 7 | { 8 | } 9 | 10 | public class ApplicationDbContext : IdentityDbContext 11 | { 12 | public ApplicationDbContext() 13 | : base("DefaultConnection") 14 | { 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Scripts/_references.js -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Startup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Owin; 2 | using Owin; 3 | 4 | [assembly: OwinStartupAttribute(typeof(WebApplication1.Startup))] 5 | namespace WebApplication1 6 | { 7 | public partial class Startup 8 | { 9 | public void Configuration(IAppBuilder app) 10 | { 11 | ConfigureAuth(app); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Login Failure"; 3 | } 4 | 5 |

@ViewBag.Title.

6 |

Unsuccessful login with service.

7 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Contact"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |
8 | One Microsoft Way
9 | Redmond, WA 98052-6399
10 | P: 11 | 425.555.0100 12 |
13 | 14 |
15 | Support: Support@example.com
16 | Marketing: Marketing@example.com 17 |
-------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | 3 | @{ 4 | ViewBag.Title = "Error"; 5 | } 6 | 7 |

Error.

8 |

An error occurred while processing your request.

9 | 10 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/_preprocess.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleNewWeb/favicon.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleNewWeb/file-icon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleNewWeb/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleNewWeb/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleNewWeb/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleNewWeb/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleWeb/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Web/_SampleWeb/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Web/_SampleWeb/__TemplateIcon.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Phone/readme.md: -------------------------------------------------------------------------------- 1 | Be the first to add a template in this folder -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/__TemplateIcon.ico -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/css/default.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/default.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | $safeprojectname$ 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |

Content goes here

18 | 19 | 20 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/logo.scale-100.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/smalllogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/smalllogo.scale-100.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/splashscreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/splashscreen.scale-100.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/storelogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/images/storelogo.scale-100.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Windows Store/TypeScript Blank/js/default.js -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows Store/readme.md: -------------------------------------------------------------------------------- 1 | Be the first to add a template in this folder -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace $safeprojectname$ 2 | { 3 | /// 4 | /// Interaction logic for App.xaml 5 | /// 6 | public partial class App : System.Windows.Application 7 | { 8 | public App() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/AppBootstrapper.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using Caliburn.Micro; 3 | using $safeprojectname$.ViewModels; 4 | 5 | namespace $safeprojectname$ 6 | { 7 | public class AppBootstrapper : BootstrapperBase 8 | { 9 | public AppBootstrapper() 10 | { 11 | Initialize(); 12 | } 13 | 14 | protected override void OnStartup(object sender, StartupEventArgs e) 15 | { 16 | DisplayRootViewFor(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- 1 | using Caliburn.Micro; 2 | 3 | namespace $safeprojectname$.ViewModels 4 | { 5 | public class ShellViewModel : PropertyChangedBase, IHaveDisplayName 6 | { 7 | public ShellViewModel() 8 | { 9 | DisplayName = "Shell Window"; 10 | } 11 | 12 | /// 13 | /// Gets or Sets the Display Name 14 | /// 15 | public string DisplayName { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/Views/ShellView.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/Views/ShellView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace $safeprojectname$.Views 4 | { 5 | /// 6 | /// Interaction logic for Shell.xaml 7 | /// 8 | public partial class ShellView : UserControl 9 | { 10 | public ShellView() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/__TemplateIcon.png -------------------------------------------------------------------------------- /TemplatePack/ProjectTemplates/Windows/Caliburn.Micro WPF Application/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /TemplatePack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Resources; 4 | using System.Runtime.CompilerServices; 5 | using System.Runtime.InteropServices; 6 | 7 | // Version information for an assembly consists of the following four values: 8 | // 9 | // Major Version 10 | // Minor Version 11 | // Build Number 12 | // Revision 13 | // 14 | // You can specify all the values or you can default the Revision and Build Numbers 15 | // by using the '*' as shown below: 16 | 17 | [assembly: AssemblyVersion("1.2.0.0")] 18 | [assembly: AssemblyFileVersion("1.2.0.0")] 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /TemplatePack/Tooling/UpdateFrequency.cs: -------------------------------------------------------------------------------- 1 | namespace TemplatePack.Tooling { 2 | using System; 3 | 4 | public enum UpdateFrequency { 5 | Always, 6 | OnceADay, 7 | OnceAWeek, 8 | OnceAMonth, 9 | Never 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /TemplatePack/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TemplatePack/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/checkmark.png -------------------------------------------------------------------------------- /TemplatePack/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/loading.gif -------------------------------------------------------------------------------- /TemplatePack/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/logo.ico -------------------------------------------------------------------------------- /TemplatePack/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/logo_big.png -------------------------------------------------------------------------------- /TemplatePack/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/logo_small.png -------------------------------------------------------------------------------- /TemplatePack/resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/Images.png -------------------------------------------------------------------------------- /TemplatePack/resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/Package.ico -------------------------------------------------------------------------------- /TemplatePack/resources/SideWaffle-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/SideWaffle-icon-16x16.png -------------------------------------------------------------------------------- /TemplatePack/resources/SideWaffle-icon-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/SideWaffle-icon-24x24.png -------------------------------------------------------------------------------- /TemplatePack/resources/SideWaffle-icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/SideWaffle-icon-32x32.png -------------------------------------------------------------------------------- /TemplatePack/resources/SideWaffle-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/SideWaffle-icon-48x48.png -------------------------------------------------------------------------------- /TemplatePack/resources/SideWaffle-icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/SideWaffle-icon-64x64.png -------------------------------------------------------------------------------- /TemplatePack/resources/SideWaffle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/SideWaffle.ico -------------------------------------------------------------------------------- /TemplatePack/resources/SideWaffle16blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/SideWaffle16blue.png -------------------------------------------------------------------------------- /TemplatePack/resources/appveyor-file-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/appveyor-file-icon.psd -------------------------------------------------------------------------------- /TemplatePack/resources/appveyor_400x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/appveyor_400x400.png -------------------------------------------------------------------------------- /TemplatePack/resources/file-icon-sidewaffle.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/file-icon-sidewaffle.pdn -------------------------------------------------------------------------------- /TemplatePack/resources/file-icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/file-icon.pdn -------------------------------------------------------------------------------- /TemplatePack/resources/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/file-icon.png -------------------------------------------------------------------------------- /TemplatePack/resources/powershell-file-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/powershell-file-icon.psd -------------------------------------------------------------------------------- /TemplatePack/resources/vs-logo-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/TemplatePack/resources/vs-logo-project.png -------------------------------------------------------------------------------- /TemplatePack/templatesources.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/templatesources.json", 3 | "sources": [ ], 4 | "updateInterval": "OnceAWeek" 5 | } 6 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | # - Full reference at http://www.appveyor.com/docs/appveyor-yml 2 | 3 | version: 1.0.{build} 4 | 5 | # Operating system (build VM template) 6 | os: Windows Server 2012 R2 7 | 8 | environment: 9 | DeployExtension: false 10 | deployUserName: 11 | secure: OgeveOohI2Qlo5PUD56TTg== 12 | deployPassword: 13 | secure: xjgBRniNNJx4mEdGv2ZkXQ== 14 | 15 | build_script: 16 | - ps: .\appveyor.ps1 17 | 18 | artifacts: 19 | - path: TemplatePack\template-report.xml 20 | name: template-report.xml 21 | 22 | - path: release-notes.xml 23 | name: release-notes.xml -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.CommandBars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.CommandBars.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.ComponentModelHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.ComponentModelHost.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.OLE.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.OLE.Interop.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.11.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.11.0.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.Immutable.10.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.Immutable.10.0.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.Immutable.11.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.Immutable.11.0.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.Interop.10.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.Interop.10.0.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.Interop.11.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.Interop.11.0.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.Interop.8.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.Interop.8.0.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.Interop.9.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.Interop.9.0.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.Shell.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.Shell.Interop.dll -------------------------------------------------------------------------------- /assemblies/Microsoft.VisualStudio.TextManager.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/assemblies/Microsoft.VisualStudio.TextManager.Interop.dll -------------------------------------------------------------------------------- /item-templates/PowerShell/CmdletAdvancedFunctions/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/CmdletAdvancedFunctions/icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/CmdletAdvancedFunctions/powershell-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/CmdletAdvancedFunctions/powershell-file-icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/CmdletAdvancedFunctionsComplete/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/CmdletAdvancedFunctionsComplete/icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/CmdletAdvancedFunctionsComplete/powershell-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/CmdletAdvancedFunctionsComplete/powershell-file-icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/DscConfigurationSimple/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/DscConfigurationSimple/icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/DscConfigurationSimple/powershell-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/DscConfigurationSimple/powershell-file-icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/DscResourceProvider/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/DscResourceProvider/icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/DscResourceProvider/powershell-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/DscResourceProvider/powershell-file-icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/EmptyPowerShellFile/empty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/EmptyPowerShellFile/empty.ps1 -------------------------------------------------------------------------------- /item-templates/PowerShell/EmptyPowerShellFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/EmptyPowerShellFile/icon.png -------------------------------------------------------------------------------- /item-templates/PowerShell/EmptyPowerShellFile/powershell-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/item-templates/PowerShell/EmptyPowerShellFile/powershell-file-icon.png -------------------------------------------------------------------------------- /multi-project-templates.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/multi-project-templates.docx -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligershark/side-waffle/a6a7c1b9f233ec50f55e0473948eceec55e7545b/screenshot.png --------------------------------------------------------------------------------