├── .gitattributes ├── .gitignore ├── DisplayTemplatesDemo.sln ├── DisplayTemplatesDemo.zip ├── DisplayTemplatesDemo ├── App_Data │ ├── Users.mdf │ └── Users_log.ldf ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── HomeController.cs │ └── RoleController.cs ├── DataAccess │ ├── Managers │ │ ├── RoleManager.cs │ │ └── UserManager.cs │ └── Model │ │ ├── Address.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── Users.Context.cs │ │ ├── Users.Context.tt │ │ ├── Users.Designer.cs │ │ ├── Users.cs │ │ ├── Users.edmx │ │ ├── Users.edmx.diagram │ │ └── Users.tt ├── DisplayTemplatesDemo.csproj ├── Global.asax ├── Global.asax.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 ├── ViewModels │ └── Role │ │ └── UserRoleVM.cs ├── Views │ ├── Home │ │ ├── Add.cshtml │ │ └── Index.cshtml │ ├── Role │ │ ├── Add.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ └── User.cshtml │ ├── Shared │ │ ├── DisplayTemplates │ │ │ ├── Address.cshtml │ │ │ ├── DateTime.cshtml │ │ │ ├── Role.cshtml │ │ │ └── User.cshtml │ │ ├── EditorTemplates │ │ │ ├── DateTime.cshtml │ │ │ ├── Role.cshtml │ │ │ └── User.cshtml │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── README.md └── packages ├── Antlr.3.4.1.9004 ├── Antlr.3.4.1.9004.nupkg └── lib │ └── Antlr3.Runtime.dll ├── EntityFramework.5.0.0 ├── Content │ ├── App.config.transform │ └── Web.config.transform ├── EntityFramework.5.0.0.nupkg ├── lib │ ├── net40 │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PS3.psd1 │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── Redirect.VS11.config │ ├── Redirect.config │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── Microsoft.AspNet.Mvc.5.1.2 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.Mvc.5.1.2.nupkg └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.1.2 ├── Microsoft.AspNet.Razor.3.1.2.nupkg └── lib │ └── net45 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.1.3 ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg └── lib │ └── net40 │ ├── System.Web.Optimization.dll │ └── system.web.optimization.xml ├── Microsoft.AspNet.WebPages.3.1.2 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.WebPages.3.1.2.nupkg └── lib │ └── net45 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Validation.3.1.2 ├── Content │ └── Scripts │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js └── Microsoft.jQuery.Unobtrusive.Validation.3.1.2.nupkg ├── Modernizr.2.6.2 ├── Content │ └── Scripts │ │ └── modernizr-2.6.2.js ├── Modernizr.2.6.2.nupkg └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── Newtonsoft.Json.5.0.6 ├── Newtonsoft.Json.5.0.6.nupkg └── lib │ ├── net20 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net35 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── netcore45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net40%2Bsl4%2Bwp7%2Bwin8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ └── portable-net45%2Bwp80%2Bwin8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── Respond.1.2.0 ├── Respond.1.2.0.nupkg └── content │ └── Scripts │ ├── respond.js │ └── respond.min.js ├── WebGrease.1.5.2 ├── WebGrease.1.5.2.nupkg ├── lib │ └── WebGrease.dll └── tools │ └── WG.exe ├── bootstrap.3.0.0 ├── bootstrap.3.0.0.nupkg └── content │ ├── Content │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Scripts │ ├── bootstrap.js │ └── bootstrap.min.js │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── jQuery.1.10.2 ├── Content │ └── Scripts │ │ ├── jquery-1.10.2-vsdoc.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ └── jquery-1.10.2.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.10.2.intellisense.js │ └── uninstall.ps1 └── jQuery.1.10.2.nupkg ├── jQuery.Validation.1.11.1 ├── Content │ └── Scripts │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jQuery.Validation.1.11.1.nupkg └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /DisplayTemplatesDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo.sln -------------------------------------------------------------------------------- /DisplayTemplatesDemo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo.zip -------------------------------------------------------------------------------- /DisplayTemplatesDemo/App_Data/Users.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/App_Data/Users.mdf -------------------------------------------------------------------------------- /DisplayTemplatesDemo/App_Data/Users_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/App_Data/Users_log.ldf -------------------------------------------------------------------------------- /DisplayTemplatesDemo/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Content/Site.css -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Content/bootstrap.css -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Content/bootstrap.min.css -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Controllers/RoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Controllers/RoleController.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Managers/RoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Managers/RoleManager.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Managers/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Managers/UserManager.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Address.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Role.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/User.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Users.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Users.Context.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Users.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Users.Context.tt -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Users.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Users.Designer.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Users.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Users.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Users.edmx -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Users.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Users.edmx.diagram -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DataAccess/Model/Users.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DataAccess/Model/Users.tt -------------------------------------------------------------------------------- /DisplayTemplatesDemo/DisplayTemplatesDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/DisplayTemplatesDemo.csproj -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Global.asax -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Global.asax.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Project_Readme.html -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/_references.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/bootstrap.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/respond.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Scripts/respond.min.js -------------------------------------------------------------------------------- /DisplayTemplatesDemo/ViewModels/Role/UserRoleVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/ViewModels/Role/UserRoleVM.cs -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Home/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Home/Add.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Role/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Role/Add.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Role/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Role/Edit.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Role/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Role/Index.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Role/User.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Role/User.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/DisplayTemplates/Address.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/DisplayTemplates/Address.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/DisplayTemplates/DateTime.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/DisplayTemplates/DateTime.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/DisplayTemplates/Role.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/DisplayTemplates/Role.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/DisplayTemplates/User.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/DisplayTemplates/User.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/EditorTemplates/DateTime.cshtml: -------------------------------------------------------------------------------- 1 | @model System.DateTime 2 | 3 | @Html.TextBoxFor(x => x, new { type = "date" }) 4 | -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/EditorTemplates/Role.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/EditorTemplates/Role.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/EditorTemplates/User.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/EditorTemplates/User.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/Web.config -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Web.Debug.config -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Web.Release.config -------------------------------------------------------------------------------- /DisplayTemplatesDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/Web.config -------------------------------------------------------------------------------- /DisplayTemplatesDemo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/favicon.ico -------------------------------------------------------------------------------- /DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /DisplayTemplatesDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/DisplayTemplatesDemo/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/README.md -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/Content/App.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/Content/Web.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.VS11.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/Redirect.VS11.config -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/Redirect.config -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/init.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/EntityFramework.5.0.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/Microsoft.AspNet.Mvc.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/Microsoft.AspNet.Mvc.5.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.1.2/Microsoft.AspNet.Razor.3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Razor.3.1.2/Microsoft.AspNet.Razor.3.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/Microsoft.AspNet.WebPages.3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/Microsoft.AspNet.WebPages.3.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Microsoft.jQuery.Unobtrusive.Validation.3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Microsoft.jQuery.Unobtrusive.Validation.3.1.2.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Modernizr.2.6.2/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Modernizr.2.6.2/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Modernizr.2.6.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/Respond.1.2.0/content/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Respond.1.2.0/content/Scripts/respond.js -------------------------------------------------------------------------------- /packages/Respond.1.2.0/content/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/Respond.1.2.0/content/Scripts/respond.min.js -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/WebGrease.1.5.2/tools/WG.exe -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/Content/bootstrap.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/Scripts/bootstrap.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/jQuery.1.10.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/DisplayTemplatesDemo/HEAD/packages/repositories.config --------------------------------------------------------------------------------