├── samples └── Sample-AspNet5.Mvc6.Ntlm │ ├── .bowerrc │ ├── wwwroot │ ├── js │ │ └── site.js │ ├── favicon.ico │ ├── images │ │ ├── Banner-02-VS.png │ │ ├── Banner-01-Azure.png │ │ ├── ASP-NET-Banners-01.png │ │ └── ASP-NET-Banners-02.png │ ├── lib │ │ ├── bootstrap │ │ │ ├── dist │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── js │ │ │ │ │ └── npm.js │ │ │ │ └── css │ │ │ │ │ └── bootstrap-theme.min.css │ │ │ ├── .bower.json │ │ │ └── LICENSE │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ └── MIT-LICENSE.txt │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.min.js │ │ │ │ └── jquery.validate.min.js │ │ └── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ └── jquery.validate.unobtrusive.js │ ├── _references.js │ ├── web.config │ └── css │ │ └── site.css │ ├── Views │ ├── _ViewStart.cshtml │ ├── _ViewImports.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ └── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── appsettings.json │ ├── bower.json │ ├── package.json │ ├── Properties │ └── launchSettings.json │ ├── Controllers │ └── HomeController.cs │ ├── gulpfile.js │ ├── Sample-AspNet5.Mvc6.Ntlm.xproj │ ├── project.json │ ├── Startup.cs │ └── Project_Readme.html ├── global.json ├── NuGet.config ├── src └── Microsoft.AspNetCore.Authentication.ActiveDirectory │ ├── Events │ ├── AuthenticationFailedContext.cs │ ├── AuthenticationSucceededContext.cs │ ├── IAuthenticationEvents.cs │ ├── BaseActiveDirectoryContext.cs │ └── AuthenticationEvents.cs │ ├── Constants.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── project.json │ ├── Microsoft.AspNetCore.Authentication.ActiveDirectory.xproj │ ├── Enums.cs │ ├── WindowsAuthenticationController.cs │ ├── ActiveDirectoryExtensions.cs │ ├── ActiveDirectoryCookieOptions.cs │ ├── ActiveDirectoryMiddleware.cs │ ├── Interop.cs │ ├── ActiveDirectoryOptions.cs │ ├── AuthenticationStateCache.cs │ ├── HandshakeState.cs │ ├── Structures.cs │ └── NtlmAuthenticationHandler.cs ├── appveyor.yml ├── Middleware.ActiveDirectory.sln ├── .gitignore ├── README.md └── LICENSE /samples/Sample-AspNet5.Mvc6.Ntlm/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /samples/Sample-AspNet5.Mvc6.Ntlm/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /samples/Sample-AspNet5.Mvc6.Ntlm/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Sample-AspNet5.Mvc6.Ntlm/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Sample_AspNet5.Mvc6.Ntlm 2 | @addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers" 3 | -------------------------------------------------------------------------------- /samples/Sample-AspNet5.Mvc6.Ntlm/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBitSoftware/Microsoft.AspNetCore.Authentication.ActiveDirectory/HEAD/samples/Sample-AspNet5.Mvc6.Ntlm/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/Sample-AspNet5.Mvc6.Ntlm/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBitSoftware/Microsoft.AspNetCore.Authentication.ActiveDirectory/HEAD/samples/Sample-AspNet5.Mvc6.Ntlm/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /samples/Sample-AspNet5.Mvc6.Ntlm/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |
Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /samples/Sample-AspNet5.Mvc6.Ntlm/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |