├── aspnet ├── data │ ├── ef-mvc │ │ ├── intro │ │ │ ├── samples │ │ │ │ ├── cu-final │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── .bowerrc │ │ │ │ │ └── Views │ │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ └── cu │ │ │ │ │ ├── wwwroot │ │ │ │ │ ├── js │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ └── site.js │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── .bowerrc │ │ │ │ │ └── Views │ │ │ │ │ └── _ViewStart.cshtml │ │ │ └── _static │ │ │ │ ├── home-page.png │ │ │ │ ├── new-aspnet.png │ │ │ │ ├── new-project.png │ │ │ │ ├── ssox-tables.png │ │ │ │ ├── course-entity.png │ │ │ │ ├── student-edit.png │ │ │ │ ├── home-page-narrow.png │ │ │ │ ├── scaffold-student.png │ │ │ │ ├── student-entity.png │ │ │ │ ├── students-index.png │ │ │ │ ├── data-model-diagram.png │ │ │ │ ├── enrollment-entity.png │ │ │ │ └── ssox-student-table.png │ │ ├── crud │ │ │ └── _static │ │ │ │ ├── fiddler.png │ │ │ │ ├── date-error.png │ │ │ │ ├── student-edit.png │ │ │ │ ├── student-create.png │ │ │ │ ├── student-delete.png │ │ │ │ └── student-details.png │ │ ├── advanced │ │ │ └── _static │ │ │ │ ├── about.png │ │ │ │ ├── courses-index.png │ │ │ │ ├── update-credits.png │ │ │ │ ├── department-details.png │ │ │ │ └── update-credits-rows-affected.png │ │ ├── inheritance │ │ │ └── _static │ │ │ │ ├── tph.png │ │ │ │ ├── tpt.png │ │ │ │ ├── inheritance.png │ │ │ │ ├── no-inheritance.png │ │ │ │ ├── ssox-person-data.png │ │ │ │ └── ssox-person-table.png │ │ ├── concurrency │ │ │ └── _static │ │ │ │ ├── edit-error.png │ │ │ │ ├── budget-zero.png │ │ │ │ ├── change-date.png │ │ │ │ ├── delete-error.png │ │ │ │ ├── change-budget.png │ │ │ │ ├── edit-after-change-1.png │ │ │ │ ├── edit-after-change-2.png │ │ │ │ ├── add-departments-controller.png │ │ │ │ └── edit-after-change-for-delete.png │ │ ├── sort-filter-page │ │ │ └── _static │ │ │ │ ├── about.png │ │ │ │ ├── paging.png │ │ │ │ ├── filtering.png │ │ │ │ └── name-order.png │ │ ├── complex-data-model │ │ │ └── _static │ │ │ │ ├── diagram.png │ │ │ │ ├── course-entity.png │ │ │ │ ├── ssox-ci-data.png │ │ │ │ ├── ssox-tables.png │ │ │ │ ├── dates-no-times.png │ │ │ │ ├── student-course.png │ │ │ │ ├── student-entity.png │ │ │ │ ├── department-entity.png │ │ │ │ ├── enrollment-entity.png │ │ │ │ ├── instructor-entity.png │ │ │ │ ├── ssox-after-migration.png │ │ │ │ ├── string-length-errors.png │ │ │ │ ├── courseassignment-entity.png │ │ │ │ └── officeassignment-entity.png │ │ ├── migrations │ │ │ └── _static │ │ │ │ ├── migrations-table.png │ │ │ │ ├── students-index.png │ │ │ │ ├── open-command-window.png │ │ │ │ └── open-in-file-explorer.png │ │ ├── read-related-data │ │ │ └── _static │ │ │ │ ├── courses-index.png │ │ │ │ ├── eager-loading.png │ │ │ │ ├── separate-queries.png │ │ │ │ ├── instructors-index.png │ │ │ │ ├── add-courses-controller.png │ │ │ │ ├── add-instructors-controller.png │ │ │ │ ├── instructors-index-no-selection.png │ │ │ │ └── instructors-index-instructor-selected.png │ │ └── update-related-data │ │ │ └── _static │ │ │ ├── course-edit.png │ │ │ ├── course-create.png │ │ │ ├── instructor-edit-office.png │ │ │ ├── instructor-edit-courses.png │ │ │ └── instructor-index-courses.png │ └── entity-framework-6 │ │ └── sample │ │ ├── MVCCore │ │ ├── wwwroot │ │ │ ├── js │ │ │ │ ├── site.min.js │ │ │ │ └── site.js │ │ │ └── favicon.ico │ │ ├── .bowerrc │ │ ├── Views │ │ │ ├── _ViewStart.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── app.config │ │ └── EF6 │ │ └── packages.config ├── migration │ ├── configuration │ │ ├── samples │ │ │ └── WebApp1 │ │ │ │ ├── src │ │ │ │ └── WebApp1 │ │ │ │ │ ├── wwwroot │ │ │ │ │ ├── js │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ └── site.js │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── .bowerrc │ │ │ │ │ ├── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ └── _ViewImports.cshtml │ │ │ │ │ └── appsettings.json │ │ │ │ └── global.json │ │ └── _static │ │ │ └── add-appsettings-json.png │ ├── mvc │ │ ├── samples │ │ │ └── WebApp1 │ │ │ │ └── src │ │ │ │ └── WebApp1 │ │ │ │ ├── .bowerrc │ │ │ │ ├── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── Home │ │ │ │ │ └── About.cshtml │ │ │ │ ├── wwwroot │ │ │ │ └── favicon.ico │ │ │ │ └── bower.json │ │ └── _static │ │ │ ├── view.png │ │ │ ├── search.png │ │ │ ├── new_core.png │ │ │ ├── add-gulpfile.png │ │ │ ├── addExisting.png │ │ │ ├── add_mvc_ctl.png │ │ │ ├── contact-page.png │ │ │ ├── hello-world.png │ │ │ ├── new-project.png │ │ │ ├── show_all_files.png │ │ │ ├── task-runner-explorer.png │ │ │ ├── wwwroot-lib-folder.png │ │ │ ├── updated-gulpfile-with-concat.png │ │ │ ├── new-project-select-mvc-template.png │ │ │ ├── project-structure-controller-view.png │ │ │ └── new-project-select-empty-aspnet5-template.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 │ ├── identity │ │ └── _static │ │ │ └── AddLoginPartial.png │ ├── webapi │ │ ├── _static │ │ │ ├── add-web-project.png │ │ │ ├── aspnet-5-webapi.png │ │ │ └── webapimigration-solution.png │ │ └── sample │ │ │ └── ProductsApp │ │ │ └── Global.asax │ └── index.rst ├── mvc │ ├── views │ │ ├── razor │ │ │ ├── sample │ │ │ │ ├── .bowerrc │ │ │ │ ├── Views │ │ │ │ │ ├── _ViewImportsModel.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ └── Home │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ ├── Contact10.cshtml │ │ │ │ │ │ ├── Contact11.cshtml │ │ │ │ │ │ ├── Contact3.cshtml │ │ │ │ │ │ ├── Contact8.cshtml │ │ │ │ │ │ ├── Contact9.cshtml │ │ │ │ │ │ ├── Login.cshtml │ │ │ │ │ │ ├── Login1.cshtml │ │ │ │ │ │ ├── Contact6.cshtml │ │ │ │ │ │ └── About.cshtml │ │ │ │ └── Models │ │ │ │ │ └── LoginViewModel.cs │ │ │ └── _static │ │ │ │ ├── r1.png │ │ │ │ ├── r2.png │ │ │ │ └── tvr.png │ │ ├── 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 │ │ │ └── _static │ │ │ │ └── output.png │ │ ├── working-with-forms │ │ │ ├── sample │ │ │ │ └── final │ │ │ │ │ ├── Views │ │ │ │ │ ├── Demo │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ ├── RegisterRoute.cshtml │ │ │ │ │ │ └── RegisterFormOnly.cshtml │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── IndexSuccess.cshtml │ │ │ │ │ │ └── MyModel.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── Shared │ │ │ │ │ │ └── EditorTemplates │ │ │ │ │ │ └── String.cshtml │ │ │ │ │ └── ViewModels │ │ │ │ │ └── MyModel.cs │ │ │ └── _static │ │ │ │ └── grp.png │ │ ├── layout │ │ │ └── _static │ │ │ │ ├── page-layout.png │ │ │ │ └── web-project-views.png │ │ ├── overview │ │ │ └── _static │ │ │ │ ├── about-page.png │ │ │ │ └── views_solution_explorer.png │ │ ├── view-components │ │ │ └── _static │ │ │ │ ├── p2.png │ │ │ │ ├── pi.png │ │ │ │ ├── pvc.png │ │ │ │ ├── 2dos.png │ │ │ │ └── shared.png │ │ ├── tag-helpers │ │ │ ├── authoring │ │ │ │ └── sample │ │ │ │ │ └── AuthoringTagHelpers │ │ │ │ │ └── src │ │ │ │ │ └── AuthoringTagHelpers │ │ │ │ │ └── Views │ │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── intro │ │ │ │ └── _static │ │ │ │ │ ├── th.png │ │ │ │ │ ├── thp.png │ │ │ │ │ ├── bang.png │ │ │ │ │ ├── class.png │ │ │ │ │ ├── fname.png │ │ │ │ │ ├── iclass.png │ │ │ │ │ ├── intel3.png │ │ │ │ │ ├── label.png │ │ │ │ │ ├── label2.png │ │ │ │ │ ├── model.png │ │ │ │ │ ├── regCS.png │ │ │ │ │ ├── regTH.png │ │ │ │ │ ├── tagSym.png │ │ │ │ │ ├── 1stName.png │ │ │ │ │ ├── labelVM.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── intelclass.png │ │ │ │ │ ├── intellemail.png │ │ │ │ │ ├── labelaspfor.PNG │ │ │ │ │ ├── labelattr.png │ │ │ │ │ ├── LableHtmlTag.png │ │ │ │ │ ├── fontoptions2.png │ │ │ │ │ ├── labelaspfor2.png │ │ │ │ │ └── stmtcomplete.png │ │ │ └── index.rst │ │ └── dependency-injection │ │ │ ├── _static │ │ │ ├── stat.png │ │ │ ├── screenshot.png │ │ │ ├── razor-fields.png │ │ │ └── updateprofile.png │ │ │ └── sample │ │ │ └── global.json │ ├── models │ │ ├── formatting │ │ │ ├── sample │ │ │ │ ├── src │ │ │ │ │ └── ResponseFormattingSample │ │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ └── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ │ └── Home │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ └── Contact.cshtml │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ ├── xml-response.png │ │ │ │ ├── json-response.png │ │ │ │ ├── text-response.png │ │ │ │ ├── fiddler-composer.png │ │ │ │ └── json-response-fiddler.png │ │ ├── validation │ │ │ └── sample │ │ │ │ ├── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ │ │ └── IUserRepository.cs │ │ └── index.rst │ ├── controllers │ │ ├── routing │ │ │ └── sample │ │ │ │ ├── main │ │ │ │ ├── .bowerrc │ │ │ │ ├── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ ├── Shared │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ ├── Generic.cshtml │ │ │ │ │ │ └── Destination.cshtml │ │ │ │ │ └── _ViewImports.cshtml │ │ │ │ └── StartupUseMvc.cs │ │ │ │ └── AreasRouting │ │ │ │ ├── .bowerrc │ │ │ │ └── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ ├── dependency-injection │ │ │ ├── sample │ │ │ │ ├── src │ │ │ │ │ └── ControllerDI │ │ │ │ │ │ ├── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ ├── Home │ │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ │ └── Settings │ │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ │ └── samplewebsettings.json │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ └── server-greeting.png │ │ ├── testing │ │ │ └── sample │ │ │ │ └── TestingControllersSample │ │ │ │ ├── src │ │ │ │ └── TestingControllersSample │ │ │ │ │ └── .bowerrc │ │ │ │ └── global.json │ │ └── filters │ │ │ ├── _static │ │ │ ├── add-header.png │ │ │ ├── filter-pipeline-1.png │ │ │ └── filter-pipeline-2.png │ │ │ └── sample │ │ │ └── global.json │ ├── overview │ │ └── _static │ │ │ └── mvc.png │ └── index.rst ├── client-side │ ├── angular │ │ ├── sample │ │ │ └── AngularSample │ │ │ │ ├── src │ │ │ │ └── AngularSample │ │ │ │ │ ├── appsettings.json │ │ │ │ │ ├── .bowerrc │ │ │ │ │ ├── wwwroot │ │ │ │ │ ├── js │ │ │ │ │ │ └── site.js │ │ │ │ │ ├── app │ │ │ │ │ │ ├── personModule.js │ │ │ │ │ │ ├── partials │ │ │ │ │ │ │ ├── personlist.html │ │ │ │ │ │ │ ├── persondetail.html │ │ │ │ │ │ │ └── personcomponent.html │ │ │ │ │ │ ├── personApp.js │ │ │ │ │ │ └── personListController.js │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── images │ │ │ │ │ │ └── Banner-02-VS.png │ │ │ │ │ └── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ └── _ViewImports.cshtml │ │ │ │ └── global.json │ │ └── _static │ │ │ ├── events.png │ │ │ ├── scope.png │ │ │ ├── repeater.png │ │ │ ├── components.png │ │ │ ├── controllers.png │ │ │ ├── repeaters2.png │ │ │ ├── rest-bound.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 │ │ │ │ │ ├── .bowerrc │ │ │ │ │ └── Views │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ └── global.json │ │ └── _static │ │ │ └── task-runner-explorer.png │ ├── bower │ │ └── _static │ │ │ ├── add-package.png │ │ │ ├── jumbotron.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 │ │ │ ├── 03-TaskRunnerExplorer.png │ │ │ ├── 04-TaskRunner-clean.png │ │ │ ├── 06-TaskRunner-First.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-inspinia.png │ │ │ ├── theme-navbars.png │ │ │ ├── about-page-wide.png │ │ │ ├── theme-glyphicons.png │ │ │ ├── theme-tabstrips.png │ │ │ ├── bootstrap-in-layout.png │ │ │ ├── about-page-hamburger.png │ │ │ ├── grid-without-clearfix.png │ │ │ ├── about-page-hamburger-open.png │ │ │ ├── bootstrap-in-starter-template.png │ │ │ └── narrow-and-wide-viewport-grid.png │ ├── yeoman │ │ └── _static │ │ │ ├── dotnet-restore.png │ │ │ ├── yeoman-solution.png │ │ │ ├── dotnet-build-run.png │ │ │ ├── yeoman-home-page.png │ │ │ ├── yeoman-yo-aspnet.png │ │ │ ├── yeoman-home-page_5000.png │ │ │ ├── yeoman-yo-aspnet-created.png │ │ │ └── yeoman-loading-dependencies.png │ ├── knockout │ │ └── _static │ │ │ ├── bower-knockout.png │ │ │ ├── record-screenshot.png │ │ │ ├── wwwroot-knockout.png │ │ │ ├── hyperlink-screenshot.png │ │ │ ├── editable-grid-screenshot.png │ │ │ ├── hyperlink-caps-screenshot.png │ │ │ ├── input-binding-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 │ │ │ ├── gruntfile-js-initial.png │ │ │ ├── typescript-options.png │ │ │ ├── bindings-project-open.png │ │ │ ├── devdependencies-grunt.png │ │ │ ├── gruntfile-js-complete.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 │ └── 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 ├── fundamentals │ ├── localization │ │ ├── sample │ │ │ ├── .bowerrc │ │ │ ├── Views │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ └── Shared │ │ │ │ │ └── Error.cshtml │ │ │ ├── hosting.json │ │ │ └── Resources │ │ │ │ └── SharedResource.cs │ │ └── _static │ │ │ ├── res.png │ │ │ ├── se.png │ │ │ ├── hola.png │ │ │ ├── lang.png │ │ │ ├── newi.png │ │ │ ├── simp2.png │ │ │ └── newproj.png │ ├── app-state │ │ ├── sample │ │ │ └── global.json │ │ └── _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 │ │ └── _static │ │ │ ├── request-services.png │ │ │ ├── lifetimes_request1.png │ │ │ └── lifetimes_request2.png │ ├── routing │ │ └── _static │ │ │ └── tokens.png │ ├── static-files │ │ └── _static │ │ │ ├── db2.PNG │ │ │ └── dir-browse.png │ ├── owin │ │ ├── _static │ │ │ └── websocket-test.png │ │ └── sample │ │ │ ├── global.json │ │ │ └── src │ │ │ ├── NowinSample │ │ │ └── wwwroot │ │ │ │ └── placeholder.html │ │ │ ├── OwinSample │ │ │ └── wwwroot │ │ │ │ └── placeholder.html │ │ │ └── NowinWebSockets │ │ │ └── wwwroot │ │ │ └── placeholder.html │ ├── configuration │ │ ├── _static │ │ │ ├── index-view.png │ │ │ ├── config-console.png │ │ │ └── custom-config.png │ │ └── sample │ │ │ ├── global.json │ │ │ └── src │ │ │ └── ConfigConsole │ │ │ └── Properties │ │ │ └── launchSettings.json │ ├── error-handling │ │ ├── sample │ │ │ └── global.json │ │ └── _static │ │ │ ├── default-404-status-code.png │ │ │ ├── developer-exception-page.png │ │ │ ├── developer-exception-page-query.png │ │ │ └── developer-exception-page-headers.png │ ├── hosting │ │ └── _static │ │ │ ├── generic-error-page.png │ │ │ └── detailed-error-page.png │ └── servers │ │ ├── _static │ │ └── serverdemo-properties.png │ │ └── sample │ │ └── ServersDemo │ │ ├── global.json │ │ └── src │ │ └── ServersDemo │ │ └── wwwroot │ │ └── demo.html ├── performance │ ├── caching │ │ ├── response │ │ │ ├── sample │ │ │ │ ├── src │ │ │ │ │ └── ResponseCacheSample │ │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── site.min.js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ └── Views │ │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ │ └── _ViewImports.cshtml │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ └── proxy-and-cache.png │ │ ├── memory │ │ │ └── sample │ │ │ │ └── global.json │ │ ├── distributed │ │ │ ├── sample │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ └── SqlServerCacheTable.png │ │ └── index.rst │ └── index.rst ├── ext │ └── versionwarning.pyc ├── security │ ├── authentication │ │ ├── 2fa │ │ │ ├── sample │ │ │ │ └── WebSMS │ │ │ │ │ ├── src │ │ │ │ │ └── WebSMS │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── Banner-02-VS.png │ │ │ │ │ │ │ └── Banner-01-Azure.png │ │ │ │ │ │ └── Views │ │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ └── global.json │ │ │ └── _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 │ │ │ │ ├── new-project.png │ │ │ │ ├── managesecret.png │ │ │ │ └── select-project.png │ │ ├── accconfirm │ │ │ ├── sample │ │ │ │ └── WebApplication3 │ │ │ │ │ ├── src │ │ │ │ │ └── WebApplication3 │ │ │ │ │ │ ├── .bowerrc │ │ │ │ │ │ ├── wwwroot │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── site.js │ │ │ │ │ │ └── Views │ │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ └── global.json │ │ │ └── _static │ │ │ │ ├── SM1.PNG │ │ │ │ ├── au.png │ │ │ │ ├── fb.png │ │ │ │ ├── rick.png │ │ │ │ ├── ssl.png │ │ │ │ ├── ssox.png │ │ │ │ ├── manage.png │ │ │ │ ├── pass1.PNG │ │ │ │ ├── pass2.PNG │ │ │ │ ├── first-run.png │ │ │ │ ├── new-project.png │ │ │ │ ├── managesecret.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 │ │ │ ├── FBApp03.png │ │ │ ├── FBApp04.png │ │ │ ├── FBApp05.png │ │ │ ├── FBApp06.png │ │ │ ├── FBApp07.png │ │ │ ├── FBApp08.png │ │ │ ├── pass1.PNG │ │ │ ├── pass2.PNG │ │ │ ├── FBLogin1.PNG │ │ │ ├── FBLogin2.PNG │ │ │ ├── FBLogin3.PNG │ │ │ ├── enablessl.png │ │ │ ├── managesecret.png │ │ │ ├── new-project.png │ │ │ ├── new-project2.png │ │ │ └── select-project.png │ └── 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 │ │ ├── implementation │ │ └── subkeyderivation │ │ │ └── _static │ │ │ ├── cbcprocess.png │ │ │ └── galoisprocess.png │ │ └── configuration │ │ └── index.rst ├── tutorials │ ├── first-mvc-app │ │ ├── start-mvc │ │ │ ├── sample2 │ │ │ │ └── src │ │ │ │ │ └── MvcMovie │ │ │ │ │ ├── .bowerrc │ │ │ │ │ └── Views │ │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── sample │ │ │ │ └── src │ │ │ │ │ └── MvcMovie │ │ │ │ │ └── Views │ │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── HelloWorld │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Index2.cshtml │ │ │ └── _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 │ │ │ │ ├── ghost.png │ │ │ │ ├── int_m.png │ │ │ │ ├── f12_rb.png │ │ │ │ ├── filter.png │ │ │ │ ├── int_get.png │ │ │ │ ├── rename.png │ │ │ │ ├── rename2.png │ │ │ │ ├── rename3.png │ │ │ │ ├── th_font.png │ │ │ │ └── search_get.png │ │ ├── new-field │ │ │ └── _static │ │ │ │ ├── cr.png │ │ │ │ └── se.png │ │ ├── adding-model │ │ │ └── _static │ │ │ │ ├── h.png │ │ │ │ ├── m1.png │ │ │ │ ├── ints.png │ │ │ │ ├── files.png │ │ │ │ ├── folder.png │ │ │ │ ├── indiv.png │ │ │ │ ├── movies.png │ │ │ │ ├── pending.png │ │ │ │ ├── quick.png │ │ │ │ ├── add_class.png │ │ │ │ ├── add_controller.png │ │ │ │ ├── add_scaffold2.png │ │ │ │ └── add_controller2.png │ │ ├── adding-view │ │ │ └── _static │ │ │ │ ├── 1.png │ │ │ │ ├── hell3.png │ │ │ │ ├── rick.png │ │ │ │ ├── add_view.png │ │ │ │ ├── add_view_dlg.png │ │ │ │ └── hell_template.png │ │ ├── validation │ │ │ └── _static │ │ │ │ ├── ff.png │ │ │ │ ├── ms.png │ │ │ │ ├── val.png │ │ │ │ ├── chrome.png │ │ │ │ ├── newsc.png │ │ │ │ └── p8_IE9_disableJavaScript.png │ │ ├── working-with-sql │ │ │ └── _static │ │ │ │ ├── dbg.png │ │ │ │ ├── dv.png │ │ │ │ ├── m55.png │ │ │ │ ├── ssox.png │ │ │ │ ├── ssox2.png │ │ │ │ ├── vd22.png │ │ │ │ ├── design.png │ │ │ │ ├── di_intel.png │ │ │ │ ├── stopIIS.png │ │ │ │ └── iisExIcon.png │ │ ├── adding-controller │ │ │ └── _static │ │ │ │ ├── mvc1.png │ │ │ │ ├── hell1.png │ │ │ │ ├── rick4.png │ │ │ │ ├── welcome.png │ │ │ │ ├── add_controller.png │ │ │ │ └── rick_routedata.png │ │ └── controller-methods-views │ │ │ └── _static │ │ │ ├── 1.png │ │ │ ├── da.png │ │ │ ├── qa.png │ │ │ ├── rm.png │ │ │ ├── edit7.png │ │ │ ├── f12.png │ │ │ └── val.png │ ├── first-web-api │ │ └── _static │ │ │ ├── pm1.png │ │ │ ├── pmc.png │ │ │ ├── pmc2.png │ │ │ ├── pmd.png │ │ │ ├── pmget.png │ │ │ ├── launch.png │ │ │ ├── pmcpat.png │ │ │ ├── pmcput.png │ │ │ ├── add-folder.png │ │ │ ├── architecture.png │ │ │ ├── new-project.png │ │ │ └── web-api-project.png │ ├── your-first-mac-aspnet │ │ └── _static │ │ │ ├── azure.png │ │ │ ├── debugger.png │ │ │ ├── file-open.png │ │ │ ├── azure-portal.png │ │ │ ├── deployment.png │ │ │ ├── dot-restore.png │ │ │ ├── hello-world.png │ │ │ ├── init-commit.png │ │ │ ├── myfirstapp.png │ │ │ ├── vscode-git.png │ │ │ ├── create-web-app.png │ │ │ ├── dotnet-restore.png │ │ │ ├── vscode-welcome.png │ │ │ ├── debug-items-added.png │ │ │ ├── launch-debugger.png │ │ │ ├── vscode-git-commit.png │ │ │ ├── vscode-startupcs.png │ │ │ ├── dependencies-restore.png │ │ │ └── git-push-azure-master.png │ ├── web-api-help-pages-using-swagger │ │ ├── .DS_Store │ │ └── _static │ │ │ ├── add-swagger.png │ │ │ ├── custom-info.png │ │ │ ├── swagger-ui.png │ │ │ ├── custom-header.png │ │ │ ├── data-annotations.png │ │ │ ├── get-try-it-out.png │ │ │ ├── basic-no-annotations.png │ │ │ ├── manage-nuget-packages.png │ │ │ ├── swagger-xml-comments.png │ │ │ ├── triple-slash-comments.png │ │ │ ├── xml-comments-extended.png │ │ │ ├── custom-files-folder-view.png │ │ │ └── data-annotations-response-types.png │ └── publish-to-azure-webapp-using-vs │ │ └── _static │ │ ├── cas.png │ │ ├── mig.png │ │ ├── pub.png │ │ ├── rgd.png │ │ ├── sql.png │ │ ├── conf.png │ │ ├── final.png │ │ ├── hello.png │ │ ├── maas1.png │ │ ├── newrg1.png │ │ ├── noath.png │ │ ├── pubc.png │ │ ├── pubs.png │ │ ├── show.png │ │ ├── new_prj.png │ │ ├── portalrg.png │ │ ├── conf_final.png │ │ ├── create_as.png │ │ ├── new_project.png │ │ ├── alt_new_project.png │ │ └── conf_servername.png ├── publishing │ ├── iis │ │ └── _static │ │ │ ├── rs.png │ │ │ ├── wf.png │ │ │ ├── addwebsite.png │ │ │ ├── editapppool.png │ │ │ ├── browsewebsite.png │ │ │ ├── role-services.png │ │ │ ├── addwebsitecontextmenu.png │ │ │ └── apppoolsbasicsettingscontextmenu.png │ ├── iis-with-msdeploy │ │ └── _static │ │ │ └── pub-dialog.png │ ├── web-publishing-vs │ │ └── _static │ │ │ └── image-1b.png │ ├── azure-continuous-deployment │ │ └── _static │ │ │ ├── 01-new-project.png │ │ │ ├── 09-azure-giturl.png │ │ │ ├── 11-add-remote.png │ │ │ ├── 03-source-control.png │ │ │ ├── 04-browser-runapp.png │ │ │ ├── 10-team-explorer.png │ │ │ ├── 12-initial-commit.png │ │ │ ├── 02-web-site-template.png │ │ │ ├── 05-azure-newwebapp.png │ │ │ ├── 06-azure-newappblade.png │ │ │ ├── 07-azure-webappblade.png │ │ │ ├── 13-verify-deployment.png │ │ │ └── 08-azure-localrepository.png │ └── vsts-continuous-deployment │ │ └── _static │ │ ├── dotnet-publish.png │ │ ├── dotnet-restore.png │ │ ├── web-app-deployment.png │ │ ├── setup-build-variables.png │ │ ├── compress-publish-output.png │ │ └── create-empty-build-definition.png ├── contribute │ └── style-guide │ │ └── _static │ │ └── asp-net.png ├── getting-started │ └── _static │ │ └── running-output.png ├── hosting │ ├── apppool │ │ └── _static │ │ │ ├── apppool-adduser.jpg │ │ │ └── apppool-identity.png │ └── aspnet-core-module │ │ └── _static │ │ └── ANCM-502_5.png ├── testing │ └── integration-testing │ │ ├── sample │ │ └── global.json │ │ └── _static │ │ └── test-explorer.png └── mobile │ └── index.rst ├── common ├── stub-topic.txt ├── samples │ ├── WebApplication1 │ │ ├── src │ │ │ └── WebApplication1 │ │ │ │ ├── wwwroot │ │ │ │ ├── js │ │ │ │ │ ├── site.min.js │ │ │ │ │ └── site.js │ │ │ │ └── favicon.ico │ │ │ │ ├── .bowerrc │ │ │ │ └── Views │ │ │ │ └── _ViewStart.cshtml │ │ └── global.json │ ├── ConsoleApp1 │ │ └── global.json │ └── ClassLibrary1 │ │ └── global.json ├── api.inv ├── aspnet.inv ├── _static │ ├── favicon.ico │ ├── nav-logo-aspnet.png │ └── nav-logo-microsoft.png └── _templates │ └── footer.html ├── webhooks ├── aspnet.inv ├── favicon.ico ├── _static │ └── WebHookReceivers.png ├── receiving │ └── _static │ │ ├── Handlers.png │ │ └── AzureAppSettings.png ├── diagnostics │ ├── _static │ │ ├── SymSource.png │ │ └── SourceSymbols.png │ └── index.rst └── sending │ └── index.rst └── requirements.txt /aspnet/data/ef-mvc/intro/samples/cu-final/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/MVCCore/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/migration/configuration/samples/WebApp1/src/WebApp1/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /common/api.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/common/api.inv -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/aspnet.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/common/aspnet.inv -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/appsettings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/_ViewImportsModel.cshtml: -------------------------------------------------------------------------------- 1 | @inherits CustomRazorPage -------------------------------------------------------------------------------- /aspnet/performance/caching/response/sample/src/ResponseCacheSample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webhooks/aspnet.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/webhooks/aspnet.inv -------------------------------------------------------------------------------- /webhooks/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/webhooks/favicon.ico -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu-final/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu-final/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /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/controllers/routing/sample/main/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ] 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/MVCCore/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/MVCCore/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /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/data/ef-mvc/intro/samples/cu-final/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/AreasRouting/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/main/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/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/common/_static/favicon.ico -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/MVCCore/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/ext/versionwarning.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/ext/versionwarning.pyc -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/AreasRouting/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /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/razor/sample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @* 2 | @inherits CustomRazorPage 3 | *@ 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | Layout = null; 4 | } 5 | -------------------------------------------------------------------------------- /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/migration/configuration/samples/WebApp1/src/WebApp1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/overview/_static/mvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/overview/_static/mvc.png -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/sample/src/PartialViewsSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response/sample/src/ResponseCacheSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response/sample/src/ResponseCacheSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /common/_static/nav-logo-aspnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/common/_static/nav-logo-aspnet.png -------------------------------------------------------------------------------- /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/migration/mvc/_static/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/view.png -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/_static/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/razor/_static/r1.png -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/_static/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/razor/_static/r2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/_static/tvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/razor/_static/tvr.png -------------------------------------------------------------------------------- /aspnet/publishing/iis/_static/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/rs.png -------------------------------------------------------------------------------- /aspnet/publishing/iis/_static/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/wf.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /common/_static/nav-logo-microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/common/_static/nav-logo-microsoft.png -------------------------------------------------------------------------------- /webhooks/_static/WebHookReceivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/webhooks/_static/WebHookReceivers.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/search.png -------------------------------------------------------------------------------- /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/razor/sample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 |

@@Username

-------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-forms/sample/final/Views/Demo/Index.cshtml: -------------------------------------------------------------------------------- 1 |

Index Page

2 | 3 |

@ViewData["Message"]

-------------------------------------------------------------------------------- /aspnet/performance/caching/response/sample/src/ResponseCacheSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /webhooks/receiving/_static/Handlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/webhooks/receiving/_static/Handlers.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/crud/_static/fiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/crud/_static/fiddler.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/new_core.png -------------------------------------------------------------------------------- /aspnet/mvc/views/partial/_static/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/partial/_static/output.png -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/Home/Contact10.cshtml: -------------------------------------------------------------------------------- 1 | @inherits CustomRazorPage 2 | 3 |
Custom text: @CustomText
-------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/Home/Contact11.cshtml: -------------------------------------------------------------------------------- 1 | @inherits CustomRazorPage 2 | 3 |
Custom text: @CustomText
-------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /webhooks/diagnostics/_static/SymSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/webhooks/diagnostics/_static/SymSource.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/events.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/scope.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/data/ef-mvc/advanced/_static/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/advanced/_static/about.png -------------------------------------------------------------------------------- /aspnet/fundamentals/environments/sample/src/Environments/wwwroot/placeholder.txt: -------------------------------------------------------------------------------- 1 | Placefolder file to ensure the existing of wwwroot folder. -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/add-gulpfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/add-gulpfile.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/addExisting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/addExisting.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/add_mvc_ctl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/add_mvc_ctl.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/contact-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/contact-page.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/hello-world.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/mvc/models/validation/sample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MVCMovie.Models 2 | @addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers" -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/Home/Contact3.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | var output = "Hello World"; 3 | } 4 | 5 |
Output: @output
6 | -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/Home/Contact8.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | var output = "Hello World"; 3 | } 4 | 5 |
Output: @output
6 | -------------------------------------------------------------------------------- /aspnet/publishing/iis/_static/addwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/addwebsite.png -------------------------------------------------------------------------------- /aspnet/publishing/iis/_static/editapppool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/editapppool.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/repeater.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/add-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/add-package.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/jumbotron.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/mvc-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/mvc-project.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/package-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/package-lib.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/semver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/semver.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/crud/_static/date-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/crud/_static/date-error.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/crud/_static/student-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/crud/_static/student-edit.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/inheritance/_static/tph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/inheritance/_static/tph.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/inheritance/_static/tpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/inheritance/_static/tpt.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/home-page.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/new-aspnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/new-aspnet.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/ssox-tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/ssox-tables.png -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/MVCCore/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MVCCore 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/localization/_static/res.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/localization/_static/se.png -------------------------------------------------------------------------------- /aspnet/fundamentals/routing/_static/tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/routing/_static/tokens.png -------------------------------------------------------------------------------- /aspnet/fundamentals/static-files/_static/db2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/static-files/_static/db2.PNG -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/show_all_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/show_all_files.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/testing/sample/TestingControllersSample/src/TestingControllersSample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/layout/_static/page-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/layout/_static/page-layout.png -------------------------------------------------------------------------------- /aspnet/mvc/views/overview/_static/about-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/overview/_static/about-page.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/view-components/_static/p2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/view-components/_static/pi.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/pvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/view-components/_static/pvc.png -------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-forms/sample/final/Views/Home/IndexSuccess.cshtml: -------------------------------------------------------------------------------- 1 |

IndexSuccess Page

2 | 3 |

@ViewData["Message"]

-------------------------------------------------------------------------------- /aspnet/publishing/iis/_static/browsewebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/browsewebsite.png -------------------------------------------------------------------------------- /aspnet/publishing/iis/_static/role-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/role-services.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/pm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/pm1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/pmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/pmc.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/pmc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/pmc2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/pmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/pmd.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/pmget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/pmget.png -------------------------------------------------------------------------------- /webhooks/diagnostics/_static/SourceSymbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/webhooks/diagnostics/_static/SourceSymbols.png -------------------------------------------------------------------------------- /webhooks/receiving/_static/AzureAppSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/webhooks/receiving/_static/AzureAppSettings.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/components.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/controllers.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/repeaters2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/repeaters2.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/rest-bound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/rest-bound.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/spa-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/spa-persons.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/personModule.js: -------------------------------------------------------------------------------- 1 | var personApp = angular.module('personApp', ['ngRoute']); -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/jumbotron.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/empty-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/empty-project.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/photo-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/photo-gallery.png -------------------------------------------------------------------------------- /aspnet/client-side/bundling-and-minification/samples/WebApplication1/src/WebApplication1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/contribute/style-guide/_static/asp-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/contribute/style-guide/_static/asp-net.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/crud/_static/student-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/crud/_static/student-create.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/crud/_static/student-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/crud/_static/student-delete.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/course-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/course-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/student-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/student-edit.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/hola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/localization/_static/hola.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/localization/_static/lang.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/newi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/localization/_static/newi.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/simp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/localization/_static/simp2.png -------------------------------------------------------------------------------- /aspnet/getting-started/_static/running-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/getting-started/_static/running-output.png -------------------------------------------------------------------------------- /aspnet/hosting/apppool/_static/apppool-adduser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/hosting/apppool/_static/apppool-adduser.jpg -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/main/Views/Shared/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 |

@ViewData["Message"]

-------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/main/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using WebMvcRouting 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/Home/Contact9.cshtml: -------------------------------------------------------------------------------- 1 | @using System.IO 2 | @{ 3 | var dir = Directory.GetCurrentDirectory(); 4 | } 5 |

@dir

-------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/authoring/sample/AuthoringTagHelpers/src/AuthoringTagHelpers/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/th.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/thp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/thp.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/2dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/view-components/_static/2dos.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/SM1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/SM1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/rem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/rem.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/sample/WebApplication3/src/WebApplication3/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/launch.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/pmcpat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/pmcpat.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/pmcput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/pmcput.png -------------------------------------------------------------------------------- /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/spa-persons-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/spa-persons-2.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/input-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/input-groups.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/theme-alerts.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/theme-badges.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/dotnet-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/dotnet-restore.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/yeoman-solution.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/advanced/_static/courses-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/advanced/_static/courses-index.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/edit-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/edit-error.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/crud/_static/student-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/crud/_static/student-details.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/home-page-narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/home-page-narrow.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/scaffold-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/scaffold-student.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/student-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/student-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/students-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/students-index.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/sort-filter-page/_static/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/sort-filter-page/_static/about.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/_static/newproj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/localization/_static/newproj.png -------------------------------------------------------------------------------- /aspnet/fundamentals/owin/_static/websocket-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/owin/_static/websocket-test.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/hosting/apppool/_static/apppool-identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/hosting/apppool/_static/apppool-identity.png -------------------------------------------------------------------------------- /aspnet/migration/http-modules/_static/middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/http-modules/_static/middleware.png -------------------------------------------------------------------------------- /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/identity/_static/AddLoginPartial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/identity/_static/AddLoginPartial.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/task-runner-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/task-runner-explorer.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/wwwroot-lib-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/wwwroot-lib-folder.png -------------------------------------------------------------------------------- /aspnet/migration/webapi/_static/add-web-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/webapi/_static/add-web-project.png -------------------------------------------------------------------------------- /aspnet/migration/webapi/_static/aspnet-5-webapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/webapi/_static/aspnet-5-webapi.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/_static/add-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/controllers/filters/_static/add-header.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/AreasRouting/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using AreasRouting 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/xml-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/models/formatting/_static/xml-response.png -------------------------------------------------------------------------------- /aspnet/mvc/views/layout/_static/web-project-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/layout/_static/web-project-views.png -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/Home/Login.cshtml: -------------------------------------------------------------------------------- 1 | @using RazorSample.Models; 2 | @model LoginViewModel 3 | 4 |
The Login Email: @Model.Email
-------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/bang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/bang.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/class.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/fname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/fname.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/iclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/iclass.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/intel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/intel3.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/label.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/label2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/label2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/model.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/regCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/regCS.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/regTH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/regTH.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/tagSym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/tagSym.png -------------------------------------------------------------------------------- /aspnet/mvc/views/view-components/_static/shared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/view-components/_static/shared.png -------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-forms/_static/grp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/working-with-forms/_static/grp.png -------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-forms/sample/final/Views/Home/MyModel.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | var model = new MyModel(); 3 | } 4 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/pass1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/pass1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/pass2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/pass2.PNG -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/f12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/f12.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/fo.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/g2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/g2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/add-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/add-folder.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-directive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/simple-directive.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/theme-buttons.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-inspinia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/theme-inspinia.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-navbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/theme-navbars.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/bower-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/bower-dependencies.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/bower-knockout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/bower-knockout.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/alias-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/alias-tasks.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/node-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/node-modules.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/task-binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/task-binding.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/task-runner-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/task-runner-3.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/dotnet-build-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/dotnet-build-run.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/yeoman-home-page.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-yo-aspnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/yeoman-yo-aspnet.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/advanced/_static/update-credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/advanced/_static/update-credits.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/budget-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/budget-zero.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/change-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/change-date.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/delete-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/delete-error.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/inheritance/_static/inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/inheritance/_static/inheritance.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/data-model-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/data-model-diagram.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/enrollment-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/enrollment-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/_static/ssox-student-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/_static/ssox-student-table.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/samples/cu/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/sort-filter-page/_static/paging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/sort-filter-page/_static/paging.png -------------------------------------------------------------------------------- /aspnet/fundamentals/localization/sample/hosting.json: -------------------------------------------------------------------------------- 1 | { 2 | "server": "Microsoft.AspNet.Server.Kestrel", 3 | "server.urls": "http://localhost:5000" 4 | } 5 | -------------------------------------------------------------------------------- /aspnet/fundamentals/static-files/_static/dir-browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/static-files/_static/dir-browse.png -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using WebApp1 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /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/models/formatting/_static/json-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/models/formatting/_static/json-response.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/text-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/models/formatting/_static/text-response.png -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/dependency-injection/_static/stat.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/1stName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/1stName.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelVM.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/options.png -------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-forms/sample/final/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using FormsTagHelper.ViewModels 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers -------------------------------------------------------------------------------- /aspnet/performance/index.rst: -------------------------------------------------------------------------------- 1 | Performance 2 | ----------- 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | measuring 8 | caching/index 9 | 10 | -------------------------------------------------------------------------------- /aspnet/publishing/iis/_static/addwebsitecontextmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/addwebsitecontextmenu.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/twilio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/twilio1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/new-field/_static/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/new-field/_static/se.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/Thumbs.db -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/ghost.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/int_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/int_m.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/p4.png -------------------------------------------------------------------------------- /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/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/architecture.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-databinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/simple-databinding.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-expressions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/simple-expressions.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-templates-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/simple-templates-1.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/_static/simple-templates-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/simple-templates-2.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/about-page-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/about-page-wide.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-glyphicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/theme-glyphicons.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/theme-tabstrips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/theme-tabstrips.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/manage-bower-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/manage-bower-packages.png -------------------------------------------------------------------------------- /aspnet/client-side/bower/_static/version-intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bower/_static/version-intellisense.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/record-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/record-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/wwwroot-knockout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/wwwroot-knockout.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/add-less-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/client-side/less-sass-fa/_static/add-scss-file.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/watch-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/watch-running.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/01-NewProjectDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/01-NewProjectDB.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/08-IntelliSense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/08-IntelliSense.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/advanced/_static/department-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/advanced/_static/department-details.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/diagram.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/change-budget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/change-budget.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/inheritance/_static/no-inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/inheritance/_static/no-inheritance.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/migrations/_static/migrations-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/migrations/_static/migrations-table.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/migrations/_static/students-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/migrations/_static/students-index.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/sort-filter-page/_static/filtering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/sort-filter-page/_static/filtering.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/sort-filter-page/_static/name-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/sort-filter-page/_static/name-order.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/_static/index-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/configuration/_static/index-view.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/hosting/_static/generic-error-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/hosting/_static/generic-error-page.png -------------------------------------------------------------------------------- /aspnet/hosting/aspnet-core-module/_static/ANCM-502_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/hosting/aspnet-core-module/_static/ANCM-502_5.png -------------------------------------------------------------------------------- /aspnet/migration/http-modules/_static/moduleshandlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/http-modules/_static/moduleshandlers.png -------------------------------------------------------------------------------- /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/mvc/models/formatting/_static/fiddler-composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/models/formatting/_static/fiddler-composer.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/intelclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/intelclass.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/intellemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/intellemail.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor.PNG -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelattr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelattr.png -------------------------------------------------------------------------------- /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/iis-with-msdeploy/_static/pub-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis-with-msdeploy/_static/pub-dialog.png -------------------------------------------------------------------------------- /aspnet/publishing/web-publishing-vs/_static/image-1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/web-publishing-vs/_static/image-1b.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/first-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/first-run.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa1.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa2.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa3.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa4.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa5.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa6.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa7.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa8.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/login2fa9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/login2fa9.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/new-project.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/security/authentication/accconfirm/_static/SM1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/SM1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/au.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/fb.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/rick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/rick.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/ssl.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/ssox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/ssox.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/01-mvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/identity/_static/01-mvc.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/02-reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/identity/_static/02-reg.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/04-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/identity/_static/04-db.png -------------------------------------------------------------------------------- /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-mvc-app/adding-model/_static/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/m1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/f12_rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/f12_rb.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/filter.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/int_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/int_get.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/rename.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/rename2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/rename2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/rename3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/rename3.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/th_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/th_font.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/ff.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/ms.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/val.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-web-api/_static/web-api-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-web-api/_static/web-api-project.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/azure.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/bootstrap-in-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/bootstrap-in-layout.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/hyperlink-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/hyperlink-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/folder-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/client-side/less-sass-fa/_static/main-css-created.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/restore-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/restore-packages.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-home-page_5000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/yeoman-home-page_5000.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/inheritance/_static/ssox-person-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/inheritance/_static/ssox-person-data.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/inheritance/_static/ssox-person-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/inheritance/_static/ssox-person-table.png -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/MVCCore/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/_static/config-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/configuration/_static/config-console.png -------------------------------------------------------------------------------- /aspnet/fundamentals/configuration/_static/custom-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/configuration/_static/custom-config.png -------------------------------------------------------------------------------- /aspnet/fundamentals/hosting/_static/detailed-error-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/hosting/_static/detailed-error-page.png -------------------------------------------------------------------------------- /aspnet/fundamentals/middleware/_static/console-loginline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/middleware/_static/console-loginline.png -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/migration/webapi/_static/webapimigration-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/webapi/_static/webapimigration-solution.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/src/ControllerDI/samplewebsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Title": "Dependency Injection in Controllers", 3 | "Updates": "2" 4 | } -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/_static/filter-pipeline-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/controllers/filters/_static/filter-pipeline-1.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/filters/_static/filter-pipeline-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/controllers/filters/_static/filter-pipeline-2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/dependency-injection/_static/screenshot.png -------------------------------------------------------------------------------- /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/LableHtmlTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/LableHtmlTag.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/fontoptions2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/fontoptions2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/labelaspfor2.png -------------------------------------------------------------------------------- /aspnet/mvc/views/tag-helpers/intro/_static/stmtcomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/tag-helpers/intro/_static/stmtcomplete.png -------------------------------------------------------------------------------- /aspnet/performance/caching/distributed/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/performance/caching/response/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/managesecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/managesecret.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/manage.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/pass1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/pass1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/pass2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/pass2.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/ssl.png -------------------------------------------------------------------------------- /aspnet/testing/integration-testing/_static/test-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/testing/integration-testing/_static/test-explorer.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/ints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/ints.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/hell3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/hell3.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/rick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/rick.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/search/_static/search_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/search/_static/search_get.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/chrome.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/validation/_static/newsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/newsc.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/.DS_Store -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/debugger.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/file-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/file-open.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/about-page-hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/about-page-hamburger.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/grid-without-clearfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/grid-without-clearfix.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/gruntfile-js-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/gruntfile-js-initial.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/typescript-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/typescript-options.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/03-TaskRunnerExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/03-TaskRunnerExplorer.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/04-TaskRunner-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/06-TaskRunner-First.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/07-TaskRunner-Series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/yeoman-yo-aspnet-created.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/course-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/course-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/ssox-ci-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/ssox-ci-data.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/ssox-tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/ssox-tables.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/edit-after-change-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/edit-after-change-1.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/edit-after-change-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/edit-after-change-2.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/intro/samples/cu-final/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/intro/samples/cu-final/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/migrations/_static/open-command-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/migrations/_static/open-command-window.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/migrations/_static/open-in-file-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/migrations/_static/open-in-file-explorer.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/read-related-data/_static/courses-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/courses-index.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/read-related-data/_static/eager-loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/eager-loading.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/update-related-data/_static/course-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/update-related-data/_static/course-edit.png -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/_static/session-established.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/app-state/_static/session-established.png -------------------------------------------------------------------------------- /aspnet/fundamentals/logging/_static/console-logger-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/logging/_static/console-logger-output.png -------------------------------------------------------------------------------- /aspnet/fundamentals/servers/_static/serverdemo-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/servers/_static/serverdemo-properties.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/configuration/_static/add-appsettings-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/configuration/_static/add-appsettings-json.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/updated-gulpfile-with-concat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/updated-gulpfile-with-concat.png -------------------------------------------------------------------------------- /aspnet/mobile/index.rst: -------------------------------------------------------------------------------- 1 | Mobile 2 | ------ 3 | 4 | .. toctree:: 5 | :titlesonly: 6 | 7 | /client-side/responsive-design 8 | native-mobile-backend 9 | 10 | -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/sample/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003121" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/_static/json-response-fiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/models/formatting/_static/json-response-fiddler.png -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/razor-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/dependency-injection/_static/razor-fields.png -------------------------------------------------------------------------------- /aspnet/mvc/views/dependency-injection/_static/updateprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/dependency-injection/_static/updateprofile.png -------------------------------------------------------------------------------- /aspnet/mvc/views/overview/_static/views_solution_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/overview/_static/views_solution_explorer.png -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Views/Home/Login1.cshtml: -------------------------------------------------------------------------------- 1 | @inherits CustomRazorPage 2 | 3 |
The Login Email: @Model.Email
4 |
Custom text: @CustomText
-------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-forms/sample/final/Views/Demo/RegisterRoute.cshtml: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /aspnet/performance/caching/response/_static/proxy-and-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/performance/caching/response/_static/proxy-and-cache.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/_static/select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/_static/select-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/first-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/first-run.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp03.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp04.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp05.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp06.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp07.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBApp08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBApp08.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/pass1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/pass1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/pass2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/pass2.PNG -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/files.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/folder.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/indiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/indiv.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/pending.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/quick.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/add_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/debug_menu.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/dbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/m55.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/azure-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/azure-portal.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/deployment.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/dot-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/dot-restore.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/init-commit.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/myfirstapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/myfirstapp.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/vscode-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/vscode-git.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/angular-solution-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/_static/angular-solution-explorer.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/partials/personlist.html: -------------------------------------------------------------------------------- 1 |
2 |

PERSONS PAGE

3 | 4 |
-------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/editable-grid-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/editable-grid-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/hyperlink-caps-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/hyperlink-caps-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/input-binding-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/input-binding-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/record-winloss-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/record-winloss-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/simple-binding-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/simple-binding-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/less-test-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/less-sass-fa/_static/less-test-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/less-sass-fa/_static/list-icons-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/less-sass-fa/_static/list-icons-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/bindings-project-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/bindings-project-open.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/devdependencies-grunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/devdependencies-grunt.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/gruntfile-js-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/gruntfile-js-complete.png -------------------------------------------------------------------------------- /aspnet/client-side/yeoman/_static/yeoman-loading-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/yeoman/_static/yeoman-loading-dependencies.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/dates-no-times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/dates-no-times.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/student-course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/student-course.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/student-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/student-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/read-related-data/_static/separate-queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/separate-queries.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/update-related-data/_static/course-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/update-related-data/_static/course-create.png -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/MVCCore/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/entity-framework-6/sample/MVCCore/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/_static/no-session-established.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/app-state/_static/no-session-established.png -------------------------------------------------------------------------------- /aspnet/fundamentals/middleware/_static/console-logmiddleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/middleware/_static/console-logmiddleware.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new-project-select-mvc-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/new-project-select-mvc-template.png -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using ResponseFormattingSample 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBLogin1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBLogin1.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBLogin2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBLogin2.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/FBLogin3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/FBLogin3.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/enablessl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/enablessl.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/mvc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/mvc1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/add_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_class.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/iis_express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/new_project.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/new_project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/new_project2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/ssox2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/vd22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/vd22.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/cas.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/mig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pub.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/rgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/rgd.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/sql.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/create-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/create-web-app.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/dotnet-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/vscode-welcome.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/about-page-hamburger-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/about-page-hamburger-open.png -------------------------------------------------------------------------------- /aspnet/client-side/knockout/_static/record-addresult-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/knockout/_static/record-addresult-screenshot.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/grunt-solution-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/grunt-solution-explorer.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/task-runner-explorer-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-menu.png -------------------------------------------------------------------------------- /aspnet/client-side/using-gulp/_static/05-TaskRunner-BeforeBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/05-TaskRunner-BeforeBuild.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/advanced/_static/update-credits-rows-affected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/advanced/_static/update-credits-rows-affected.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/department-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/department-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/enrollment-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/enrollment-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/instructor-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/instructor-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/read-related-data/_static/instructors-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/instructors-index.png -------------------------------------------------------------------------------- /aspnet/fundamentals/logging/_static/console-logger-trace-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/logging/_static/console-logger-trace-output.png -------------------------------------------------------------------------------- /aspnet/fundamentals/logging/_static/trace-source-console-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/logging/_static/trace-source-console-output.png -------------------------------------------------------------------------------- /aspnet/fundamentals/middleware/_static/request-delegate-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/middleware/_static/request-delegate-pipeline.png -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net4/Asp.Net4/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/project-structure-controller-view.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/samples/WebApp1/src/WebApp1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/samples/WebApp1/src/WebApp1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /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/_static/apppoolsbasicsettingscontextmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/iis/_static/apppoolsbasicsettingscontextmenu.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/managesecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/managesecret.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/select-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/identity/_static/05-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/identity/_static/05-dependencies.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/managesecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/managesecret.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/new-project.png -------------------------------------------------------------------------------- /aspnet/security/authentication/sociallogins/_static/new-project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/new-project2.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-controller/_static/hell1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/hell1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/rick4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/rick4.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/welcome.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-view/_static/add_view_dlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-view/_static/hell_template.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/start-mvc/_static/alt_new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/start-mvc/_static/alt_new_project.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/design.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/di_intel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/di_intel.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/stopIIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/stopIIS.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/maas1.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/newrg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/noath.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pubc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/pubs.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/show.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/debug-items-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/debug-items-added.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/launch-debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/launch-debugger.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/vscode-git-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/vscode-startupcs.png -------------------------------------------------------------------------------- /aspnet/client-side/bootstrap/_static/bootstrap-in-starter-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/client-side/bootstrap/_static/narrow-and-wide-viewport-grid.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/task-runner-explorer-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-tasks.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/ssox-after-migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/ssox-after-migration.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/string-length-errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/string-length-errors.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/add-departments-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/add-departments-controller.png -------------------------------------------------------------------------------- /aspnet/fundamentals/app-state/_static/session-after-response-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/app-state/_static/session-after-response-error.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/_static/request-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/dependency-injection/_static/request-services.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using DependencyInjectionSample 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /aspnet/fundamentals/environments/_static/project-properties-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/environments/_static/project-properties-debug.png -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/default-404-status-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/error-handling/_static/default-404-status-code.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/main/Views/Shared/Generic.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Generic"; 3 | } 4 | 5 |

Generic View

6 |

@ViewData["Message"]

7 | 8 | -------------------------------------------------------------------------------- /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/working-with-forms/sample/final/Views/Shared/EditorTemplates/String.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /aspnet/performance/caching/distributed/_static/SqlServerCacheTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/performance/caching/distributed/_static/SqlServerCacheTable.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm1.png -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm2.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm3.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm4.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm5.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm6.PNG -------------------------------------------------------------------------------- /aspnet/security/authentication/accconfirm/_static/loginaccconfirm7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/accconfirm/_static/loginaccconfirm7.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/select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/sociallogins/_static/select-project.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/tutorials/first-mvc-app/adding-model/_static/add_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_controller.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/add_scaffold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_scaffold2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/1.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/da.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/rm.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/working-with-sql/_static/iisExIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/working-with-sql/_static/iisExIcon.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/new_prj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/new_prj.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/portalrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/portalrg.png -------------------------------------------------------------------------------- /common/samples/WebApplication1/src/WebApplication1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/common/samples/WebApplication1/src/WebApplication1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /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/using-grunt/_static/task-runner-explorer-run-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-run-clean.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/courseassignment-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/courseassignment-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/complex-data-model/_static/officeassignment-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/complex-data-model/_static/officeassignment-entity.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/concurrency/_static/edit-after-change-for-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/concurrency/_static/edit-after-change-for-delete.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/read-related-data/_static/add-courses-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/add-courses-controller.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/update-related-data/_static/instructor-edit-office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/update-related-data/_static/instructor-edit-office.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/_static/lifetimes_request1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/dependency-injection/_static/lifetimes_request1.png -------------------------------------------------------------------------------- /aspnet/fundamentals/dependency-injection/_static/lifetimes_request2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/dependency-injection/_static/lifetimes_request2.png -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/developer-exception-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/error-handling/_static/developer-exception-page.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/dependency-injection/_static/server-greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/controllers/dependency-injection/_static/server-greeting.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/01-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/09-azure-giturl.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/11-add-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/11-add-remote.png -------------------------------------------------------------------------------- /aspnet/publishing/vsts-continuous-deployment/_static/dotnet-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/vsts-continuous-deployment/_static/dotnet-publish.png -------------------------------------------------------------------------------- /aspnet/publishing/vsts-continuous-deployment/_static/dotnet-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/vsts-continuous-deployment/_static/dotnet-restore.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-model/_static/add_controller2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-model/_static/add_controller2.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/edit7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/edit7.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/f12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/f12.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/controller-methods-views/_static/val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/controller-methods-views/_static/val.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf_final.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/create_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/create_as.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/new_project.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/add-swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/add-swagger.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/custom-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/custom-info.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/swagger-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/swagger-ui.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/dependencies-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/dependencies-restore.png -------------------------------------------------------------------------------- /aspnet/tutorials/your-first-mac-aspnet/_static/git-push-azure-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/your-first-mac-aspnet/_static/git-push-azure-master.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/data/ef-mvc/read-related-data/_static/add-instructors-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/add-instructors-controller.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/update-related-data/_static/instructor-edit-courses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/update-related-data/_static/instructor-edit-courses.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/update-related-data/_static/instructor-index-courses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/update-related-data/_static/instructor-index-courses.png -------------------------------------------------------------------------------- /aspnet/migration/mvc/_static/new-project-select-empty-aspnet5-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/mvc/_static/new-project-select-empty-aspnet5-template.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/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/partial/sample/src/PartialViewsSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/views/partial/sample/src/PartialViewsSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/mvc/views/razor/sample/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace RazorSample.Models 2 | { 3 | public class LoginViewModel 4 | { 5 | public string Email { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-forms/sample/final/Views/Demo/RegisterFormOnly.cshtml: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/03-source-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/04-browser-runapp.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/10-team-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/10-team-explorer.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/12-initial-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/12-initial-commit.png -------------------------------------------------------------------------------- /aspnet/publishing/vsts-continuous-deployment/_static/web-app-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/vsts-continuous-deployment/_static/web-app-deployment.png -------------------------------------------------------------------------------- /aspnet/tutorials/first-mvc-app/adding-controller/_static/add_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/adding-controller/_static/rick_routedata.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/custom-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/custom-header.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/bundling-and-minification/_static/task-runner-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/bundling-and-minification/_static/task-runner-explorer.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/solution-explorer-after-all-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/solution-explorer-after-all-tasks.png -------------------------------------------------------------------------------- /aspnet/client-side/using-grunt/_static/task-runner-explorer-run-each-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-grunt/_static/task-runner-explorer-run-each-task.png -------------------------------------------------------------------------------- /aspnet/data/entity-framework-6/sample/EF6/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/developer-exception-page-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/error-handling/_static/developer-exception-page-query.png -------------------------------------------------------------------------------- /aspnet/migration/configuration/samples/WebApp1/src/WebApp1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/configuration/samples/WebApp1/src/WebApp1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/migration/http-modules/sample/Asp.Net5/src/Asp.Net5/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/migration/http-modules/sample/Asp.Net5/src/Asp.Net5/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/main/Views/Shared/Destination.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Destination"; 3 | } 4 | 5 |

Destination View

6 |

@ViewData["Message"]

7 | 8 | -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 |

@ViewData["Title"]

5 |

A Message From The Server

-------------------------------------------------------------------------------- /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/mvc/views/razor/sample/Views/Home/Contact6.cshtml: -------------------------------------------------------------------------------- 1 | @functions { 2 | public string GetHello() 3 | { 4 | return "Hello"; 5 | } 6 | } 7 | 8 |
From method: @GetHello()
9 | -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/02-web-site-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/02-web-site-template.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/05-azure-newwebapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/05-azure-newwebapp.png -------------------------------------------------------------------------------- /aspnet/publishing/azure-continuous-deployment/_static/06-azure-newappblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/publishing/azure-continuous-deployment/_static/13-verify-deployment.png -------------------------------------------------------------------------------- /aspnet/publishing/vsts-continuous-deployment/_static/setup-build-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/vsts-continuous-deployment/_static/setup-build-variables.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/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/validation/_static/p8_IE9_disableJavaScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/first-mvc-app/validation/_static/p8_IE9_disableJavaScript.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/alt_new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/alt_new_project.png -------------------------------------------------------------------------------- /aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf_servername.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/publish-to-azure-webapp-using-vs/_static/conf_servername.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/data-annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/data-annotations.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/get-try-it-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/get-try-it-out.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/using-gulp/_static/02-SolutionExplorer-TaskRunnerExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/using-gulp/_static/02-SolutionExplorer-TaskRunnerExplorer.png -------------------------------------------------------------------------------- /aspnet/data/ef-mvc/read-related-data/_static/instructors-index-no-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/instructors-index-no-selection.png -------------------------------------------------------------------------------- /aspnet/fundamentals/error-handling/_static/developer-exception-page-headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/error-handling/_static/developer-exception-page-headers.png -------------------------------------------------------------------------------- /aspnet/publishing/vsts-continuous-deployment/_static/compress-publish-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/vsts-continuous-deployment/_static/compress-publish-output.png -------------------------------------------------------------------------------- /aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/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/fundamentals/app-state/_static/session-established-with-request-counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/app-state/_static/session-established-with-request-counts.png -------------------------------------------------------------------------------- /aspnet/mvc/controllers/routing/sample/main/StartupUseMvc.cs: -------------------------------------------------------------------------------- 1 | /* 2 | #region snippet_1 3 | // In Startup class 4 | public void Configure(IApplicationBuilder app) 5 | { 6 | app.UseMvc(); 7 | } 8 | #endregion 9 | */ -------------------------------------------------------------------------------- /aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Contact"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 | -------------------------------------------------------------------------------- /aspnet/mvc/views/working-with-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/publishing/azure-continuous-deployment/_static/08-azure-localrepository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/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/ivaylokenov/Docs/HEAD/aspnet/security/data-protection/consumer-apis/purpose-strings/_static/purposes.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/basic-no-annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/basic-no-annotations.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/manage-nuget-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/manage-nuget-packages.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/swagger-xml-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/swagger-xml-comments.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/triple-slash-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/triple-slash-comments.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/xml-comments-extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/xml-comments-extended.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /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/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/mvc/models/formatting/sample/src/ResponseFormattingSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/performance/caching/response/sample/src/ResponseCacheSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using ResponseCacheSample 2 | @using Microsoft.Extensions.Options 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /aspnet/security/data-protection/extensibility/key-management/_static/keycreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/data-protection/extensibility/key-management/_static/keycreation.png -------------------------------------------------------------------------------- /aspnet/security/data-protection/extensibility/key-management/_static/keyretrieval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/data-protection/extensibility/key-management/_static/keyretrieval.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/data/ef-mvc/read-related-data/_static/instructors-index-instructor-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/data/ef-mvc/read-related-data/_static/instructors-index-instructor-selected.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/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/performance/caching/response/sample/src/ResponseCacheSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/performance/caching/response/sample/src/ResponseCacheSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aspnet/publishing/vsts-continuous-deployment/_static/create-empty-build-definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/publishing/vsts-continuous-deployment/_static/create-empty-build-definition.png -------------------------------------------------------------------------------- /aspnet/security/data-protection/implementation/subkeyderivation/_static/cbcprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/data-protection/implementation/subkeyderivation/_static/cbcprocess.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/custom-files-folder-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/custom-files-folder-view.png -------------------------------------------------------------------------------- /aspnet/fundamentals/owin/sample/src/NowinWebSockets/wwwroot/placeholder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /aspnet/security/data-protection/implementation/subkeyderivation/_static/galoisprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/data-protection/implementation/subkeyderivation/_static/galoisprocess.png -------------------------------------------------------------------------------- /aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/app/partials/personcomponent.html: -------------------------------------------------------------------------------- 1 |
2 | First Name: {{vm.firstName}}
3 | Last Name: {{vm.lastName}} 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/dependency-injection/sample/DependencyInjectionSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/fundamentals/dependency-injection/sample/DependencyInjectionSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /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/views/razor/sample/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/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /aspnet/tutorials/web-api-help-pages-using-swagger/_static/data-annotations-response-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/tutorials/web-api-help-pages-using-swagger/_static/data-annotations-response-types.png -------------------------------------------------------------------------------- /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/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/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/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/security/authentication/2fa/sample/WebSMS/src/WebSMS/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /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/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/Docs/HEAD/aspnet/client-side/angular/sample/AngularSample/src/AngularSample/wwwroot/images/Banner-02-VS.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 | } --------------------------------------------------------------------------------