├── common ├── stub-topic.txt ├── samples │ ├── WebApplication1 │ │ ├── src │ │ │ └── WebApplication1 │ │ │ │ ├── wwwroot │ │ │ │ ├── js │ │ │ │ │ ├── site.min.js │ │ │ │ │ └── site.js │ │ │ │ └── favicon.ico │ │ │ │ ├── .bowerrc │ │ │ │ └── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ ├── Home │ │ │ │ └── About.cshtml │ │ │ │ └── Account │ │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ │ └── ExternalLoginFailure.cshtml │ │ └── global.json │ ├── ConsoleApp1 │ │ └── global.json │ └── ClassLibrary1 │ │ ├── global.json │ │ └── src │ │ └── ClassLibrary1 │ │ └── project.json ├── api.inv ├── aspnet.inv ├── _static │ ├── favicon.ico │ ├── nav-logo-aspnet.png │ └── nav-logo-microsoft.png └── _templates │ └── footer.html ├── aspnet ├── mvc │ ├── models │ │ ├── formatting │ │ │ ├── sample │ │ │ │ ├── src │ │ │ │ │ └── ResponseFormattingSample │ │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── Banner-02-VS.png │ │ │ │ │ │ │ ├── Banner-01-Azure.png │ │ │ │ │ │ │ ├── ASP-NET-Banners-01.png │ │ │ │ │ │ │ └── ASP-NET-Banners-02.png │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ └── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ │ ├── Shared │ │ │ │ │ │ └── Error.cshtml │ │ │ │ │ │ └── Home │ │ │ │ │ │ └── About.cshtml │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ ├── json-response.png │ │ │ │ ├── text-response.png │ │ │ │ ├── xml-response.png │ │ │ │ ├── fiddler-composer.png │ │ │ │ └── json-response-fiddler.png │ │ ├── validation │ │ │ └── sample │ │ │ │ ├── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ │ │ ├── IUserRepository.cs │ │ │ │ ├── Genre.cs │ │ │ │ └── User.cs │ │ ├── index.rst │ │ └── custom-formatters.rst │ ├── views │ │ ├── partial │ │ │ ├── sample │ │ │ │ └── src │ │ │ │ │ └── PartialViewsSample │ │ │ │ │ ├── .bowerrc │ │ │ │ │ ├── wwwroot │ │ │ │ │ ├── js │ │ │ │ │ │ ├── site.js │ │ │ │ │ │ └── site.min.js │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ ├── Articles │ │ │ │ │ │ ├── ArticleSection.cshtml │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── Shared │ │ │ │ │ │ └── AuthorPartial.cshtml │ │ │ │ │ └── Home │ │ │ │ │ │ └── AuthorPartial.cshtml │ │ │ │ │ ├── ViewModels │ │ │ │ │ └── ArticleSection.cs │ │ │ │ │ └── appsettings.json │ │ │ └── _static │ │ │ │ └── output.png │ │ ├── forms │ │ │ ├── sample │ │ │ │ └── final │ │ │ │ │ ├── Views │ │ │ │ │ ├── Demo │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ ├── RegisterRoute.cshtml │ │ │ │ │ │ ├── RegisterFormOnly.cshtml │ │ │ │ │ │ ├── RegisterLabel.cshtml │ │ │ │ │ │ └── RegisterTextArea.cshtml │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── IndexSuccess.cshtml │ │ │ │ │ │ ├── MyModel.cshtml │ │ │ │ │ │ ├── IndexEmptyTemplate.cshtml │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── Shared │ │ │ │ │ │ └── EditorTemplates │ │ │ │ │ │ ├── String.cshtml │ │ │ │ │ │ └── CountryViewModel.cshtml │ │ │ │ │ └── ViewModels │ │ │ │ │ ├── MyModel.cs │ │ │ │ │ ├── CountryEnumViewModel.cs │ │ │ │ │ ├── DescriptionViewModel.cs │ │ │ │ │ ├── ToDoItem.cs │ │ │ │ │ ├── AddressViewModel.cs │ │ │ │ │ └── SimpleViewModel.cs │ │ │ └── _static │ │ │ │ └── grp.png │ │ ├── tag-helpers │ │ │ ├── authoring │ │ │ │ └── sample │ │ │ │ │ └── AuthoringTagHelpers │ │ │ │ │ └── src │ │ │ │ │ └── AuthoringTagHelpers │ │ │ │ │ └── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ ├── _ViewImportsCopy.cshtml │ │ │ │ │ └── _ViewImportsCopyEmail.cshtml │ │ │ ├── intro │ │ │ │ └── _static │ │ │ │ │ ├── th.png │ │ │ │ │ ├── bang.png │ │ │ │ │ ├── thp.png │ │ │ │ │ ├── 1stName.png │ │ │ │ │ ├── class.png │ │ │ │ │ ├── fname.png │ │ │ │ │ ├── iclass.png │ │ │ │ │ ├── intel3.png │ │ │ │ │ ├── label.png │ │ │ │ │ ├── label2.png │ │ │ │ │ ├── labelVM.png │ │ │ │ │ ├── model.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── regCS.png │ │ │ │ │ ├── regTH.png │ │ │ │ │ ├── tagSym.png │ │ │ │ │ ├── labelattr.png │ │ │ │ │ ├── LableHtmlTag.png │ │ │ │ │ ├── fontoptions2.png │ │ │ │ │ ├── intelclass.png │ │ │ │ │ ├── intellemail.png │ │ │ │ │ ├── labelaspfor.PNG │ │ │ │ │ ├── labelaspfor2.png │ │ │ │ │ └── stmtcomplete.png │ │ │ └── index.rst │ │ ├── layout │ │ │ └── _static │ │ │ │ ├── page-layout.png │ │ │ │ └── web-project-views.png │ │ ├── overview │ │ │ └── _static │ │ │ │ ├── about-page.png │ │ │ │ └── views_solution_explorer.png │ │ ├── view-components │ │ │ ├── _static │ │ │ │ ├── 2dos.png │ │ │ │ ├── p2.png │ │ │ │ ├── pi.png │ │ │ │ ├── pvc.png │ │ │ │ └── shared.png │ │ │ └── sample │ │ │ │ ├── StarterViewComp │ │ │ │ └── Models │ │ │ │ │ └── ToDoContext.cs │ │ │ │ └── ViewCompFinal │ │ │ │ ├── Models │ │ │ │ └── ToDoContext.cs │ │ │ │ └── Views │ │ │ │ └── Shared │ │ │ │ └── Components │ │ │ │ └── PriorityList │ │ │ │ ├── Default1.cshtml │ │ │ │ └── _Default.cshtml │ │ ├── dependency-injection │ │ │ ├── sample │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ ├── stat.png │ │ │ │ ├── screenshot.png │ │ │ │ ├── razor-fields.png │ │ │ │ └── updateprofile.png │ │ ├── razor.rst │ │ ├── html-helpers.rst │ │ └── custom-view-engine.rst │ ├── controllers │ │ ├── dependency-injection │ │ │ ├── sample │ │ │ │ ├── src │ │ │ │ │ └── ControllerDI │ │ │ │ │ │ ├── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ ├── Home │ │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ │ └── About.cshtml │ │ │ │ │ │ └── Settings │ │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ │ ├── samplewebsettings.json │ │ │ │ │ │ ├── Interfaces │ │ │ │ │ │ └── IDateTime.cs │ │ │ │ │ │ └── Model │ │ │ │ │ │ └── SampleWebSettings.cs │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ └── server-greeting.png │ │ ├── testing │ │ │ └── sample │ │ │ │ └── TestingControllersSample │ │ │ │ ├── src │ │ │ │ └── TestingControllersSample │ │ │ │ │ ├── .bowerrc │ │ │ │ │ └── bower.json │ │ │ │ └── global.json │ │ ├── filters │ │ │ ├── sample │ │ │ │ ├── global.json │ │ │ │ └── src │ │ │ │ │ └── FiltersSample │ │ │ │ │ └── Views │ │ │ │ │ └── Home │ │ │ │ │ └── Index.cshtml │ │ │ └── _static │ │ │ │ ├── add-header.png │ │ │ │ ├── filter-pipeline-1.png │ │ │ │ └── filter-pipeline-2.png │ │ ├── index.rst │ │ ├── routing.rst │ │ └── application-model.rst │ ├── index.rst │ └── overview.rst ├── client-side │ ├── angular │ │ ├── sample │ │ │ └── AngularSample │ │ │ │ ├── src │ │ │ │ └── AngularSample │ │ │ │ │ ├── appsettings.json │ │ │ │ │ ├── .bowerrc │ │ │ │ │ ├── wwwroot │ │ │ │ │ ├── js │ │ │ │ │ │ └── site.js │ │ │ │ │ ├── app │ │ │ │ │ │ ├── personModule.js │ │ │ │ │ │ ├── partials │ │ │ │ │ │ │ ├── personlist.html │ │ │ │ │ │ │ └── persondetail.html │ │ │ │ │ │ ├── personApp.js │ │ │ │ │ │ ├── personListController.js │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ └── personDetailController.js │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── images │ │ │ │ │ │ ├── Banner-02-VS.png │ │ │ │ │ │ ├── Banner-01-Azure.png │ │ │ │ │ │ ├── ASP-NET-Banners-01.png │ │ │ │ │ │ └── ASP-NET-Banners-02.png │ │ │ │ │ └── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ ├── Shared │ │ │ │ │ └── Error.cshtml │ │ │ │ │ └── Home │ │ │ │ │ ├── About.cshtml │ │ │ │ │ └── Directives.cshtml │ │ │ │ └── global.json │ │ └── _static │ │ │ ├── scope.png │ │ │ ├── events.png │ │ │ ├── repeater.png │ │ │ ├── repeaters2.png │ │ │ ├── rest-bound.png │ │ │ ├── controllers.png │ │ │ ├── spa-persons.png │ │ │ ├── spa-persons-2.png │ │ │ ├── simple-directive.png │ │ │ ├── simple-databinding.png │ │ │ ├── simple-expressions.png │ │ │ ├── simple-templates-1.png │ │ │ ├── simple-templates-2.png │ │ │ └── angular-solution-explorer.png │ ├── bundling-and-minification │ │ ├── samples │ │ │ └── WebApplication1 │ │ │ │ ├── src │ │ │ │ └── WebApplication1 │ │ │ │ │ ├── wwwroot │ │ │ │ │ ├── js │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ └── site.js │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── .bowerrc │ │ │ │ │ └── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ └── Home │ │ │ │ │ └── About.cshtml │ │ │ │ └── global.json │ │ └── _static │ │ │ └── task-runner-explorer.png │ ├── bower │ │ └── _static │ │ │ ├── jumbotron.png │ │ │ ├── add-package.png │ │ │ ├── mvc-project.png │ │ │ ├── package-lib.png │ │ │ ├── empty-project.png │ │ │ ├── photo-gallery.png │ │ │ ├── bower-dependencies.png │ │ │ ├── manage-bower-packages.png │ │ │ └── version-intellisense.png │ ├── using-gulp │ │ └── _static │ │ │ ├── semver.png │ │ │ ├── task-binding.png │ │ │ ├── task-runner-1.png │ │ │ ├── task-runner-2.png │ │ │ ├── task-runner-3.png │ │ │ ├── 01-NewProjectDB.png │ │ │ ├── 08-IntelliSense.png │ │ │ ├── 04-TaskRunner-clean.png │ │ │ ├── 06-TaskRunner-First.png │ │ │ ├── 03-TaskRunnerExplorer.png │ │ │ ├── 07-TaskRunner-Series.png │ │ │ ├── running-default-task.png │ │ │ ├── 05-TaskRunner-BeforeBuild.png │ │ │ └── 02-SolutionExplorer-TaskRunnerExplorer.png │ ├── bootstrap │ │ └── _static │ │ │ ├── jumbotron.png │ │ │ ├── input-groups.png │ │ │ ├── theme-alerts.png │ │ │ ├── theme-badges.png │ │ │ ├── theme-buttons.png │ │ │ ├── theme-navbars.png │ │ │ ├── about-page-wide.png │ │ │ ├── theme-inspinia.png │ │ │ ├── theme-tabstrips.png │ │ │ ├── theme-glyphicons.png │ │ │ ├── about-page-hamburger.png │ │ │ ├── bootstrap-in-layout.png │ │ │ ├── grid-without-clearfix.png │ │ │ ├── about-page-hamburger-open.png │ │ │ ├── bootstrap-in-starter-template.png │ │ │ └── narrow-and-wide-viewport-grid.png │ ├── knockout │ │ └── _static │ │ │ ├── bower-knockout.png │ │ │ ├── wwwroot-knockout.png │ │ │ ├── record-screenshot.png │ │ │ ├── hyperlink-screenshot.png │ │ │ ├── editable-grid-screenshot.png │ │ │ ├── input-binding-screenshot.png │ │ │ ├── hyperlink-caps-screenshot.png │ │ │ ├── record-winloss-screenshot.png │ │ │ ├── simple-binding-screenshot.png │ │ │ └── record-addresult-screenshot.png │ ├── using-grunt │ │ └── _static │ │ │ ├── alias-tasks.png │ │ │ ├── node-modules.png │ │ │ ├── watch-running.png │ │ │ ├── restore-packages.png │ │ │ ├── typescript-options.png │ │ │ ├── bindings-project-open.png │ │ │ ├── devdependencies-grunt.png │ │ │ ├── gruntfile-js-complete.png │ │ │ ├── gruntfile-js-initial.png │ │ │ ├── grunt-solution-explorer.png │ │ │ ├── task-runner-explorer-menu.png │ │ │ ├── task-runner-explorer-tasks.png │ │ │ ├── task-runner-explorer-run-clean.png │ │ │ ├── solution-explorer-after-all-tasks.png │ │ │ └── task-runner-explorer-run-each-task.png │ ├── yeoman │ │ └── _static │ │ │ ├── dotnet-build-run.png │ │ │ ├── dotnet-restore.png │ │ │ ├── yeoman-home-page.png │ │ │ ├── yeoman-solution.png │ │ │ ├── yeoman-yo-aspnet.png │ │ │ ├── yeoman-home-page_5000.png │ │ │ ├── yeoman-yo-aspnet-created.png │ │ │ └── yeoman-loading-dependencies.png │ ├── less-sass-fa │ │ └── _static │ │ │ ├── add-less-file.png │ │ │ ├── add-scss-file.png │ │ │ ├── folder-structure.png │ │ │ ├── less-task-runner.png │ │ │ ├── main-css-created.png │ │ │ ├── less-test-screenshot.png │ │ │ └── list-icons-screenshot.png │ └── responsive-design.rst ├── fundamentals │ ├── localization │ │ ├── sample │ │ │ ├── .bowerrc │ │ │ ├── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ ├── Shared │ │ │ │ │ └── Error.cshtml │ │ │ │ └── Account │ │ │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ │ │ └── Lockout.cshtml │ │ │ ├── hosting.json │ │ │ ├── Resources │ │ │ │ └── SharedResource.cs │ │ │ └── bower.json │ │ └── _static │ │ │ ├── hola.png │ │ │ ├── lang.png │ │ │ ├── newi.png │ │ │ ├── res.png │ │ │ ├── se.png │ │ │ ├── simp2.png │ │ │ └── newproj.png │ ├── app-state │ │ ├── sample │ │ │ ├── global.json │ │ │ └── src │ │ │ │ └── AppState │ │ │ │ └── Model │ │ │ │ └── RequestEntry.cs │ │ └── _static │ │ │ ├── session-established.png │ │ │ ├── no-session-established.png │ │ │ ├── session-after-response-error.png │ │ │ └── session-established-with-request-counts.png │ ├── logging │ │ ├── sample │ │ │ └── global.json │ │ └── _static │ │ │ ├── console-logger-output.png │ │ │ ├── console-logger-trace-output.png │ │ │ └── trace-source-console-output.png │ ├── middleware │ │ ├── sample │ │ │ └── global.json │ │ └── _static │ │ │ ├── console-loginline.png │ │ │ ├── console-logmiddleware.png │ │ │ └── request-delegate-pipeline.png │ ├── environments │ │ ├── sample │ │ │ ├── global.json │ │ │ └── src │ │ │ │ └── Environments │ │ │ │ └── wwwroot │ │ │ │ └── placeholder.txt │ │ └── _static │ │ │ └── project-properties-debug.png │ ├── dependency-injection │ │ ├── sample │ │ │ └── DependencyInjectionSample │ │ │ │ ├── .bowerrc │ │ │ │ ├── wwwroot │ │ │ │ ├── js │ │ │ │ │ └── site.js │ │ │ │ └── favicon.ico │ │ │ │ └── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── Home │ │ │ │ └── About.cshtml │ │ └── _static │ │ │ ├── request-services.png │ │ │ ├── lifetimes_request1.png │ │ │ └── lifetimes_request2.png │ ├── configuration │ │ ├── sample │ │ │ ├── src │ │ │ │ ├── UsingOptions │ │ │ │ │ ├── appsettings.json │ │ │ │ │ └── Models │ │ │ │ │ │ └── MyOptions.cs │ │ │ │ ├── ConfigConsole │ │ │ │ │ └── Properties │ │ │ │ │ │ └── launchSettings.json │ │ │ │ └── CustomConfigurationProvider │ │ │ │ │ └── ConfigurationValue.cs │ │ │ └── global.json │ │ └── _static │ │ │ ├── index-view.png │ │ │ ├── custom-config.png │ │ │ └── config-console.png │ ├── owin │ │ ├── sample │ │ │ ├── global.json │ │ │ └── src │ │ │ │ ├── NowinSample │ │ │ │ └── wwwroot │ │ │ │ │ └── placeholder.html │ │ │ │ ├── OwinSample │ │ │ │ └── wwwroot │ │ │ │ │ └── placeholder.html │ │ │ │ └── NowinWebSockets │ │ │ │ └── wwwroot │ │ │ │ └── placeholder.html │ │ └── _static │ │ │ └── websocket-test.png │ ├── error-handling │ │ ├── sample │ │ │ └── global.json │ │ └── _static │ │ │ ├── default-404-status-code.png │ │ │ ├── developer-exception-page.png │ │ │ ├── developer-exception-page-headers.png │ │ │ └── developer-exception-page-query.png │ ├── static-files │ │ └── _static │ │ │ ├── db2.PNG │ │ │ └── dir-browse.png │ ├── servers │ │ ├── sample │ │ │ └── ServersDemo │ │ │ │ ├── global.json │ │ │ │ └── src │ │ │ │ └── ServersDemo │ │ │ │ └── wwwroot │ │ │ │ └── demo.html │ │ └── _static │ │ │ └── serverdemo-properties.png │ ├── routing │ │ └── _static │ │ │ └── default-mvc-routetemplate.png │ └── file-providers.rst ├── performance │ ├── caching │ │ ├── response-caching │ │ │ ├── sample │ │ │ │ ├── src │ │ │ │ │ └── ResponseCacheSample │ │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── Banner-02-VS.png │ │ │ │ │ │ │ ├── Banner-01-Azure.png │ │ │ │ │ │ │ ├── ASP-NET-Banners-01.png │ │ │ │ │ │ │ └── ASP-NET-Banners-02.png │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ └── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ │ ├── Shared │ │ │ │ │ │ └── Error.cshtml │ │ │ │ │ │ └── Home │ │ │ │ │ │ └── About.cshtml │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ └── proxy-and-cache.png │ │ ├── distributed │ │ │ ├── sample │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ └── SqlServerCacheTable.png │ │ ├── memory │ │ │ └── sample │ │ │ │ ├── global.json │ │ │ │ └── src │ │ │ │ └── CachingSample │ │ │ │ └── Abstractions │ │ │ │ └── IGreetingService.cs │ │ ├── index.rst │ │ └── output.rst │ ├── index.rst │ └── measuring.rst ├── migration │ ├── mvc │ │ ├── samples │ │ │ └── WebApp1 │ │ │ │ └── src │ │ │ │ └── WebApp1 │ │ │ │ ├── .bowerrc │ │ │ │ ├── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── Home │ │ │ │ │ └── About.cshtml │ │ │ │ ├── bower.json │ │ │ │ └── wwwroot │ │ │ │ └── favicon.ico │ │ └── _static │ │ │ ├── search.png │ │ │ ├── view.png │ │ │ ├── new_core.png │ │ │ ├── addExisting.png │ │ │ ├── add_mvc_ctl.png │ │ │ ├── hello-world.png │ │ │ ├── new-project.png │ │ │ ├── add-gulpfile.png │ │ │ ├── contact-page.png │ │ │ ├── show_all_files.png │ │ │ ├── wwwroot-lib-folder.png │ │ │ ├── task-runner-explorer.png │ │ │ ├── updated-gulpfile-with-concat.png │ │ │ ├── new-project-select-mvc-template.png │ │ │ ├── project-structure-controller-view.png │ │ │ └── new-project-select-empty-aspnet5-template.png │ ├── configuration │ │ ├── samples │ │ │ └── WebApp1 │ │ │ │ ├── src │ │ │ │ └── WebApp1 │ │ │ │ │ ├── .bowerrc │ │ │ │ │ ├── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ └── Home │ │ │ │ │ │ └── About.cshtml │ │ │ │ │ ├── bower.json │ │ │ │ │ └── appsettings.json │ │ │ │ └── global.json │ │ └── _static │ │ │ ├── add-config-json.png │ │ │ └── add-appsettings-json.png │ ├── http-modules │ │ ├── sample │ │ │ ├── Asp.Net5 │ │ │ │ ├── src │ │ │ │ │ └── Asp.Net5 │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── favicon.ico │ │ │ │ └── global.json │ │ │ └── Asp.Net4 │ │ │ │ └── Asp.Net4 │ │ │ │ ├── Global.asax │ │ │ │ └── favicon.ico │ │ └── _static │ │ │ ├── middleware.png │ │ │ └── moduleshandlers.png │ ├── webapi │ │ ├── sample │ │ │ ├── ProductsApp │ │ │ │ └── Global.asax │ │ │ └── ProductsCore │ │ │ │ └── appsettings.json │ │ └── _static │ │ │ ├── add-web-project.png │ │ │ ├── aspnet-5-webapi.png │ │ │ └── webapimigration-solution.png │ ├── identity │ │ └── _static │ │ │ └── AddLoginPartial.png │ └── index.rst ├── security │ ├── authentication │ │ ├── 2fa │ │ │ ├── sample │ │ │ │ └── WebSMS │ │ │ │ │ ├── src │ │ │ │ │ └── WebSMS │ │ │ │ │ │ ├── .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 │ │ │ │ │ │ └── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ ├── Shared │ │ │ │ │ │ └── Error.cshtml │ │ │ │ │ │ ├── Home │ │ │ │ │ │ └── About.cshtml │ │ │ │ │ │ ├── Account │ │ │ │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ │ │ │ └── ExternalLoginFailure.cshtml │ │ │ │ │ │ └── _ViewImports.cshtml │ │ │ │ │ ├── global.json │ │ │ │ │ └── NuGet.Config │ │ │ └── _static │ │ │ │ ├── SM1.PNG │ │ │ │ ├── rem.png │ │ │ │ ├── pass1.PNG │ │ │ │ ├── pass2.PNG │ │ │ │ ├── twilio1.png │ │ │ │ ├── first-run.png │ │ │ │ ├── login2fa1.png │ │ │ │ ├── login2fa2.png │ │ │ │ ├── login2fa3.png │ │ │ │ ├── login2fa4.png │ │ │ │ ├── login2fa5.png │ │ │ │ ├── login2fa6.png │ │ │ │ ├── login2fa7.png │ │ │ │ ├── login2fa8.png │ │ │ │ ├── login2fa9.png │ │ │ │ ├── managesecret.png │ │ │ │ ├── new-project.png │ │ │ │ └── select-project.png │ │ ├── accconfirm │ │ │ ├── sample │ │ │ │ └── WebApplication3 │ │ │ │ │ ├── src │ │ │ │ │ └── WebApplication3 │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ └── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ └── Home │ │ │ │ │ │ └── About.cshtml │ │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ ├── au.png │ │ │ │ ├── fb.png │ │ │ │ ├── SM1.PNG │ │ │ │ ├── pass1.PNG │ │ │ │ ├── pass2.PNG │ │ │ │ ├── rick.png │ │ │ │ ├── ssl.png │ │ │ │ ├── ssox.png │ │ │ │ ├── manage.png │ │ │ │ ├── first-run.png │ │ │ │ ├── managesecret.png │ │ │ │ ├── new-project.png │ │ │ │ ├── select-project.png │ │ │ │ ├── loginaccconfirm1.png │ │ │ │ ├── loginaccconfirm2.PNG │ │ │ │ ├── loginaccconfirm3.PNG │ │ │ │ ├── loginaccconfirm4.PNG │ │ │ │ ├── loginaccconfirm5.PNG │ │ │ │ ├── loginaccconfirm6.PNG │ │ │ │ └── loginaccconfirm7.PNG │ │ ├── identity │ │ │ └── _static │ │ │ │ ├── 01-mvc.png │ │ │ │ ├── 02-reg.png │ │ │ │ ├── 04-db.png │ │ │ │ └── 05-dependencies.png │ │ ├── sociallogins │ │ │ └── _static │ │ │ │ ├── ssl.png │ │ │ │ ├── pass1.PNG │ │ │ │ ├── pass2.PNG │ │ │ │ ├── FBApp03.png │ │ │ │ ├── FBApp04.png │ │ │ │ ├── FBApp05.png │ │ │ │ ├── FBApp06.png │ │ │ │ ├── FBApp07.png │ │ │ │ ├── FBApp08.png │ │ │ │ ├── FBLogin1.PNG │ │ │ │ ├── FBLogin2.PNG │ │ │ │ ├── FBLogin3.PNG │ │ │ │ ├── enablessl.png │ │ │ │ ├── managesecret.png │ │ │ │ ├── new-project.png │ │ │ │ ├── new-project2.png │ │ │ │ └── select-project.png │ │ └── index.rst │ ├── cors │ │ └── sample │ │ │ └── global.json │ ├── data-protection │ │ ├── compatibility │ │ │ └── index.rst │ │ ├── extensibility │ │ │ ├── thread-safety-included.txt │ │ │ ├── index.rst │ │ │ └── key-management │ │ │ │ └── _static │ │ │ │ ├── keycreation.png │ │ │ │ └── keyretrieval.png │ │ ├── consumer-apis │ │ │ ├── purpose-strings │ │ │ │ └── _static │ │ │ │ │ └── purposes.png │ │ │ └── purposes-multi-tenancy │ │ │ │ └── _static │ │ │ │ └── purposes-multi-tenancy.png │ │ ├── configuration │ │ │ └── index.rst │ │ └── implementation │ │ │ └── subkeyderivation │ │ │ └── _static │ │ │ ├── cbcprocess.png │ │ │ └── galoisprocess.png │ ├── enforcing-ssl.rst │ ├── anti-request-forgery.rst │ ├── authorization │ │ └── authorization-filters.rst │ ├── open-redirect.rst │ └── cross-site-scripting.rst ├── tutorials │ ├── first-mvc-app │ │ ├── start-mvc │ │ │ ├── sample2 │ │ │ │ └── src │ │ │ │ │ └── MvcMovie │ │ │ │ │ ├── .bowerrc │ │ │ │ │ └── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ ├── Home │ │ │ │ │ └── About.cshtml │ │ │ │ │ └── Account │ │ │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ │ │ └── ExternalLoginFailure.cshtml │ │ │ ├── sample │ │ │ │ └── src │ │ │ │ │ └── MvcMovie │ │ │ │ │ ├── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ ├── HelloWorld │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ └── Index2.cshtml │ │ │ │ │ └── Home │ │ │ │ │ │ └── About.cshtml │ │ │ │ │ └── appsettings.json │ │ │ └── _static │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── p3.png │ │ │ │ ├── p4.png │ │ │ │ ├── debug_menu.png │ │ │ │ ├── iis_express.png │ │ │ │ ├── new_project.png │ │ │ │ ├── new_project2.png │ │ │ │ └── alt_new_project.png │ │ ├── search │ │ │ └── _static │ │ │ │ ├── f12.png │ │ │ │ ├── fo.png │ │ │ │ ├── g2.png │ │ │ │ ├── Thumbs.db │ │ │ │ ├── f12_rb.png │ │ │ │ ├── filter.png │ │ │ │ ├── ghost.png │ │ │ │ ├── int_m.png │ │ │ │ ├── rename.png │ │ │ │ ├── int_get.png │ │ │ │ ├── rename2.png │ │ │ │ ├── rename3.png │ │ │ │ ├── th_font.png │ │ │ │ └── search_get.png │ │ ├── adding-view │ │ │ └── _static │ │ │ │ ├── 1.png │ │ │ │ ├── rick.png │ │ │ │ ├── hell3.png │ │ │ │ ├── add_view.png │ │ │ │ ├── add_view_dlg.png │ │ │ │ └── hell_template.png │ │ ├── new-field │ │ │ └── _static │ │ │ │ ├── cr.png │ │ │ │ └── se.png │ │ ├── validation │ │ │ └── _static │ │ │ │ ├── ff.png │ │ │ │ ├── ms.png │ │ │ │ ├── newsc.png │ │ │ │ ├── val.png │ │ │ │ ├── chrome.png │ │ │ │ └── p8_IE9_disableJavaScript.png │ │ ├── adding-model │ │ │ └── _static │ │ │ │ ├── h.png │ │ │ │ ├── m1.png │ │ │ │ ├── files.png │ │ │ │ ├── indiv.png │ │ │ │ ├── ints.png │ │ │ │ ├── quick.png │ │ │ │ ├── folder.png │ │ │ │ ├── movies.png │ │ │ │ ├── pending.png │ │ │ │ ├── add_class.png │ │ │ │ ├── add_scaffold2.png │ │ │ │ ├── add_controller.png │ │ │ │ └── add_controller2.png │ │ ├── working-with-sql │ │ │ └── _static │ │ │ │ ├── dbg.png │ │ │ │ ├── dv.png │ │ │ │ ├── m55.png │ │ │ │ ├── ssox.png │ │ │ │ ├── vd22.png │ │ │ │ ├── design.png │ │ │ │ ├── ssox2.png │ │ │ │ ├── di_intel.png │ │ │ │ ├── iisExIcon.png │ │ │ │ └── stopIIS.png │ │ ├── adding-controller │ │ │ └── _static │ │ │ │ ├── hell1.png │ │ │ │ ├── mvc1.png │ │ │ │ ├── rick4.png │ │ │ │ ├── welcome.png │ │ │ │ ├── add_controller.png │ │ │ │ └── rick_routedata.png │ │ └── controller-methods-views │ │ │ └── _static │ │ │ ├── 1.png │ │ │ ├── da.png │ │ │ ├── f12.png │ │ │ ├── qa.png │ │ │ ├── rm.png │ │ │ ├── val.png │ │ │ └── edit7.png │ ├── first-web-api │ │ ├── _static │ │ │ ├── put.png │ │ │ ├── delete.png │ │ │ ├── launch.png │ │ │ ├── fiddler1.png │ │ │ ├── fiddler2.png │ │ │ ├── fiddler3.png │ │ │ ├── fiddler4.png │ │ │ ├── add-class.png │ │ │ ├── add-folder.png │ │ │ ├── new-project.png │ │ │ ├── architecture.png │ │ │ └── web-api-project.png │ │ └── sample │ │ │ └── src │ │ │ └── TodoApi │ │ │ └── Models │ │ │ └── TodoItem.cs │ ├── your-first-mac-aspnet │ │ └── _static │ │ │ ├── azure.png │ │ │ ├── file-open.png │ │ │ ├── vscode-git.png │ │ │ ├── azure-portal.png │ │ │ ├── hello-world.png │ │ │ ├── init-commit.png │ │ │ ├── dotnet-restore.png │ │ │ ├── vscode-welcome.png │ │ │ ├── vscode-git-commit.png │ │ │ ├── vscode-startupcs.png │ │ │ └── git-push-azure-master.png │ └── publish-to-azure-webapp-using-vs │ │ └── _static │ │ ├── cas.png │ │ ├── conf.png │ │ ├── mig.png │ │ ├── pub.png │ │ ├── pubc.png │ │ ├── pubs.png │ │ ├── rgd.png │ │ ├── show.png │ │ ├── sql.png │ │ ├── dbrick.png │ │ ├── final.png │ │ ├── hello.png │ │ ├── maas1.png │ │ ├── new_prj.png │ │ ├── newrg1.png │ │ ├── noath.png │ │ ├── create_as.png │ │ └── portalrg.png ├── publishing │ ├── pubIIS │ │ └── _static │ │ │ ├── rs.png │ │ │ ├── wf.png │ │ │ ├── addwebsite.png │ │ │ ├── editapppool.png │ │ │ ├── browsewebsite.png │ │ │ ├── role-services.png │ │ │ ├── addwebsitecontextmenu.png │ │ │ └── apppoolsbasicsettingscontextmenu.png │ ├── web-publishing-vs │ │ └── _static │ │ │ └── image-1b.png │ ├── iis-with-msdeploy │ │ └── _static │ │ │ └── pub-dialog.png │ ├── azure-continuous-deployment │ │ └── _static │ │ │ ├── 11-add-remote.png │ │ │ ├── 01-new-project.png │ │ │ ├── 09-azure-giturl.png │ │ │ ├── 10-team-explorer.png │ │ │ ├── 03-source-control.png │ │ │ ├── 04-browser-runapp.png │ │ │ ├── 05-azure-newwebapp.png │ │ │ ├── 12-initial-commit.png │ │ │ ├── 02-web-site-template.png │ │ │ ├── 06-azure-newappblade.png │ │ │ ├── 07-azure-webappblade.png │ │ │ ├── 13-verify-deployment.png │ │ │ └── 08-azure-localrepository.png │ └── how-to-customize.rst ├── contribute │ └── style-guide │ │ └── _static │ │ └── asp-net.png ├── getting-started │ └── _static │ │ └── running-output.png ├── hosting │ ├── aspnet-core-module │ │ └── ANCM-502_5.png │ └── apppool │ │ └── _static │ │ ├── apppool-adduser.jpg │ │ └── apppool-identity.png ├── testing │ ├── integration-testing │ │ ├── sample │ │ │ ├── global.json │ │ │ └── src │ │ │ │ └── PrimeWeb │ │ │ │ └── Middleware │ │ │ │ └── PrimeCheckerOptions.cs │ │ └── _static │ │ │ └── test-explorer.png │ └── index.rst └── mobile │ └── index.rst ├── webhooks ├── aspnet.inv ├── favicon.ico ├── _static │ └── WebHookReceivers.png ├── receiving │ ├── _static │ │ ├── Handlers.png │ │ └── AzureAppSettings.png │ └── index.rst ├── diagnostics │ ├── _static │ │ ├── SymSource.png │ │ └── SourceSymbols.png │ └── index.rst └── sending │ ├── index.rst │ └── senders.rst └── requirements.txt /common/stub-topic.txt: -------------------------------------------------------------------------------- 1 | .. |stub-icon| unicode:: U+1F527 2 | 3 | 4 | -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/appsettings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ] 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/fundamentals/logging/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ] 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/fundamentals/middleware/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ] 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ] 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/api.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/common/api.inv -------------------------------------------------------------------------------- /aspnet/fundamentals/environments/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ] 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/samples/WebApp1/src/WebApp1/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/models/validation/sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. -------------------------------------------------------------------------------- /common/aspnet.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/common/aspnet.inv -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /webhooks/aspnet.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/webhooks/aspnet.inv -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net5/src/Asp.Net5/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/samples/WebApp1/src/WebApp1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /webhooks/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/webhooks/favicon.ico -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Demo/Index.cshtml: -------------------------------------------------------------------------------- 1 |

Index Page

2 | 3 |

@ViewData["Message"]

-------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample2/src/MvcMovie/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /common/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/common/_static/favicon.ico -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample2/src/MvcMovie/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/samples/WebApp1/src/WebApp1/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 2 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Home/IndexSuccess.cshtml: -------------------------------------------------------------------------------- 1 |

IndexSuccess Page

2 | 3 |

@ViewData["Message"]

-------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/sample/WebApplication3/src/WebApplication3/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/sample/WebApplication3/src/WebApplication3/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /common/_static/nav-logo-aspnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/common/_static/nav-logo-aspnet.png -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/sample/src/UsingOptions/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "option1": "value1_from_json", 3 | "option2": 2 4 | } 5 | -------------------------------------------------------------------------------- /aspnet/fundamentals/environments/sample/src/Environments/wwwroot/placeholder.txt: -------------------------------------------------------------------------------- 1 | Placefolder file to ensure the existing of wwwroot folder. -------------------------------------------------------------------------------- /aspnet/mvc/models/validation/sample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MVCMovie.Models 2 | @addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers" -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Home/MyModel.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | var model = new MyModel(); 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/search.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/view.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/testing/sample/TestingControllersSample/src/TestingControllersSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/_static/grp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/forms/_static/grp.png -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using FormsTagHelper.ViewModels 2 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/rs.png -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/wf.png -------------------------------------------------------------------------------- /common/_static/nav-logo-microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/common/_static/nav-logo-microsoft.png -------------------------------------------------------------------------------- /webhooks/_static/WebHookReceivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/webhooks/_static/WebHookReceivers.png -------------------------------------------------------------------------------- /webhooks/receiving/_static/Handlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/webhooks/receiving/_static/Handlers.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/personModule.js: -------------------------------------------------------------------------------- 1 | var personApp = angular.module('personApp', ['ngRoute']); -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/new_core.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/authoring/sample/AuthoringTagHelpers/src/AuthoringTagHelpers/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/sample/WebApplication3/src/WebApplication3/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /common/samples/ConsoleApp1/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003118" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/scope.png -------------------------------------------------------------------------------- /aspnet/fundamentals/owin/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net5/src/Asp.Net5/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ASP.NET", 3 | "private": true, 4 | "dependencies": {} 5 | } 6 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/addExisting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/addExisting.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/add_mvc_ctl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/add_mvc_ctl.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/hello-world.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/_static/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/partial/_static/output.png -------------------------------------------------------------------------------- /aspnet/security/cors/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-final" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/samples/ClassLibrary1/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003118" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/samples/WebApplication1/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003118" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /webhooks/diagnostics/_static/SymSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/webhooks/diagnostics/_static/SymSource.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/events.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/jumbotron.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/hosting.json: -------------------------------------------------------------------------------- 1 | { 2 | "server": "Microsoft.AspNet.Server.Kestrel", 3 | "server.urls": "http://localhost:5000" 4 | } 5 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/add-gulpfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/add-gulpfile.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/contact-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/contact-page.png -------------------------------------------------------------------------------- /aspnet/migration/webapi/sample/ProductsApp/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ProductsApp.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Demo/RegisterRoute.cshtml: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /aspnet/performance/index.rst: -------------------------------------------------------------------------------- 1 | Performance 2 | ----------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | measuring 8 | caching/index 9 | 10 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MvcMovie 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/put.png -------------------------------------------------------------------------------- /webhooks/diagnostics/_static/SourceSymbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/webhooks/diagnostics/_static/SourceSymbols.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/repeater.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/repeaters2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/repeaters2.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/rest-bound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/rest-bound.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/add-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/add-package.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/mvc-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/mvc-project.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/package-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/package-lib.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/semver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/semver.png -------------------------------------------------------------------------------- /aspnet/contribute/style-guide/_static/asp-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/contribute/style-guide/_static/asp-net.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-update1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/hola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/localization/_static/hola.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/localization/_static/lang.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/newi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/localization/_static/newi.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/localization/_static/res.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/localization/_static/se.png -------------------------------------------------------------------------------- /aspnet/fundamentals/static-files/_static/db2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/static-files/_static/db2.PNG -------------------------------------------------------------------------------- /aspnet/getting-started/_static/running-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/getting-started/_static/running-output.png -------------------------------------------------------------------------------- /aspnet/hosting/aspnet-core-module/ANCM-502_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/hosting/aspnet-core-module/ANCM-502_5.png -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-final" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net4/Asp.Net4/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Asp.Net4.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net5/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-update1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/show_all_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/show_all_files.png -------------------------------------------------------------------------------- /aspnet/mvc/views/layout/_static/page-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/layout/_static/page-layout.png -------------------------------------------------------------------------------- /aspnet/mvc/views/overview/_static/about-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/overview/_static/about-page.png -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using PartialViewsSample 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/th.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/2dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/view-components/_static/2dos.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/view-components/_static/p2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/view-components/_static/pi.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/pvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/view-components/_static/pvc.png -------------------------------------------------------------------------------- /aspnet/performance/caching/distributed/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-update1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/performance/caching/memory/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview1-002702" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/addwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/addwebsite.png -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/editapppool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/editapppool.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-beta8" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/testing/integration-testing/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/delete.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/launch.png -------------------------------------------------------------------------------- /webhooks/receiving/_static/AzureAppSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/webhooks/receiving/_static/AzureAppSettings.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/controllers.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/spa-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/spa-persons.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-update1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/jumbotron.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/empty-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/empty-project.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/photo-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/photo-gallery.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/simp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/localization/_static/simp2.png -------------------------------------------------------------------------------- /aspnet/fundamentals/owin/_static/websocket-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/owin/_static/websocket-test.png -------------------------------------------------------------------------------- /aspnet/hosting/apppool/_static/apppool-adduser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/hosting/apppool/_static/apppool-adduser.jpg -------------------------------------------------------------------------------- /aspnet/hosting/apppool/_static/apppool-identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/hosting/apppool/_static/apppool-identity.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/wwwroot-lib-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/wwwroot-lib-folder.png -------------------------------------------------------------------------------- /aspnet/migration/webapi/_static/add-web-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/webapi/_static/add-web-project.png -------------------------------------------------------------------------------- /aspnet/migration/webapi/_static/aspnet-5-webapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/webapi/_static/aspnet-5-webapi.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-final" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/samplewebsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Title": "Dependency Injection in Controllers", 3 | "Updates": "2" 4 | } -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003102" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/bang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/bang.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/thp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/thp.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/shared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/view-components/_static/shared.png -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-update1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/browsewebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/browsewebsite.png -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/role-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/role-services.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/SM1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/SM1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/rem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/rem.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/fiddler1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/fiddler1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/fiddler2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/fiddler2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/fiddler3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/fiddler3.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/fiddler4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/fiddler4.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/spa-persons-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/spa-persons-2.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/input-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/input-groups.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/theme-alerts.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/theme-badges.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/theme-buttons.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-navbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/theme-navbars.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/bower-knockout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/bower-knockout.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/alias-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/alias-tasks.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/task-binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/task-binding.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/dotnet-build-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/dotnet-build-run.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/dotnet-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/dotnet-restore.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/yeoman-home-page.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/yeoman-solution.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-yo-aspnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/yeoman-yo-aspnet.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/newproj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/localization/_static/newproj.png -------------------------------------------------------------------------------- /aspnet/fundamentals/servers/sample/ServersDemo/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-rc1-final" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/migration/http-modules/_static/middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/http-modules/_static/middleware.png -------------------------------------------------------------------------------- /aspnet/migration/identity/_static/AddLoginPartial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/identity/_static/AddLoginPartial.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/task-runner-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/task-runner-explorer.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/_static/add-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/controllers/filters/_static/add-header.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/json-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/_static/json-response.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/text-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/_static/text-response.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/xml-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/_static/xml-response.png -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/dependency-injection/_static/stat.png -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Shared/EditorTemplates/String.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /aspnet/mvc/views/layout/_static/web-project-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/layout/_static/web-project-views.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/1stName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/1stName.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/class.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/fname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/fname.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/iclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/iclass.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/intel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/intel3.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/label.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/label2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/label2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelVM.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/model.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/options.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/regCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/regCS.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/regTH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/regTH.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/tagSym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/tagSym.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/pass1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/pass1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/pass2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/pass2.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/twilio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/twilio1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/f12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/f12.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/fo.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/g2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/g2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/add-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/add-class.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/add-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/add-folder.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/new-project.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx==1.4.1 2 | sphinx-rtd-theme 3 | sphinx-autobuild 4 | git+git://github.com/danroth27/yasfb-py3 5 | git+git://github.com/rtfd/sphinxcontrib-dotnetdomain 6 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-directive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/simple-directive.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/partials/personlist.html: -------------------------------------------------------------------------------- 1 |
2 |

PERSONS PAGE

3 | 4 |
-------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/about-page-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/about-page-wide.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-inspinia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/theme-inspinia.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-tabstrips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/theme-tabstrips.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/bower-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/bower-dependencies.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/wwwroot-knockout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/wwwroot-knockout.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/node-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/node-modules.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/watch-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/watch-running.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/task-runner-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/task-runner-1.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/task-runner-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/task-runner-2.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/task-runner-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/task-runner-3.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/_static/index-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/configuration/_static/index-view.png -------------------------------------------------------------------------------- /aspnet/fundamentals/static-files/_static/dir-browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/static-files/_static/dir-browse.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using ResponseFormattingSample 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelattr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelattr.png -------------------------------------------------------------------------------- /aspnet/publishing/web-publishing-vs/_static/image-1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/web-publishing-vs/_static/image-1b.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/first-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/first-run.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa1.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa2.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa3.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa4.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa5.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa6.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa7.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa8.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/login2fa9.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/au.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/fb.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/new-field/_static/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/new-field/_static/cr.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/new-field/_static/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/new-field/_static/se.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/Thumbs.db -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/f12_rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/f12_rb.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/filter.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/ghost.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/int_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/int_m.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/rename.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/p3.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/p4.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/ff.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/ms.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/architecture.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/azure.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-databinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/simple-databinding.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-expressions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/simple-expressions.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-templates-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/simple-templates-1.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-templates-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/simple-templates-2.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/personApp.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | var app = angular.module('PersonsApp', []); 4 | })(); -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-glyphicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/theme-glyphicons.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/manage-bower-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/manage-bower-packages.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/version-intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bower/_static/version-intellisense.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/record-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/record-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/add-less-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/less-sass-fa/_static/add-less-file.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/add-scss-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/less-sass-fa/_static/add-scss-file.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/restore-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/restore-packages.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/01-NewProjectDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/01-NewProjectDB.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/08-IntelliSense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/08-IntelliSense.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-home-page_5000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/yeoman-home-page_5000.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/_static/custom-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/configuration/_static/custom-config.png -------------------------------------------------------------------------------- /aspnet/migration/configuration/_static/add-config-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/configuration/_static/add-config-json.png -------------------------------------------------------------------------------- /aspnet/migration/http-modules/_static/moduleshandlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/http-modules/_static/moduleshandlers.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/fiddler-composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/_static/fiddler-composer.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/LableHtmlTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/LableHtmlTag.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/fontoptions2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/fontoptions2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/intelclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/intelclass.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/intellemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/intellemail.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor.PNG -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/stmtcomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/stmtcomplete.png -------------------------------------------------------------------------------- /aspnet/performance/caching/index.rst: -------------------------------------------------------------------------------- 1 | Caching 2 | ------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | memory 8 | distributed 9 | response 10 | output 11 | 12 | -------------------------------------------------------------------------------- /aspnet/publishing/iis-with-msdeploy/_static/pub-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/iis-with-msdeploy/_static/pub-dialog.png -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/addwebsitecontextmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/addwebsitecontextmenu.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/managesecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/managesecret.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/SM1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/SM1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/pass1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/pass1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/pass2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/pass2.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/rick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/rick.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/ssl.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/ssox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/ssox.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/01-mvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/identity/_static/01-mvc.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/02-reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/identity/_static/02-reg.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/04-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/identity/_static/04-db.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/ssl.png -------------------------------------------------------------------------------- /aspnet/security/data-protection/compatibility/index.rst: -------------------------------------------------------------------------------- 1 | Compatibility 2 | ------------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | cookie-sharing 8 | replacing-machinekey -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/h.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/m1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/rick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/rick.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/int_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/int_get.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/rename2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/rename2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/rename3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/rename3.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/th_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/th_font.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/newsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/newsc.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/val.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/web-api-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-web-api/_static/web-api-project.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/about-page-hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/about-page-hamburger.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/bootstrap-in-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/bootstrap-in-layout.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/hyperlink-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/hyperlink-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/folder-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/less-sass-fa/_static/folder-structure.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/less-task-runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/less-sass-fa/_static/less-task-runner.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/main-css-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/less-sass-fa/_static/main-css-created.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/typescript-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/typescript-options.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/04-TaskRunner-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/04-TaskRunner-clean.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/06-TaskRunner-First.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/06-TaskRunner-First.png -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/_static/session-established.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/app-state/_static/session-established.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/_static/config-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/configuration/_static/config-console.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using DependencyInjectionSample 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/fundamentals/logging/_static/console-logger-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/logging/_static/console-logger-output.png -------------------------------------------------------------------------------- /aspnet/fundamentals/middleware/_static/console-loginline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/middleware/_static/console-loginline.png -------------------------------------------------------------------------------- /aspnet/fundamentals/servers/_static/serverdemo-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/servers/_static/serverdemo-properties.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/updated-gulpfile-with-concat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/updated-gulpfile-with-concat.png -------------------------------------------------------------------------------- /aspnet/migration/webapi/_static/webapimigration-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/webapi/_static/webapimigration-solution.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/_static/filter-pipeline-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/controllers/filters/_static/filter-pipeline-1.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/_static/filter-pipeline-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/controllers/filters/_static/filter-pipeline-2.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/testing/sample/TestingControllersSample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/dependency-injection/_static/screenshot.png -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Demo/RegisterFormOnly.cshtml: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /aspnet/mvc/views/overview/_static/views_solution_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/overview/_static/views_solution_explorer.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/_static/select-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/manage.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/sample/WebApplication3/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview1-002702" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/pass1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/pass1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/pass2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/pass2.PNG -------------------------------------------------------------------------------- /aspnet/security/data-protection/extensibility/thread-safety-included.txt: -------------------------------------------------------------------------------- 1 | .. WARNING:: 2 | Types that implement any of the following interfaces should be thread-safe for multiple callers. 3 | -------------------------------------------------------------------------------- /aspnet/testing/integration-testing/_static/test-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/testing/integration-testing/_static/test-explorer.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/files.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/indiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/indiv.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/ints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/ints.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/quick.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/hell3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/hell3.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/search_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/search/_static/search_get.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/chrome.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/file-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/file-open.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/vscode-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/vscode-git.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/angular-solution-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/_static/angular-solution-explorer.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/grid-without-clearfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/grid-without-clearfix.png -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview1-002702" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/editable-grid-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/editable-grid-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/input-binding-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/input-binding-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/less-test-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/less-sass-fa/_static/less-test-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/bindings-project-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/bindings-project-open.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/devdependencies-grunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/devdependencies-grunt.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/gruntfile-js-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/gruntfile-js-complete.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/gruntfile-js-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/gruntfile-js-initial.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/03-TaskRunnerExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/03-TaskRunnerExplorer.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/07-TaskRunner-Series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/07-TaskRunner-Series.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/running-default-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/running-default-task.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-yo-aspnet-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/yeoman-yo-aspnet-created.png -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/_static/no-session-established.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/app-state/_static/no-session-established.png -------------------------------------------------------------------------------- /aspnet/fundamentals/middleware/_static/console-logmiddleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/middleware/_static/console-logmiddleware.png -------------------------------------------------------------------------------- /aspnet/migration/configuration/_static/add-appsettings-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/configuration/_static/add-appsettings-json.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new-project-select-mvc-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/new-project-select-mvc-template.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/json-response-fiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/_static/json-response-fiddler.png -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/razor-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/dependency-injection/_static/razor-fields.png -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/updateprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/dependency-injection/_static/updateprofile.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/first-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/first-run.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp03.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp04.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp05.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp06.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp07.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp08.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBLogin1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBLogin1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBLogin2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBLogin2.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBLogin3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/FBLogin3.PNG -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/folder.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/movies.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/pending.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/add_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/add_view.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/debug_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/debug_menu.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/iis_express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/iis_express.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/new_project.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/dbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/dbg.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/dv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/dv.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/m55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/m55.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/vd22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/vd22.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/azure-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/azure-portal.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/hello-world.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/init-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/init-commit.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using AngularSample 2 | @using AngularSample.Models 3 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" 4 | -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/about-page-hamburger-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/about-page-hamburger-open.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/hyperlink-caps-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/hyperlink-caps-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/record-winloss-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/record-winloss-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/simple-binding-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/simple-binding-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/list-icons-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/less-sass-fa/_static/list-icons-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/grunt-solution-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/grunt-solution-explorer.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-loading-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/yeoman/_static/yeoman-loading-dependencies.png -------------------------------------------------------------------------------- /aspnet/fundamentals/routing/_static/default-mvc-routetemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/routing/_static/default-mvc-routetemplate.png -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net4/Asp.Net4/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/http-modules/sample/Asp.Net4/Asp.Net4/favicon.ico -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/project-structure-controller-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/project-structure-controller-view.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/samples/WebApp1/src/WebApp1/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "asp.net", 3 | "private": true, 4 | "dependencies": { 5 | "bootstrap": "3.3.6", 6 | "jquery": "2.2.0" 7 | } 8 | } -------------------------------------------------------------------------------- /aspnet/mobile/index.rst: -------------------------------------------------------------------------------- 1 | Mobile 2 | ------ 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | /client-side/responsive-design 8 | /mvc/views/mobile 9 | native-mobile-backend 10 | 11 | -------------------------------------------------------------------------------- /aspnet/mvc/index.rst: -------------------------------------------------------------------------------- 1 | .. _mvc: 2 | 3 | MVC 4 | === 5 | 6 | .. toctree:: 7 | :titlesonly: 8 | 9 | overview 10 | models/index 11 | views/index 12 | controllers/index 13 | -------------------------------------------------------------------------------- /aspnet/mvc/models/validation/sample/IUserRepository.cs: -------------------------------------------------------------------------------- 1 | namespace MVCMovie.Controllers 2 | { 3 | public interface IUserRepository 4 | { 5 | bool VerifyEmail(string email); 6 | } 7 | } -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/ViewModels/MyModel.cs: -------------------------------------------------------------------------------- 1 | namespace FormsTagHelper.ViewModels 2 | { 3 | public class MyModel 4 | { 5 | public string Name { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/managesecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/managesecret.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/enablessl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/enablessl.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/hell1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/hell1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/mvc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/mvc1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/rick4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/rick4.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/add_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_class.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/new_project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/new_project2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/design.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox2.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/cas.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/mig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/mig.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pub.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pubc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pubc.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pubs.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/rgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/rgd.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/show.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/sql.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/dotnet-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/dotnet-restore.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/vscode-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/vscode-welcome.png -------------------------------------------------------------------------------- /webhooks/sending/index.rst: -------------------------------------------------------------------------------- 1 | Sending WebHooks 2 | ---------------- 3 | 4 | .. include:: /../common/stub-overview.txt 5 | 6 | .. toctree:: 7 | :titlesonly: 8 | 9 | senders 10 | 11 | -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/record-addresult-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/knockout/_static/record-addresult-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/task-runner-explorer-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-menu.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/task-runner-explorer-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-tasks.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/05-TaskRunner-BeforeBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/05-TaskRunner-BeforeBuild.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/_static/request-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/dependency-injection/_static/request-services.png -------------------------------------------------------------------------------- /aspnet/fundamentals/environments/_static/project-properties-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/environments/_static/project-properties-debug.png -------------------------------------------------------------------------------- /aspnet/fundamentals/logging/_static/console-logger-trace-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/logging/_static/console-logger-trace-output.png -------------------------------------------------------------------------------- /aspnet/fundamentals/logging/_static/trace-source-console-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/logging/_static/trace-source-console-output.png -------------------------------------------------------------------------------- /aspnet/fundamentals/middleware/_static/request-delegate-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/middleware/_static/request-delegate-pipeline.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/samples/WebApp1/src/WebApp1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/samples/WebApp1/src/WebApp1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/mvc/models/index.rst: -------------------------------------------------------------------------------- 1 | Models 2 | ------ 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | model-binding 8 | validation 9 | formatting 10 | custom-formatters 11 | 12 | -------------------------------------------------------------------------------- /aspnet/publishing/pubIIS/_static/apppoolsbasicsettingscontextmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/pubIIS/_static/apppoolsbasicsettingscontextmenu.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/select-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/05-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/identity/_static/05-dependencies.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/managesecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/managesecret.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/new-project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/new-project2.png -------------------------------------------------------------------------------- /aspnet/security/data-protection/extensibility/index.rst: -------------------------------------------------------------------------------- 1 | Extensibility APIs 2 | ------------------ 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | core-crypto 8 | key-management 9 | misc-apis -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/welcome.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/add_scaffold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_scaffold2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/add_view_dlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/add_view_dlg.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/hell_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/hell_template.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/alt_new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/alt_new_project.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/HelloWorld/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Index"; 3 | } 4 | 5 |

Index

6 | 7 |

Hello from our View Template!

-------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/di_intel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/di_intel.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/iisExIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/iisExIcon.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/stopIIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/stopIIS.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/dbrick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/dbrick.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/final.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/hello.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/maas1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/maas1.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/new_prj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/new_prj.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/newrg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/newrg1.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/noath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/noath.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/vscode-git-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/vscode-git-commit.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/vscode-startupcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/vscode-startupcs.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/partials/persondetail.html: -------------------------------------------------------------------------------- 1 |
2 |

PERSON DETAIL

3 | Person ID {{personId}} 4 |
-------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/bootstrap-in-starter-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/bootstrap-in-starter-template.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/narrow-and-wide-viewport-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bootstrap/_static/narrow-and-wide-viewport-grid.png -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/_static/session-after-response-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/app-state/_static/session-after-response-error.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/_static/lifetimes_request1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/dependency-injection/_static/lifetimes_request1.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/_static/lifetimes_request2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/dependency-injection/_static/lifetimes_request2.png -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/default-404-status-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/error-handling/_static/default-404-status-code.png -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/developer-exception-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/error-handling/_static/developer-exception-page.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/_static/server-greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/controllers/dependency-injection/_static/server-greeting.png -------------------------------------------------------------------------------- /aspnet/performance/caching/distributed/_static/SqlServerCacheTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/performance/caching/distributed/_static/SqlServerCacheTable.png -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/_static/proxy-and-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/performance/caching/response-caching/_static/proxy-and-cache.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/11-add-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/11-add-remote.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm1.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm2.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm3.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm4.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm5.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm6.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm7.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/sociallogins/_static/select-project.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/add_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_controller.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/add_controller2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_controller2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/da.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/f12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/f12.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/qa.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/rm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/rm.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/val.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/create_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/create_as.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/portalrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/portalrg.png -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/common/samples/WebApplication1/src/WebApplication1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /webhooks/diagnostics/index.rst: -------------------------------------------------------------------------------- 1 | Diagnostics 2 | ----------- 3 | 4 | .. include:: /../common/stub-overview.txt 5 | 6 | .. toctree:: 7 | :titlesonly: 8 | 9 | logging 10 | debugging 11 | 12 | -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/task-runner-explorer-run-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-run-clean.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new-project-select-empty-aspnet5-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/mvc/_static/new-project-select-empty-aspnet5-template.png -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/views/partial/sample/src/PartialViewsSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/01-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/01-new-project.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/09-azure-giturl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/09-azure-giturl.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/10-team-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/10-team-explorer.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/edit7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/edit7.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/git-push-azure-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/git-push-azure-master.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/solution-explorer-after-all-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/solution-explorer-after-all-tasks.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/Resources/SharedResource.cs: -------------------------------------------------------------------------------- 1 | // Dummy class to group shared resources 2 | 3 | namespace Localization.StarterWeb 4 | { 5 | public class SharedResource 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/03-source-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/03-source-control.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/04-browser-runapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/04-browser-runapp.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/05-azure-newwebapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/05-azure-newwebapp.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/12-initial-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/12-initial-commit.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/add_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/add_controller.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/rick_routedata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/rick_routedata.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/HelloWorld/Index2.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Movie List"; 3 | } 4 | 5 |

My Movie List

6 | 7 |

Hello from our View Template!

-------------------------------------------------------------------------------- /common/_templates/footer.html: -------------------------------------------------------------------------------- 1 | {% extends "!footer.html" %} 2 | 3 | {%- block extrafooter %} 4 | Documentation licensed under CC BY 4.0. 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/_static/task-runner-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bundling-and-minification/_static/task-runner-explorer.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/task-runner-explorer-run-each-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-run-each-task.png -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/developer-exception-page-headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/error-handling/_static/developer-exception-page-headers.png -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/developer-exception-page-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/error-handling/_static/developer-exception-page-query.png -------------------------------------------------------------------------------- /aspnet/fundamentals/owin/sample/src/NowinSample/wwwroot/placeholder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /aspnet/fundamentals/owin/sample/src/OwinSample/wwwroot/placeholder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net5/src/Asp.Net5/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/migration/http-modules/sample/Asp.Net5/src/Asp.Net5/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 |

A Message From The Server

5 |

6 | @ViewData["Message"] 7 |

-------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/Views/Articles/ArticleSection.cshtml: -------------------------------------------------------------------------------- 1 | @using PartialViewsSample.ViewModels 2 | @model ArticleSection 3 | 4 |

@Model.Title

5 |
6 | @Model.Content 7 |
-------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/Views/Articles/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Articles"; 3 | } 4 |

@ViewData["Title"].

5 | 6 |

Read Article

7 | -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/Views/Shared/AuthorPartial.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 |
3 |

@Model

4 | This partial view came from /Views/Shared/AuthorPartial.cshtml.
5 |
6 | -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/02-web-site-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/02-web-site-template.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/06-azure-newappblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/06-azure-newappblade.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/07-azure-webappblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/07-azure-webappblade.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/13-verify-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/13-verify-deployment.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/p8_IE9_disableJavaScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/p8_IE9_disableJavaScript.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/02-SolutionExplorer-TaskRunnerExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/using-gulp/_static/02-SolutionExplorer-TaskRunnerExplorer.png -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/_static/session-established-with-request-counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/app-state/_static/session-established-with-request-counts.png -------------------------------------------------------------------------------- /aspnet/fundamentals/owin/sample/src/NowinWebSockets/wwwroot/placeholder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ASP.NET", 3 | "private": true, 4 | "dependencies": { 5 | "bootstrap": "3.3.5", 6 | "jquery": "2.1.4" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using ResponseCacheSample 2 | @using Microsoft.Extensions.OptionsModel 3 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" 4 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/personListController.js: -------------------------------------------------------------------------------- 1 | personApp.controller('personListController', function ($scope) { 2 | $scope.message = "You are on the Persons List Page."; 3 | }) -------------------------------------------------------------------------------- /aspnet/fundamentals/servers/sample/ServersDemo/src/ServersDemo/wwwroot/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /aspnet/migration/index.rst: -------------------------------------------------------------------------------- 1 | Migration 2 | ----------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | mvc 8 | configuration 9 | identity 10 | webapi 11 | http-modules 12 | rc1-to-rtm 13 | rc2-to-rtm 14 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/Views/Settings/Index.cshtml: -------------------------------------------------------------------------------- 1 |

Configuration Settings

2 |

3 | Site Title: @ViewData["Title"] 4 |

5 |

6 | Updates: @ViewData["Updates"] 7 |

-------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/08-azure-localrepository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/publishing/azure-continuous-deployment/_static/08-azure-localrepository.png -------------------------------------------------------------------------------- /aspnet/security/data-protection/consumer-apis/purpose-strings/_static/purposes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/data-protection/consumer-apis/purpose-strings/_static/purposes.png -------------------------------------------------------------------------------- /aspnet/security/data-protection/extensibility/key-management/_static/keycreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/data-protection/extensibility/key-management/_static/keycreation.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |

Error.

6 |

An error occurred while processing your request.

7 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/samples/WebApp1/src/WebApp1/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/ViewModels/CountryEnumViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace FormsTagHelper.ViewModels 2 | { 3 | public class CountryEnumViewModel 4 | { 5 | public CountryEnum EnumCountry { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Shared/EditorTemplates/CountryViewModel.cshtml: -------------------------------------------------------------------------------- 1 | @model CountryViewModel 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/Views/Home/AuthorPartial.cshtml: -------------------------------------------------------------------------------- 1 |
2 |

Steve Smith

3 | Some bio info here. Follow me at twitter.com/ardalis 4 |
5 | -------------------------------------------------------------------------------- /aspnet/mvc/views/razor.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Razor Syntax 4 | ======================== 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/130 9 | -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/index.rst: -------------------------------------------------------------------------------- 1 | .. _tag-helpers-index: 2 | 3 | Tag Helpers 4 | ----------- 5 | 6 | .. toctree:: 7 | :titlesonly: 8 | 9 | intro 10 | /mvc/views/working-with-forms 11 | authoring 12 | -------------------------------------------------------------------------------- /aspnet/security/data-protection/configuration/index.rst: -------------------------------------------------------------------------------- 1 | Configuration 2 | ------------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | overview 8 | default-settings 9 | machine-wide-policy 10 | non-di-scenarios -------------------------------------------------------------------------------- /aspnet/security/data-protection/extensibility/key-management/_static/keyretrieval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/data-protection/extensibility/key-management/_static/keyretrieval.png -------------------------------------------------------------------------------- /aspnet/security/data-protection/implementation/subkeyderivation/_static/cbcprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/data-protection/implementation/subkeyderivation/_static/cbcprocess.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/sample/src/ConfigConsole/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "ConfigConsole": { 4 | "commandName": "Project", 5 | "commandLineArgs": "--username Steve" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Data": { 3 | "DefaultConnection": { 4 | "ConnectionString": "Server=(localdb)\\MSSQLLocalDB;Database=_CHANGE_ME;Trusted_Connection=True;" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/authoring/sample/AuthoringTagHelpers/src/AuthoringTagHelpers/Views/_ViewImportsCopy.cshtml: -------------------------------------------------------------------------------- 1 | @using AuthoringTagHelpers 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | @addTagHelper "*, AuthoringTagHelpers" -------------------------------------------------------------------------------- /aspnet/security/data-protection/implementation/subkeyderivation/_static/galoisprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/data-protection/implementation/subkeyderivation/_static/galoisprocess.png -------------------------------------------------------------------------------- /aspnet/security/enforcing-ssl.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Enforcing SSL 4 | ========================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/135 -------------------------------------------------------------------------------- /webhooks/receiving/index.rst: -------------------------------------------------------------------------------- 1 | Receiving WebHooks 2 | ------------------ 3 | 4 | .. include:: /../common/stub-overview.txt 5 | 6 | .. toctree:: 7 | :titlesonly: 8 | 9 | receivers 10 | handlers 11 | dependencies 12 | 13 | -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/performance/caching/memory/sample/src/CachingSample/Abstractions/IGreetingService.cs: -------------------------------------------------------------------------------- 1 | namespace CachingSample.Abstractions 2 | { 3 | public interface IGreetingService 4 | { 5 | string Greet(string recipient); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/scope.js: -------------------------------------------------------------------------------- 1 | var personApp = angular.module('personApp', []); 2 | personApp.controller('personController', ['$scope', function ($scope) { 3 | $scope.name = 'Mary Jane'; 4 | }]); -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/sample/src/AppState/Model/RequestEntry.cs: -------------------------------------------------------------------------------- 1 | namespace AppState.Model 2 | { 3 | public class RequestEntry 4 | { 5 | public string Path { get; set; } 6 | public int Count { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/fundamentals/file-providers.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| File Providers 4 | ========================== 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/206 -------------------------------------------------------------------------------- /aspnet/mvc/models/validation/sample/Genre.cs: -------------------------------------------------------------------------------- 1 | namespace MVCMovie.Models 2 | { 3 | public enum Genre 4 | { 5 | Classic, 6 | PostClassic, 7 | Modern, 8 | PostModern, 9 | Contemporary, 10 | } 11 | } -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/Interfaces/IDateTime.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ControllerDI.Interfaces 4 | { 5 | public interface IDateTime 6 | { 7 | DateTime Now { get; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aspnet/mvc/models/custom-formatters.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Custom Formatters 4 | ============================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/139 -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /aspnet/mvc/overview.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Overview of ASP.NET MVC 4 | =================================== 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/113 9 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Demo/RegisterLabel.cshtml: -------------------------------------------------------------------------------- 1 | @model SimpleViewModel 2 | 3 |
4 | 5 |
6 |
-------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |

Error.

6 |

An error occurred while processing your request.

7 | -------------------------------------------------------------------------------- /aspnet/security/authentication/index.rst: -------------------------------------------------------------------------------- 1 | Authentication 2 | -------------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | identity 8 | sociallogins 9 | accconfirm 10 | 2fa 11 | oauth2 12 | cookie 13 | azure-active-directory/index 14 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |

Error.

6 |

An error occurred while processing your request.

7 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/sample/src/UsingOptions/Models/MyOptions.cs: -------------------------------------------------------------------------------- 1 | namespace UsingOptions.Models 2 | { 3 | public class MyOptions 4 | { 5 | public string Option1 { get; set; } 6 | public int Option2 { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |

Error.

6 |

An error occurred while processing your request.

7 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/ViewModels/DescriptionViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | 3 | public class DescriptionViewModel 4 | { 5 | [MinLength(5)] 6 | [MaxLength(1024)] 7 | public string Description { get; set; } 8 | } -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/ViewModels/ToDoItem.cs: -------------------------------------------------------------------------------- 1 | namespace FormsTagHelper.ViewModels 2 | { 3 | public class ToDoItem 4 | { 5 | public string Name { get; set; } 6 | 7 | public bool IsDone { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/ASP-NET-Banners-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/ASP-NET-Banners-01.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/ASP-NET-Banners-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/ASP-NET-Banners-02.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample2/src/MvcMovie/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Forgot Password Confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Please check your email to reset your password. 8 |

9 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/index.rst: -------------------------------------------------------------------------------- 1 | Controllers 2 | ----------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | actions 8 | routing 9 | filters 10 | dependency-injection 11 | testing 12 | areas 13 | application-model 14 | 15 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Home/IndexEmptyTemplate.cshtml: -------------------------------------------------------------------------------- 1 | @model CountryViewModel 2 | 3 |
4 | @Html.EditorForModel() 5 |
6 |
7 | -------------------------------------------------------------------------------- /aspnet/mvc/views/html-helpers.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| HTML Helpers 4 | =========================================== 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/131 9 | -------------------------------------------------------------------------------- /aspnet/performance/caching/output.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Output Caching 4 | ======================================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/880 9 | -------------------------------------------------------------------------------- /aspnet/security/anti-request-forgery.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Anti-Request Forgery 4 | ================================ 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/89 9 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/NuGet.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/ASP-NET-Banners-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/ASP-NET-Banners-01.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/ASP-NET-Banners-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/ASP-NET-Banners-02.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewData["Title"].

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /aspnet/migration/webapi/sample/ProductsCore/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Verbose", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/ASP-NET-Banners-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/ASP-NET-Banners-01.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/ASP-NET-Banners-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/images/ASP-NET-Banners-02.png -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |

Error.

6 |

An error occurred while processing your request.

7 | -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/sample/WebApplication3/src/WebApplication3/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/authentication/accconfirm/sample/WebApplication3/src/WebApplication3/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/security/data-protection/consumer-apis/purposes-multi-tenancy/_static/purposes-multi-tenancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/security/data-protection/consumer-apis/purposes-multi-tenancy/_static/purposes-multi-tenancy.png -------------------------------------------------------------------------------- /webhooks/sending/senders.rst: -------------------------------------------------------------------------------- 1 | WebHook Senders 2 | =============== 3 | 4 | Please see the blog `Sending WebHooks with ASP.NET WebHooks Preview 5 | `_ for more details. 6 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/personDetailController.js: -------------------------------------------------------------------------------- 1 | personApp.controller('personDetailController', ['$scope', '$routeParams', 2 | function($scope, $routeParams) { 3 | $scope.personId = $routeParams.personId; 4 | }]); 5 | -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/sample/src/FiltersSample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Filters Sample 6 | 7 | 8 |
9 |

Filters Sample

10 |
11 | 12 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Forgot Password Confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Please check your email to reset your password. 8 |

9 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/Views/Home/Directives.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = ""; 3 | } 4 | 5 | 6 |

Directives

7 | {{2+2}} 8 | 9 | 10 | -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Routing to Controller Actions 4 | ========================================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/117 9 | -------------------------------------------------------------------------------- /aspnet/mvc/views/custom-view-engine.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Creating a Custom View Engine 4 | ========================================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/137 -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Demo/RegisterTextArea.cshtml: -------------------------------------------------------------------------------- 1 | @model DescriptionViewModel 2 | 3 |
4 | 5 | 6 |
-------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/ViewModels/ArticleSection.cs: -------------------------------------------------------------------------------- 1 | namespace PartialViewsSample.ViewModels 2 | { 3 | public class ArticleSection 4 | { 5 | public string Title { get; set; } 6 | public string Content { get; set; } 7 | } 8 | } -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /aspnet/publishing/how-to-customize.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| How to Customize Publishing 4 | ======================================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/228 9 | -------------------------------------------------------------------------------- /aspnet/security/authorization/authorization-filters.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Authorization Filters 4 | ================================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/133 -------------------------------------------------------------------------------- /aspnet/security/open-redirect.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Preventing Open Redirect Attacks 4 | ============================================ 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/92 -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewData["Title"].

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/Model/SampleWebSettings.cs: -------------------------------------------------------------------------------- 1 | namespace ControllerDI.Model 2 | { 3 | public class SampleWebSettings 4 | { 5 | public string Title { get; set; } 6 | public int Updates { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aspnet/performance/measuring.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Measuring Application Performance 4 | ============================================= 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/100 9 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Forgot Password Confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Please check your email to reset your password. 8 |

9 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using WebSMS 2 | @using WebSMS.Models 3 | @using WebSMS.ViewModels.Account 4 | @using WebSMS.ViewModels.Manage 5 | @using Microsoft.AspNet.Identity 6 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" 7 | -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/sample/WebApplication3/src/WebApplication3/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/security/cross-site-scripting.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Preventing Cross-Site Scripting 4 | =========================================== 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/90 -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample2/src/MvcMovie/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Forgot Password Confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Please check your email to reset your password. 8 |

9 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/sample/src/TodoApi/Models/TodoItem.cs: -------------------------------------------------------------------------------- 1 | namespace TodoApi.Models 2 | { 3 | public class TodoItem 4 | { 5 | public string Key { get; set; } 6 | public string Name { get; set; } 7 | public bool IsComplete { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/sample/src/CustomConfigurationProvider/ConfigurationValue.cs: -------------------------------------------------------------------------------- 1 | namespace CustomConfigurationProvider 2 | { 3 | public class ConfigurationValue 4 | { 5 | public string Id { get; set; } 6 | public string Value { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Locked out"; 3 | } 4 | 5 |
6 |

Locked out.

7 |

This account has been locked out, please try again later.

8 |
9 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ASP.NET", 3 | "private": true, 4 | "dependencies": { 5 | "bootstrap": "3.3.5", 6 | "jquery": "2.1.4", 7 | "jquery-validation": "1.14.0", 8 | "jquery-validation-unobtrusive": "3.2.4" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/testing/sample/TestingControllersSample/src/TestingControllersSample/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ASP.NET", 3 | "private": true, 4 | "dependencies": { 5 | "bootstrap": "3.3.6", 6 | "knockout": "3.4.0", 7 | "knockout.mapping": "2.0.1" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aspnet/mvc/models/validation/sample/User.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | 3 | namespace MVCMovie.Models 4 | { 5 | public class User 6 | { 7 | [Remote(action: "VerifyEmail", controller: "Users")] 8 | public string Email { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model CountryViewModel 2 | 3 |
4 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/authoring/sample/AuthoringTagHelpers/src/AuthoringTagHelpers/Views/_ViewImportsCopyEmail.cshtml: -------------------------------------------------------------------------------- 1 | @using AuthoringTagHelpers 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | @addTagHelper "AuthoringTagHelpers.TagHelpers.EmailTagHelper, AuthoringTagHelpers" -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/sample/StarterViewComp/Models/ToDoContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Data.Entity; 2 | 3 | namespace ViewComponentSample.Models 4 | { 5 | public class ToDoContext : DbContext 6 | { 7 | public DbSet ToDo { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/sample/ViewCompFinal/Models/ToDoContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Data.Entity; 2 | 3 | namespace ViewComponentSample.Models 4 | { 5 | public class ToDoContext : DbContext 6 | { 7 | public DbSet ToDo { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/ASP-NET-Banners-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/ASP-NET-Banners-01.png -------------------------------------------------------------------------------- /aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/ASP-NET-Banners-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore-internal/aspnetcore-doc/HEAD/aspnet/performance/caching/response-caching/sample/src/ResponseCacheSample/wwwroot/images/ASP-NET-Banners-02.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewData["Title"].

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /aspnet/testing/integration-testing/sample/src/PrimeWeb/Middleware/PrimeCheckerOptions.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Http; 2 | 3 | namespace PrimeWeb.Middleware 4 | { 5 | public class PrimeCheckerOptions 6 | { 7 | public PathString Path { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/sample2/src/MvcMovie/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewData["Title"].

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /common/samples/ClassLibrary1/src/ClassLibrary1/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0-*", 3 | 4 | "dependencies": { 5 | "NETStandard.Library": "1.6.0" 6 | }, 7 | 8 | "frameworks": { 9 | "netstandard1.6": { 10 | "imports": "dnxcore50" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/application-model.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Working with the Application Model 4 | ============================================== 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/138 -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/ViewModels/AddressViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | 3 | namespace FormsTagHelper.ViewModels 4 | { 5 | public class AddressViewModel 6 | { 7 | public string AddressLine1 { get; set; } 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /aspnet/mvc/views/forms/sample/final/ViewModels/SimpleViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | public class SimpleViewModel 3 | { 4 | [Required] 5 | [EmailAddress] 6 | [Display(Name = "Email Address")] 7 | public string Email { get; set; } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/sample/ViewCompFinal/Views/Shared/Components/PriorityList/Default1.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | 3 |

Priority Items

4 |
    5 | @foreach (var todo in Model) 6 | { 7 |
  • @todo.Name
  • 8 | } 9 |
-------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/sample/ViewCompFinal/Views/Shared/Components/PriorityList/_Default.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | 3 |

Priority Items

4 |
    5 | @foreach (var todo in Model) 6 | { 7 |
  • @todo.Name
  • 8 | } 9 |
-------------------------------------------------------------------------------- /aspnet/testing/index.rst: -------------------------------------------------------------------------------- 1 | Testing 2 | ------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | Unit Testing 8 | integration-testing 9 | ../mvc/controllers/testing 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /aspnet/client-side/responsive-design.rst: -------------------------------------------------------------------------------- 1 | .. include:: /../common/stub-topic.txt 2 | 3 | |stub-icon| Responsive Design for the Mobile Web 4 | ================================================ 5 | 6 | .. include:: /../common/stub-notice.txt 7 | 8 | .. _issue: https://github.com/aspnet/Docs/issues/96 9 | --------------------------------------------------------------------------------