├── Dockerfile ├── GuidGenerator.sln ├── GuidGenerator ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ └── WebApiConfig.cs ├── ApplicationInsights.config ├── Areas │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── EnumValueDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── ModelDescription.cs │ │ ├── ModelDescriptionGenerator.cs │ │ ├── ModelNameAttribute.cs │ │ ├── ModelNameHelper.cs │ │ ├── ParameterAnnotation.cs │ │ ├── ParameterDescription.cs │ │ └── SimpleTypeModelDescription.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 │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ResourceModel.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ └── ValuesController.cs ├── Global.asax ├── Global.asax.cs ├── GuidGenerator.csproj ├── GuidGenerator.csproj.user ├── Models │ ├── AccountBindingModels.cs │ ├── AccountViewModels.cs │ └── IdentityModels.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Providers │ └── ApplicationOAuthProvider.cs ├── Results │ └── ChallengeResult.cs ├── Scripts │ ├── _references.js │ ├── ai.0.22.9-build00167.js │ ├── ai.0.22.9-build00167.min.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 │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── 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 ├── LICENSE └── README.md /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/Dockerfile -------------------------------------------------------------------------------- /GuidGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator.sln -------------------------------------------------------------------------------- /GuidGenerator/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /GuidGenerator/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /GuidGenerator/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /GuidGenerator/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /GuidGenerator/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /GuidGenerator/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /GuidGenerator/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/ApplicationInsights.config -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /GuidGenerator/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Content/Site.css -------------------------------------------------------------------------------- /GuidGenerator/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Content/bootstrap.css -------------------------------------------------------------------------------- /GuidGenerator/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Content/bootstrap.min.css -------------------------------------------------------------------------------- /GuidGenerator/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Controllers/AccountController.cs -------------------------------------------------------------------------------- /GuidGenerator/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Controllers/HomeController.cs -------------------------------------------------------------------------------- /GuidGenerator/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /GuidGenerator/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Global.asax -------------------------------------------------------------------------------- /GuidGenerator/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Global.asax.cs -------------------------------------------------------------------------------- /GuidGenerator/GuidGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/GuidGenerator.csproj -------------------------------------------------------------------------------- /GuidGenerator/GuidGenerator.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/GuidGenerator.csproj.user -------------------------------------------------------------------------------- /GuidGenerator/Models/AccountBindingModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Models/AccountBindingModels.cs -------------------------------------------------------------------------------- /GuidGenerator/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /GuidGenerator/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Models/IdentityModels.cs -------------------------------------------------------------------------------- /GuidGenerator/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Project_Readme.html -------------------------------------------------------------------------------- /GuidGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GuidGenerator/Providers/ApplicationOAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Providers/ApplicationOAuthProvider.cs -------------------------------------------------------------------------------- /GuidGenerator/Results/ChallengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Results/ChallengeResult.cs -------------------------------------------------------------------------------- /GuidGenerator/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/_references.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/ai.0.22.9-build00167.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/ai.0.22.9-build00167.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/ai.0.22.9-build00167.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/ai.0.22.9-build00167.min.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/bootstrap.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/respond.js -------------------------------------------------------------------------------- /GuidGenerator/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Scripts/respond.min.js -------------------------------------------------------------------------------- /GuidGenerator/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Startup.cs -------------------------------------------------------------------------------- /GuidGenerator/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Views/Web.config -------------------------------------------------------------------------------- /GuidGenerator/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /GuidGenerator/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Web.Debug.config -------------------------------------------------------------------------------- /GuidGenerator/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Web.Release.config -------------------------------------------------------------------------------- /GuidGenerator/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/Web.config -------------------------------------------------------------------------------- /GuidGenerator/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/favicon.ico -------------------------------------------------------------------------------- /GuidGenerator/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /GuidGenerator/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /GuidGenerator/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /GuidGenerator/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /GuidGenerator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/GuidGenerator/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/guidgenerator-aspnet/HEAD/README.md --------------------------------------------------------------------------------