├── .editorconfig ├── .gitattributes ├── .gitignore ├── CODE-OF-CONDUCT.md ├── LICENSE ├── LICENSE-CODE ├── RazorPages ├── models │ └── ModelStateError │ │ ├── Data │ │ └── ModelStateErrorContext.cs │ │ ├── ModelStateError.csproj │ │ ├── Models │ │ └── Contact.cs │ │ ├── Pages │ │ ├── Contacts │ │ │ ├── Create.cshtml │ │ │ ├── Create.cshtml.cs │ │ │ ├── Delete.cshtml │ │ │ ├── Delete.cshtml.cs │ │ │ ├── Details.cshtml │ │ │ ├── Details.cshtml.cs │ │ │ ├── Edit.cshtml │ │ │ ├── Edit.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map └── readme.txt ├── ThirdPartyNotices ├── common └── stub.txt ├── fundamentals ├── JSON │ └── RemoveMe.txt ├── aot │ └── diagnostics │ │ ├── Rdg1 │ │ ├── Program.cs │ │ ├── RgdDiagnostics.csproj │ │ └── appsettings.json │ │ ├── Rdg10 │ │ ├── Program.cs │ │ └── Rdg10.csproj │ │ ├── Rdg11 │ │ ├── Program.cs │ │ └── Rdg11.csproj │ │ ├── Rdg12 │ │ ├── Program.cs │ │ └── Rdg12.csproj │ │ ├── Rdg13 │ │ ├── Program.cs │ │ ├── Rdg13.csproj │ │ └── appsettings.json │ │ ├── Rdg2 │ │ ├── Program.cs │ │ ├── Rdg2.csproj │ │ └── appsettings.json │ │ ├── Rdg4 │ │ ├── Program.cs │ │ ├── Rdg4.csproj │ │ └── appsettings.json │ │ ├── Rdg5 │ │ ├── Program.cs │ │ ├── Rdg5.csproj │ │ └── appsettings.json │ │ ├── Rdg6 │ │ ├── Program.cs │ │ ├── Rdg6.csproj │ │ └── appsettings.json │ │ ├── Rdg7 │ │ ├── Program.cs │ │ └── Rdg7.csproj │ │ ├── Rdg8 │ │ ├── Program.cs │ │ ├── Rdg8.csproj │ │ └── appsettings.json │ │ └── Rdg9 │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Rdg9.csproj │ │ └── appsettings.json ├── configuration │ ├── 2.x │ │ └── ConfigurationSample │ │ │ ├── ConfigurationSample.csproj │ │ │ ├── EFConfigurationProvider │ │ │ ├── EFConfigurationContext.cs │ │ │ ├── EFConfigurationProvider.cs │ │ │ └── EFConfigurationSource.cs │ │ │ ├── Extensions │ │ │ └── EntityFrameworkExtensions.cs │ │ │ ├── Models │ │ │ ├── ArrayExample.cs │ │ │ ├── EFConfigurationValue.cs │ │ │ ├── JsonArrayExample.cs │ │ │ ├── Starship.cs │ │ │ └── TvShow.cs │ │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.json │ │ │ ├── appsettings.json │ │ │ ├── json_array.json │ │ │ ├── starship.json │ │ │ └── tvshow.xml │ ├── 3.x │ │ ├── ConfigSample │ │ │ ├── ConfigSample.csproj │ │ │ ├── Controllers │ │ │ │ └── Home2Controller.cs │ │ │ ├── MyArray.json │ │ │ ├── MyConfig.Development.json │ │ │ ├── MyConfig.Production.json │ │ │ ├── MyConfig.json │ │ │ ├── MyIniConfig.Development.ini │ │ │ ├── MyIniConfig.ini │ │ │ ├── MySubsection.json │ │ │ ├── MyXMLFile.xml │ │ │ ├── MyXMLFile3.xml │ │ │ ├── Options │ │ │ │ ├── ArrayExample.cs │ │ │ │ ├── ColorOptions.cs │ │ │ │ ├── MyConfigServiceCollectionExtensions.cs │ │ │ │ ├── PositionOptions.cs │ │ │ │ └── Widgets.cs │ │ │ ├── Pages │ │ │ │ ├── Array.cshtml │ │ │ │ ├── Array.cshtml.cs │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Index2.cshtml │ │ │ │ ├── Index2.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── Test.cshtml │ │ │ │ ├── Test.cshtml.cs │ │ │ │ ├── Test2.cshtml │ │ │ │ ├── Test2.cshtml.cs │ │ │ │ ├── Test21.cshtml │ │ │ │ ├── Test21.cshtml.cs │ │ │ │ ├── Test22.cshtml │ │ │ │ ├── Test22.cshtml.cs │ │ │ │ ├── Test25.cshtml │ │ │ │ ├── Test25.cshtml.cs │ │ │ │ ├── Test26.cshtml │ │ │ │ ├── Test26.cshtml.cs │ │ │ │ ├── Test3.cshtml │ │ │ │ ├── Test3.cshtml.cs │ │ │ │ ├── Test5.cshtml │ │ │ │ ├── Test5.cshtml.cs │ │ │ │ ├── TestNum.cshtml │ │ │ │ ├── TestNum.cshtml.cs │ │ │ │ ├── TestSection.cshtml │ │ │ │ ├── TestSection.cshtml.cs │ │ │ │ ├── TestSection2.cshtml │ │ │ │ ├── TestSection2.cshtml.cs │ │ │ │ ├── TestSection4.cshtml │ │ │ │ ├── TestSection4.cshtml.cs │ │ │ │ ├── XML │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Index.cshtml.cs │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── ProgramArray.cs │ │ │ ├── ProgramINI.cs │ │ │ ├── ProgramJSON.cs │ │ │ ├── ProgramJSON2.cs │ │ │ ├── ProgramJSONarray.cs │ │ │ ├── ProgramJSONsection.cs │ │ │ ├── ProgramSwitch.cs │ │ │ ├── ProgramXML.cs │ │ │ ├── Startup.cs │ │ │ ├── Startup2.cs │ │ │ ├── Startup4.cs │ │ │ ├── StartupKey.cs │ │ │ ├── StartupMVC.cs │ │ │ ├── Value3.json │ │ │ ├── Views │ │ │ │ └── Home2 │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Privacy.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ └── bootstrap.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ └── ConfigurationSample │ │ │ ├── ConfigurationSample.csproj │ │ │ ├── EFConfigurationProvider │ │ │ ├── EFConfigurationContext.cs │ │ │ ├── EFConfigurationProvider.cs │ │ │ └── EFConfigurationSource.cs │ │ │ ├── Extensions │ │ │ └── EntityFrameworkExtensions.cs │ │ │ ├── Models │ │ │ ├── ArrayExample.cs │ │ │ ├── EFConfigurationValue.cs │ │ │ ├── JsonArrayExample.cs │ │ │ ├── Starship.cs │ │ │ └── TvShow.cs │ │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── TvShow.cshtml │ │ │ ├── TvShow.cshtml.cs │ │ │ ├── TvShow2.cshtml │ │ │ ├── TvShow2.cshtml.cs │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── json_array.json │ │ │ ├── starship.json │ │ │ └── tvshow.xml │ ├── 6.x │ │ ├── ConfigSample │ │ │ ├── ConfigSample.csproj │ │ │ ├── MyArray.json │ │ │ ├── MyConfig.Development.json │ │ │ ├── MyConfig.Production.json │ │ │ ├── MyConfig.json │ │ │ ├── MyIniConfig.Development.ini │ │ │ ├── MyIniConfig.ini │ │ │ ├── MySubsection.json │ │ │ ├── MyXMLFile.xml │ │ │ ├── MyXMLFile3.xml │ │ │ ├── Options │ │ │ │ ├── ArrayExample.cs │ │ │ │ ├── ColorOptions.cs │ │ │ │ ├── MyConfigServiceCollectionExtensions.cs │ │ │ │ ├── PositionOptions.cs │ │ │ │ └── Widgets.cs │ │ │ ├── Pages │ │ │ │ ├── Array.cshtml │ │ │ │ ├── Array.cshtml.cs │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Index2.cshtml │ │ │ │ ├── Index2.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── Test.cshtml │ │ │ │ ├── Test.cshtml.cs │ │ │ │ ├── Test2.cshtml │ │ │ │ ├── Test2.cshtml.cs │ │ │ │ ├── Test21.cshtml │ │ │ │ ├── Test21.cshtml.cs │ │ │ │ ├── Test22.cshtml │ │ │ │ ├── Test22.cshtml.cs │ │ │ │ ├── Test25.cshtml │ │ │ │ ├── Test25.cshtml.cs │ │ │ │ ├── Test26.cshtml │ │ │ │ ├── Test26.cshtml.cs │ │ │ │ ├── Test3.cshtml │ │ │ │ ├── Test3.cshtml.cs │ │ │ │ ├── Test5.cshtml │ │ │ │ ├── Test5.cshtml.cs │ │ │ │ ├── TestNum.cshtml │ │ │ │ ├── TestNum.cshtml.cs │ │ │ │ ├── TestSection.cshtml │ │ │ │ ├── TestSection.cshtml.cs │ │ │ │ ├── TestSection2.cshtml │ │ │ │ ├── TestSection2.cshtml.cs │ │ │ │ ├── TestSection4.cshtml │ │ │ │ ├── TestSection4.cshtml.cs │ │ │ │ ├── XML │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Index.cshtml.cs │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Service.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ └── bootstrap.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ ├── ConfigurationSample │ │ │ ├── ConfigurationSample.csproj │ │ │ ├── EFConfigurationProvider │ │ │ │ ├── EFConfigurationContext.cs │ │ │ │ ├── EFConfigurationProvider.cs │ │ │ │ └── EFConfigurationSource.cs │ │ │ ├── Extensions │ │ │ │ └── EntityFrameworkExtensions.cs │ │ │ ├── Models │ │ │ │ ├── ArrayExample.cs │ │ │ │ ├── EFConfigurationValue.cs │ │ │ │ ├── JsonArrayExample.cs │ │ │ │ ├── Starship.cs │ │ │ │ └── TvShow.cs │ │ │ ├── Pages │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ └── bootstrap.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ └── EFconfigSample │ │ │ ├── EFConfigSample.csproj │ │ │ ├── EFConfigurationProvider │ │ │ ├── EFConfigurationContext.cs │ │ │ ├── EFConfigurationProvider.cs │ │ │ └── EFConfigurationSource.cs │ │ │ ├── Extensions │ │ │ └── EntityFrameworkExtensions.cs │ │ │ ├── Models │ │ │ └── EFConfigurationValue.cs │ │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ └── bootstrap.css │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ └── bootstrap.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ └── jquery.js │ └── 8.x │ │ └── ConfigSample │ │ ├── ConfigSample.csproj │ │ ├── MyArray.json │ │ ├── MyConfig.Development.json │ │ ├── MyConfig.Production.json │ │ ├── MyConfig.json │ │ ├── MyIniConfig.Development.ini │ │ ├── MyIniConfig.ini │ │ ├── MySubsection.json │ │ ├── MyXMLFile.xml │ │ ├── MyXMLFile3.xml │ │ ├── Options │ │ ├── ArrayExample.cs │ │ ├── ColorOptions.cs │ │ ├── MyConfigServiceCollectionExtensions.cs │ │ ├── NameTitleOptions.cs │ │ ├── PositionOptions.cs │ │ └── Widgets.cs │ │ ├── Pages │ │ ├── Array.cshtml │ │ ├── Array.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Index2.cshtml │ │ ├── Index2.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Test.cshtml │ │ ├── Test.cshtml.cs │ │ ├── Test2.cshtml │ │ ├── Test2.cshtml.cs │ │ ├── Test21.cshtml │ │ ├── Test21.cshtml.cs │ │ ├── Test22.cshtml │ │ ├── Test22.cshtml.cs │ │ ├── Test25.cshtml │ │ ├── Test25.cshtml.cs │ │ ├── Test26.cshtml │ │ ├── Test26.cshtml.cs │ │ ├── Test3.cshtml │ │ ├── Test3.cshtml.cs │ │ ├── Test33.cshtml │ │ ├── Test33.cshtml.cs │ │ ├── Test5.cshtml │ │ ├── Test5.cshtml.cs │ │ ├── TestNum.cshtml │ │ ├── TestNum.cshtml.cs │ │ ├── TestSection.cshtml │ │ ├── TestSection.cshtml.cs │ │ ├── TestSection2.cshtml │ │ ├── TestSection2.cshtml.cs │ │ ├── TestSection4.cshtml │ │ ├── TestSection4.cshtml.cs │ │ ├── XML │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Service.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-reboot.css │ │ │ └── bootstrap.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ └── bootstrap.js │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ └── jquery.validate.unobtrusive.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ └── jquery.validate.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ └── jquery.js ├── environments │ ├── 3.0 │ │ └── EnvironmentsSample │ │ │ ├── .vscode │ │ │ └── launch.json │ │ │ ├── EnvironmentsSample.csproj │ │ │ ├── Pages │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.cs │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── StartupClassConventions.cs │ │ │ ├── StartupInject.cs │ │ │ ├── StartupMethodConventions.cs │ │ │ ├── StartupTemplate.cs │ │ │ ├── appsettings - Copy.Development.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.Development.json │ │ │ ├── appsettings.Production.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ └── bootstrap.css │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ └── bootstrap.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ └── jquery.js │ └── 6.0 │ │ └── EnvironmentsSample │ │ ├── .vscode │ │ └── launch.json │ │ ├── EnvironmentsSample.csproj │ │ ├── Pages │ │ ├── About.cshtml │ │ ├── About.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.rtl.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── bootstrap.js │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ └── jquery.validate.unobtrusive.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ └── jquery.validate.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ └── jquery.js ├── host │ └── TimedBackgroundTasks │ │ ├── Program.cs │ │ ├── TimedBackgroundTasks.csproj │ │ ├── TimedHostedService.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── logging │ ├── 2.x │ │ └── TodoApiSample │ │ │ ├── Controllers │ │ │ └── TodoController.cs │ │ │ ├── Core │ │ │ ├── Interfaces │ │ │ │ └── ITodoRepository.cs │ │ │ ├── LoggingEvents.cs │ │ │ └── Model │ │ │ │ └── TodoItem.cs │ │ │ ├── Infrastructure │ │ │ └── TodoRepository.cs │ │ │ ├── Pages │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.cs │ │ │ ├── Contact.cshtml │ │ │ ├── Contact.cshtml.cs │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── Startup.cs │ │ │ ├── TodoApiSample.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── appsettings2.json │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ └── banner3.svg │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ └── bootstrap.css │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── npm.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ └── jquery.js │ ├── 3.x │ │ ├── LoggingConsoleApp │ │ │ ├── LoggingConsoleApp.csproj │ │ │ └── Program.cs │ │ ├── MyMain │ │ │ ├── 1appsettings.Development.json │ │ │ ├── 1appsettings.Staging.json │ │ │ ├── 1appsettings.Staging2.json │ │ │ ├── 1appsettings.json │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ ├── Models │ │ │ │ └── ErrorViewModel.cs │ │ │ ├── MyMain.csproj │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Privacy.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Trace.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ └── bootstrap.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ ├── TodoApiDTO │ │ │ ├── Controllers │ │ │ │ ├── TestController.cs │ │ │ │ └── TodoItemsController.cs │ │ │ ├── Models │ │ │ │ ├── MyLogEvents.cs │ │ │ │ ├── MyUtil.cs │ │ │ │ ├── TodoContext.cs │ │ │ │ ├── TodoItem.cs │ │ │ │ └── TodoItemDTO.cs │ │ │ ├── Pages │ │ │ │ ├── About.cshtml │ │ │ │ ├── About.cshtml.cs │ │ │ │ ├── Contact.cshtml │ │ │ │ ├── Contact.cshtml.cs │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── TodoApiDTO.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.MSFT.json │ │ │ ├── appsettings.Prod2.json │ │ │ ├── appsettings.Production.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ └── bootstrap.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ └── TodoApiSample │ │ │ ├── Controllers │ │ │ └── TodoController.cs │ │ │ ├── Core │ │ │ ├── Interfaces │ │ │ │ └── ITodoRepository.cs │ │ │ ├── LoggingEvents.cs │ │ │ └── Model │ │ │ │ └── TodoItem.cs │ │ │ ├── Infrastructure │ │ │ └── TodoRepository.cs │ │ │ ├── MyService.cs │ │ │ ├── Pages │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── Startup.cs │ │ │ ├── Startup2.cs │ │ │ ├── TodoApiSample.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── appsettings2.json │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ └── bootstrap.css │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ └── bootstrap.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ └── jquery.js │ ├── 6.x │ │ ├── TodoApi │ │ │ ├── Controllers │ │ │ │ ├── TodoItemsController.cs │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── Models │ │ │ │ ├── TodoContext.cs │ │ │ │ └── TodoItem.cs │ │ │ ├── Program.cs │ │ │ ├── TodoApi.csproj │ │ │ ├── WeatherForecast.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── TodoApiDTO │ │ │ ├── Controllers │ │ │ │ ├── TodoItemsController.cs │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── Models │ │ │ │ ├── MyLogEvents.cs │ │ │ │ ├── TodoContext.cs │ │ │ │ ├── TodoItem.cs │ │ │ │ └── TodoItemDTO.cs │ │ │ ├── Pages │ │ │ │ ├── About.cshtml │ │ │ │ ├── About.cshtml.cs │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── TodoApi.csproj │ │ │ ├── WeatherForecast.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.rtl.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ ├── WebApp │ │ │ ├── Pages │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── WebApp.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.rtl.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ └── WebLog │ │ │ ├── Program.cs │ │ │ ├── WebLog.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── loggermessage │ │ ├── 2.x │ │ └── LoggerMessageSample │ │ │ ├── Data │ │ │ ├── AppDbContext.cs │ │ │ └── Quote.cs │ │ │ ├── Internal │ │ │ └── LoggerExtensions.cs │ │ │ ├── LoggerMessageSample.csproj │ │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.json │ │ │ └── appsettings.json │ │ └── 3.x │ │ └── LoggerMessageSample │ │ ├── Data │ │ ├── AppDbContext.cs │ │ └── Quote.cs │ │ ├── Internal │ │ └── LoggerExtensions.cs │ │ ├── LoggerMessageSample.csproj │ │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ └── appsettings.json ├── middleware │ ├── problem-details-service │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── MathErrorFeature.cs │ │ ├── ProblemDetailService.csproj │ │ ├── Program.cs │ │ ├── SampleProblemDetailsWriter.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── rate-limit │ │ ├── WebRate2 │ │ ├── Controllers │ │ │ └── Home2Controller.cs │ │ ├── Models │ │ │ ├── ErrorViewModel.cs │ │ │ └── MyRateLimitOptions.cs │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Views │ │ │ ├── Home2 │ │ │ │ ├── Index.cshtml │ │ │ │ ├── NoLimit.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── WebRate2.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── WebRateLimitAuth │ │ ├── .config │ │ └── dotnet-tools.json │ │ ├── Areas │ │ └── Identity │ │ │ └── Pages │ │ │ └── _ViewStart.cshtml │ │ ├── Controllers │ │ └── Home2Controller.cs │ │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── MyRateLimitOptions.cs │ │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── SampleRateLimiterPolicy.cs │ │ ├── Views │ │ ├── Home2 │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── WebRateLimitAuth.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── minimal-apis │ └── samples │ │ ├── FormBinding │ │ ├── Models │ │ │ ├── Todo.cs │ │ │ ├── TodoDb.cs │ │ │ └── TodoDto.cs │ │ ├── Program.cs │ │ ├── TodoApi.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ └── sample.html │ │ ├── IFormFile │ │ ├── IformFile.csproj │ │ ├── MyUtils.cs │ │ ├── Program.cs │ │ └── appsettings.json │ │ ├── IResultImplementation │ │ ├── ContactsHandler.cs │ │ ├── Data │ │ │ └── IResultImplementationContext.cs │ │ ├── IResultImplementation.csproj │ │ ├── Models │ │ │ └── Contact.cs │ │ ├── Program.cs │ │ ├── Tests │ │ │ └── IResultImplementationTest.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── KeyServiceController │ │ ├── KeyServiceController.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ │ ├── KeyServiceMinAPI │ │ ├── KeyServiceMinAPI.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ │ ├── MinApiTestsSample │ │ ├── IntegrationTests │ │ │ ├── Helpers │ │ │ │ ├── TestAuthHandler.cs │ │ │ │ ├── TestEmailService.cs │ │ │ │ └── TestWebApplicationFactory.cs │ │ │ ├── IntegrationTests.csproj │ │ │ ├── TodoEndpointsV1Tests.cs │ │ │ ├── TodoEndpointsV2Tests.cs │ │ │ └── Usings.cs │ │ ├── MinApiTestsSample.sln │ │ ├── UnitTests │ │ │ ├── Helpers │ │ │ │ └── MockDb.cs │ │ │ ├── TodoInMemoryTests.cs │ │ │ ├── TodoMoqTests.cs │ │ │ ├── UnitTests.csproj │ │ │ └── Usings.cs │ │ └── WebMinRouteGroup │ │ │ ├── Data │ │ │ ├── Todo.cs │ │ │ ├── TodoDto.cs │ │ │ └── TodoGroupDbContext.cs │ │ │ ├── Migrations │ │ │ ├── 20220821140431_InitialCreate.Designer.cs │ │ │ ├── 20220821140431_InitialCreate.cs │ │ │ └── TodoGroupDbContextModelSnapshot.cs │ │ │ ├── Program.cs │ │ │ ├── Services │ │ │ ├── EmailService.cs │ │ │ ├── IEmailService.cs │ │ │ ├── ITodoService.cs │ │ │ └── TodoService.cs │ │ │ ├── TodoEndpointsV1.cs │ │ │ ├── TodoEndpointsV2.cs │ │ │ ├── Utilities.cs │ │ │ ├── WebMinRouteGroup.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── MultipleResultTypes │ │ ├── MultipleResultTypes.csproj │ │ ├── Program.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── MyAntiForgery │ │ ├── MyAntiForgery.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ │ ├── ValidateOnBuildWeb │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ValidateOnBuildWeb.csproj │ │ └── appsettings.json │ │ ├── arg-lists │ │ ├── Models │ │ │ ├── Todo.cs │ │ │ ├── TodoDb.cs │ │ │ ├── TodoItemDTO.cs │ │ │ └── TodoRecord.cs │ │ ├── Program.cs │ │ ├── TodoApi.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── json-apis │ │ ├── Data │ │ │ ├── AppDbContext.cs │ │ │ └── forecast_1_1_1990_1_1_2023.json │ │ ├── JSON.csproj │ │ ├── Migrations │ │ │ ├── 20230313115105_Initial.Designer.cs │ │ │ ├── 20230313115105_Initial.cs │ │ │ └── AppDbContextModelSnapshot.cs │ │ ├── Models │ │ │ └── WeatherForecast.cs │ │ ├── Program.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ └── taskUnit │ │ └── readme.txt ├── static-files │ ├── 3.1 │ │ ├── StaticFileAuth │ │ │ ├── Areas │ │ │ │ └── Identity │ │ │ │ │ └── Pages │ │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Data │ │ │ │ ├── ApplicationDbContext.cs │ │ │ │ └── Migrations │ │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── MyStaticFiles │ │ │ │ └── images │ │ │ │ │ └── red-rose.jpg │ │ │ ├── Pages │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── StaticFileAuth.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── img │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ └── bootstrap.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ └── StaticFilesSample │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ │ ├── MyStaticFiles │ │ │ ├── NotDefault.html │ │ │ ├── image1.png │ │ │ └── images │ │ │ │ └── red-rose.jpg │ │ │ ├── Program.cs │ │ │ ├── Program2.cs │ │ │ ├── Startup.cs │ │ │ ├── StartupAddHeader.cs │ │ │ ├── StartupBrowse.cs │ │ │ ├── StartupDefault.cs │ │ │ ├── StartupEmpty.cs │ │ │ ├── StartupEmpty2.cs │ │ │ ├── StartupEmpty3.cs │ │ │ ├── StartupFileExtensionContentTypeProvider.cs │ │ │ ├── StartupFileServer.cs │ │ │ ├── StartupRose.cs │ │ │ ├── StartupServeUnknownFileTypes.cs │ │ │ ├── StaticFilesSample.csproj │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── default.html │ │ │ ├── index.html │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── default.html │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── MyImage.jpg │ │ │ ├── MyImage2.jpg │ │ │ └── image1.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── site.js │ │ │ ├── lib │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ └── bootstrap.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ └── bootstrap.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ │ ├── myIndex.html │ │ │ └── mydefault.html │ ├── 6.0 │ │ ├── StaticFileAuth │ │ │ ├── Areas │ │ │ │ └── Identity │ │ │ │ │ └── Pages │ │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Data │ │ │ │ ├── ApplicationDbContext.cs │ │ │ │ └── Migrations │ │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── MyStaticFiles │ │ │ │ ├── NotDefault.html │ │ │ │ ├── image1.png │ │ │ │ └── images │ │ │ │ │ └── red-rose.jpg │ │ │ ├── Pages │ │ │ │ ├── BannerImage.cshtml │ │ │ │ ├── BannerImage.cshtml.cs │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── StaticFileAuth.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.rtl.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ ├── StaticFilesSample │ │ │ ├── Controllers │ │ │ │ └── Home2Controller.cs │ │ │ ├── Models │ │ │ │ └── ErrorViewModel.cs │ │ │ ├── MyStaticFiles │ │ │ │ ├── NotDefault - Copy.html │ │ │ │ ├── Test3.html │ │ │ │ ├── image1.png │ │ │ │ ├── image3.png │ │ │ │ └── images │ │ │ │ │ ├── MyImage.jpg │ │ │ │ │ └── red-rose.jpg │ │ │ ├── Pages │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── Test.cshtml │ │ │ │ ├── Test.cshtml.cs │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── StaticFilesSample.csproj │ │ │ ├── Views │ │ │ │ ├── Home2 │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── MyStaticFilesRR.cshtml │ │ │ │ │ └── Privacy.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ │ │ ├── x_Layout.cshtml │ │ │ │ │ └── x_Layout.cshtml.css │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── default.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── MyImage.jpg │ │ │ │ ├── MyImage2.jpg │ │ │ │ └── image1.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ ├── lib │ │ │ │ ├── bootstrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ └── bootstrap.rtl.css │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ │ └── bootstrap.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── dist │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ └── jquery.validate.js │ │ │ │ └── jquery │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ └── jquery.js │ │ │ │ ├── mapTest │ │ │ │ ├── TextFile.myapp │ │ │ │ ├── TextFile.rtf │ │ │ │ ├── TextFile.txt │ │ │ │ ├── image1.image │ │ │ │ └── test.htm3 │ │ │ │ ├── myIndex.html │ │ │ │ └── mydefault.html │ │ └── WebRoot │ │ │ ├── Program.cs │ │ │ ├── WebRoot.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── wwwroot-custom │ │ │ └── Index.html │ │ │ └── wwwroot │ │ │ └── Index1.html │ ├── 8.0 │ │ └── StaticFileAuth │ │ │ ├── JwtAuthenticationOptions.cs │ │ │ ├── PrivateFiles │ │ │ └── 095994c0ed144d90a68a6eda794e545d.png │ │ │ ├── Program.cs │ │ │ ├── StaticFilesAuth.csproj │ │ │ ├── Utilities.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ └── index.html │ └── 9.0 │ │ ├── MapStaticAssetsManifest │ │ ├── Controllers │ │ │ └── Home2Controller.cs │ │ ├── MapStaticManifest.csproj │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ ├── MyStaticFiles │ │ │ ├── NotDefault - Copy.html │ │ │ ├── Test3.html │ │ │ ├── image1.png │ │ │ ├── image3.png │ │ │ └── images │ │ │ │ ├── MyImage.jpg │ │ │ │ └── red-rose.jpg │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── Test.cshtml │ │ │ ├── Test.cshtml.cs │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Views │ │ │ ├── Home2 │ │ │ │ ├── Index.cshtml │ │ │ │ ├── MyStaticFilesRR.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ │ ├── x_Layout.cshtml │ │ │ │ └── x_Layout.cshtml.css │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── default.html │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── MyImage.jpg │ │ │ ├── MyImage2.jpg │ │ │ └── image1.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── site.js │ │ │ ├── lib │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.rtl.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ └── bootstrap.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ │ ├── mapTest │ │ │ ├── TextFile.myapp │ │ │ ├── TextFile.rtf │ │ │ ├── TextFile.txt │ │ │ ├── image1.image │ │ │ └── test.htm3 │ │ │ ├── myIndex.html │ │ │ └── mydefault.html │ │ ├── StaticFileAuth │ │ ├── JwtAuthenticationOptions.cs │ │ ├── PrivateFiles │ │ │ └── 095994c0ed144d90a68a6eda794e545d.png │ │ ├── Program.cs │ │ ├── StaticFilesAuth.csproj │ │ ├── Utilities.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ └── index.html │ │ ├── StaticFilesSample │ │ ├── Controllers │ │ │ └── Home2Controller.cs │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ ├── MyStaticFiles │ │ │ ├── NotDefault - Copy.html │ │ │ ├── Test3.html │ │ │ ├── defaultFiles │ │ │ │ ├── default.html │ │ │ │ └── image3.png │ │ │ ├── image1.png │ │ │ ├── image3.png │ │ │ └── images │ │ │ │ ├── MyImage.jpg │ │ │ │ └── red-rose.jpg │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── Test.cshtml │ │ │ ├── Test.cshtml.cs │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── StaticFilesSample.csproj │ │ ├── Views │ │ │ ├── Home2 │ │ │ │ ├── Index.cshtml │ │ │ │ ├── MyStaticFilesRR.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ │ ├── x_Layout.cshtml │ │ │ │ └── x_Layout.cshtml.css │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── def │ │ │ ├── default.html │ │ │ ├── index.html │ │ │ ├── myIndex.html │ │ │ └── mydefault.html │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── MyImage.jpg │ │ │ ├── MyImage2.jpg │ │ │ └── image1.png │ │ │ ├── js │ │ │ └── site.js │ │ │ ├── lib │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.rtl.css │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ └── bootstrap.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ └── jquery.js │ │ │ └── mapTest │ │ │ ├── TextFile.myapp │ │ │ ├── TextFile.rtf │ │ │ ├── TextFile.txt │ │ │ ├── image1.image │ │ │ └── test.htm3 │ │ └── WebRoot │ │ ├── Program.cs │ │ ├── WebRoot.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── wwwroot-custom │ │ └── Index.html │ │ └── wwwroot │ │ └── Index1.html └── streaming │ ├── AsynchronousWithSystemTextJson │ ├── AsynchronousWithSystemTextJson.csproj │ ├── Controllers │ │ ├── RootMenu.cs │ │ └── SongLyricsController.cs │ ├── Model │ │ ├── ILyricsSource.cs │ │ └── LyricsSource.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json │ ├── DynamicBinaryStream │ ├── Controllers │ │ ├── AnimationController.cs │ │ └── RootMenu.cs │ ├── DynamicBinaryStream.csproj │ ├── Model │ │ ├── FrameSourceAsync.cs │ │ ├── IFrameSourceAsync.cs │ │ ├── ILyricsSource.cs │ │ └── LyricsSource.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Results │ │ └── AnimationResult.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── README.md │ └── SynchronousWithNewtonsoftJson │ ├── Controllers │ ├── RootMenu.cs │ └── SongLyricsController.cs │ ├── Middleware │ ├── SongLyricsMiddleware.cs │ └── SongLyricsMiddlewareExtensions.cs │ ├── Model │ ├── ILyricsSource.cs │ └── LyricsSource.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Results │ └── SongLyricsResult.cs │ ├── SynchronousWithNewtonsoftJson.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── mvc ├── action-return-types │ ├── 7.x │ │ └── WebApiSample │ │ │ ├── Controllers │ │ │ ├── ActionResultOfTProductsController.cs │ │ │ ├── ActionResultProductsController.cs │ │ │ ├── IResultProductsController.cs │ │ │ ├── ProductsController.cs │ │ │ └── ResultsOfTProductsController.cs │ │ │ ├── Models │ │ │ └── Product.cs │ │ │ ├── ProductContext.cs │ │ │ ├── Program.cs │ │ │ ├── WebApiSample.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── 8.x │ │ └── WebApiSample │ │ ├── Controllers │ │ ├── ActionResultOfTProductsController.cs │ │ ├── ActionResultProductsController.cs │ │ ├── IResultProductsController.cs │ │ ├── ProductsController.cs │ │ └── ResultsOfTProductsController.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── ProductContext.cs │ │ ├── Program.cs │ │ ├── WebApiSample.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── models │ ├── BindTryParseAPI │ ├── BindTryParseAPI.csproj │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Models │ │ ├── Culture.cs │ │ ├── DateRange.cs │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastViewModel.cs │ ├── Program.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── BindTryParseMVC │ ├── BindTryParseMVC.csproj │ ├── Controllers │ │ ├── HomeController.cs │ │ └── WeatherForecastController.cs │ ├── Models │ │ ├── Culture.cs │ │ ├── DateRange.cs │ │ ├── ErrorViewModel.cs │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastViewModel.cs │ ├── Program.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _Layout.cshtml.css │ │ ├── WeatherForecast │ │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── favicon.ico │ │ └── site.css │ └── ModelStateError │ ├── Controllers │ ├── ContactsController.cs │ └── HomeController.cs │ ├── Data │ └── ModelStateErrorContext.cs │ ├── ModelStateError.csproj │ ├── Models │ ├── Contact.cs │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Views │ ├── Contacts │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── samples ├── KeyedServices │ ├── KeyedServices.csproj │ ├── Program.cs │ └── appsettings.json ├── KeyedServices9 │ ├── KeyedServices.csproj │ ├── MyScopedClass.cs │ ├── MySingletonClass.cs │ ├── Program.cs │ └── appsettings.json ├── SimpleAuthCookiesAndTokens │ └── SimpleAuthCookiesAndTokens │ │ ├── Program.cs │ │ ├── SimpleAuthCookiesAndTokens.csproj │ │ ├── SimpleAuthCookiesAndTokens.http │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── WebKeyedService │ ├── Controllers │ │ └── CustomServicesApiController.cs │ ├── Hubs │ │ └── MyHub.cs │ ├── ICache.cs │ ├── Program.cs │ ├── WebKeyedService.csproj │ └── appsettings.json ├── aspnetcore-authz-with-ext-authz-service │ ├── Contoso.API │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── Authorization │ │ │ ├── CanGetWeatherAuthorizationHandler.cs │ │ │ └── CanGetWeatherRequirement.cs │ │ ├── Constants.cs │ │ ├── Contoso.API.csproj │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── WeatherForecast.cs │ │ └── appsettings.json │ ├── Contoso.Security.API │ │ ├── Contoso.Security.API.csproj │ │ ├── Controllers │ │ │ └── SecurityPolicyController.cs │ │ ├── Program.cs │ │ ├── SecurityPolicy.cs │ │ └── appsettings.json │ ├── ContosoAPI.collection.json │ ├── ContosoExternAuth.sln │ ├── LICENSE │ └── README.md └── ngIdentity │ ├── NuGet.config │ ├── README.md │ ├── ngIdentity.Server │ ├── Program.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── ngIdentity.Server.csproj │ └── ngIdentity.Server.http │ └── ngidentity.client │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json │ ├── README.md │ ├── angular.json │ ├── aspnetcore-https.js │ ├── karma.conf.js │ ├── ngidentity.client.esproj │ ├── nuget.config │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routing.module.ts │ │ ├── forecast.component.css │ │ ├── forecast.component.html │ │ ├── forecast.component.ts │ │ ├── home.component.html │ │ ├── home.component.ts │ │ └── identity │ │ │ ├── dto.ts │ │ │ ├── guard.ts │ │ │ ├── interceptor.ts │ │ │ ├── register.component.html │ │ │ ├── register.component.ts │ │ │ ├── service.ts │ │ │ ├── signin.component.html │ │ │ └── signin.component.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── proxy.conf.js │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── security └── authorization │ ├── AuthRequirementsData │ ├── .gitignore │ ├── AuthRequirementsData.csproj │ ├── Authorization │ │ ├── MinimumAgeAuthorizationHandler.cs │ │ └── MinimumAgeAuthorizeAttribute.cs │ ├── Controllers │ │ └── GreetingsController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json │ ├── OldStyleAuthRequirements │ ├── Authorization │ │ ├── MinimumAgeAuthorizationHandler.cs │ │ ├── MinimumAgeAuthorizeAttribute.cs │ │ ├── MinimumAgePolicyProvider.cs │ │ └── MinimumAgeRequirement.cs │ ├── Controllers │ │ └── GreetingsController.cs │ ├── OldAuth.csproj │ ├── Program.cs │ ├── appsettings.Development.json │ └── appsettings.json │ └── social │ └── deleteMe.md ├── signalr └── hubs │ ├── KeyedSvsHub │ ├── KeyedSvsHub.csproj │ ├── Program.cs │ └── appsettings.json │ └── samples │ └── 6.x │ └── SignalRHubsSample │ ├── Hubs │ └── ChatHub.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _Layout.cshtml.css │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── SignalRHubsSample.csproj │ ├── Snippets │ └── Hubs │ │ ├── ChatHub.cs │ │ ├── IChatClient.cs │ │ └── StronglyTypedChatHub.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── chat.js │ ├── favicon.ico │ └── site.css ├── test └── integration-tests │ ├── 10.x │ └── IntegrationTestsSample │ │ ├── src │ │ └── RazorPagesProject │ │ │ ├── Areas │ │ │ └── Identity │ │ │ │ └── Pages │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── Message.cs │ │ │ └── Migrations │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── Pages │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.cs │ │ │ ├── Contact.cshtml │ │ │ ├── Contact.cshtml.cs │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── GithubProfile.cshtml │ │ │ ├── GithubProfile.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── SecurePage.cshtml │ │ │ ├── SecurePage.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── RazorPagesProject.csproj │ │ │ ├── Services │ │ │ ├── GithubClient.cs │ │ │ ├── GithubUser.cs │ │ │ ├── IGithubClient.cs │ │ │ ├── IQuoteService.cs │ │ │ └── QuoteService.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.json │ │ │ └── appsettings.json │ │ └── tests │ │ └── RazorPagesProject.Tests │ │ ├── CustomWebApplicationFactory.cs │ │ ├── Helpers │ │ ├── HtmlHelpers.cs │ │ ├── HttpClientExtensions.cs │ │ └── Utilities.cs │ │ ├── IntegrationTests │ │ ├── AuthTests.cs │ │ ├── BasicTests.cs │ │ └── IndexPageTests.cs │ │ ├── README.md │ │ └── RazorPagesProject.Tests.csproj │ ├── 7.x │ └── IntegrationTestsSample │ │ ├── src │ │ └── RazorPagesProject │ │ │ ├── Areas │ │ │ └── Identity │ │ │ │ └── Pages │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── Message.cs │ │ │ └── Migrations │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── Pages │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.cs │ │ │ ├── Contact.cshtml │ │ │ ├── Contact.cshtml.cs │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── GithubProfile.cshtml │ │ │ ├── GithubProfile.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── SecurePage.cshtml │ │ │ ├── SecurePage.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── RazorPagesProject.csproj │ │ │ ├── Services │ │ │ ├── GithubClient.cs │ │ │ ├── GithubUser.cs │ │ │ ├── IGithubClient.cs │ │ │ ├── IQuoteService.cs │ │ │ └── QuoteService.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.json │ │ │ └── appsettings.json │ │ └── tests │ │ └── RazorPagesProject.Tests │ │ ├── CustomWebApplicationFactory.cs │ │ ├── Helpers │ │ ├── HtmlHelpers.cs │ │ ├── HttpClientExtensions.cs │ │ └── Utilities.cs │ │ ├── IntegrationTests │ │ ├── AuthTests.cs │ │ ├── BasicTests.cs │ │ └── IndexPageTests.cs │ │ ├── README.md │ │ └── RazorPagesProject.Tests.csproj │ ├── 8.x │ └── IntegrationTestsSample │ │ ├── src │ │ └── RazorPagesProject │ │ │ ├── Areas │ │ │ └── Identity │ │ │ │ └── Pages │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── Message.cs │ │ │ └── Migrations │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── Pages │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.cs │ │ │ ├── Contact.cshtml │ │ │ ├── Contact.cshtml.cs │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── GithubProfile.cshtml │ │ │ ├── GithubProfile.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── SecurePage.cshtml │ │ │ ├── SecurePage.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── RazorPagesProject.csproj │ │ │ ├── Services │ │ │ ├── GithubClient.cs │ │ │ ├── GithubUser.cs │ │ │ ├── IGithubClient.cs │ │ │ ├── IQuoteService.cs │ │ │ └── QuoteService.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.json │ │ │ └── appsettings.json │ │ └── tests │ │ └── RazorPagesProject.Tests │ │ ├── CustomWebApplicationFactory.cs │ │ ├── Helpers │ │ ├── HtmlHelpers.cs │ │ ├── HttpClientExtensions.cs │ │ └── Utilities.cs │ │ ├── IntegrationTests │ │ ├── AuthTests.cs │ │ ├── BasicTests.cs │ │ └── IndexPageTests.cs │ │ ├── README.md │ │ └── RazorPagesProject.Tests.csproj │ └── 9.x │ └── IntegrationTestsSample │ ├── src │ └── RazorPagesProject │ │ ├── Areas │ │ └── Identity │ │ │ └── Pages │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ ├── Message.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Pages │ │ ├── About.cshtml │ │ ├── About.cshtml.cs │ │ ├── Contact.cshtml │ │ ├── Contact.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── GithubProfile.cshtml │ │ ├── GithubProfile.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── SecurePage.cshtml │ │ ├── SecurePage.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── README.md │ │ ├── RazorPagesProject.csproj │ │ ├── Services │ │ ├── GithubClient.cs │ │ ├── GithubUser.cs │ │ ├── IGithubClient.cs │ │ ├── IQuoteService.cs │ │ └── QuoteService.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ └── appsettings.json │ └── tests │ └── RazorPagesProject.Tests │ ├── CustomWebApplicationFactory.cs │ ├── Helpers │ ├── HtmlHelpers.cs │ ├── HttpClientExtensions.cs │ └── Utilities.cs │ ├── IntegrationTests │ ├── AuthTests.cs │ ├── BasicTests.cs │ └── IndexPageTests.cs │ ├── README.md │ └── RazorPagesProject.Tests.csproj └── tutorials ├── scalable-razor-apps ├── end │ ├── .dockerignore │ ├── Dockerfile │ ├── GitHubRepo.cs │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── ScalableRazor.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.rtl.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── bootstrap.js │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ └── jquery.validate.unobtrusive.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ └── jquery.validate.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ └── jquery.js └── start │ ├── .dockerignore │ ├── Dockerfile │ ├── GitHubRepo.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── ScalableRazor.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap.css │ │ └── bootstrap.rtl.css │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.esm.js │ │ └── bootstrap.js │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ └── jquery.validate.unobtrusive.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ └── jquery.validate.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ └── jquery.js ├── signalr-typescript-webpack ├── samples │ ├── 6.x │ │ └── SignalRWebpack │ │ │ ├── .gitignore │ │ │ ├── Hubs │ │ │ └── ChatHub.cs │ │ │ ├── Program.cs │ │ │ ├── SignalRWebpack.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── css │ │ │ │ └── main.css │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ │ └── webpack.config.js │ ├── 7.x │ │ └── SignalRWebpack │ │ │ ├── .gitignore │ │ │ ├── Hubs │ │ │ └── ChatHub.cs │ │ │ ├── Program.cs │ │ │ ├── SignalRWebpack.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── css │ │ │ │ └── main.css │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ │ └── webpack.config.js │ └── 8.x │ │ └── SignalRWebpack │ │ ├── .gitignore │ │ ├── Hubs │ │ └── ChatHub.cs │ │ ├── Program.cs │ │ ├── SignalRWebpack.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ ├── index.ts │ │ └── tsconfig.json │ │ └── webpack.config.js └── samples_snapshot │ ├── 6.x │ └── package.json │ ├── 7.x │ └── package.json │ └── 8.x │ └── package.json └── webApiSwagger └── secureSwagger ├── Program.cs ├── WebApplication6.csproj ├── appsettings.Development.json └── appsettings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Data/ModelStateErrorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Data/ModelStateErrorContext.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/ModelStateError.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/ModelStateError.csproj -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Models/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Models/Contact.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Create.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Create.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Delete.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Delete.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Details.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Details.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Edit.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Edit.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Index.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Contacts/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Contacts/Index.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Error.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Index.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/Program.cs -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/appsettings.Development.json -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/appsettings.json -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/wwwroot/css/site.css -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/wwwroot/favicon.ico -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/wwwroot/js/site.js -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /RazorPages/models/ModelStateError/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/RazorPages/models/ModelStateError/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /RazorPages/readme.txt: -------------------------------------------------------------------------------- 1 | Stub 2 | -------------------------------------------------------------------------------- /ThirdPartyNotices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/ThirdPartyNotices -------------------------------------------------------------------------------- /common/stub.txt: -------------------------------------------------------------------------------- 1 | Delete this stub file after adding content 2 | -------------------------------------------------------------------------------- /fundamentals/JSON/RemoveMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/JSON/RemoveMe.txt -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg1/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg1/RgdDiagnostics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg1/RgdDiagnostics.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg1/appsettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg10/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg10/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg10/Rdg10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg10/Rdg10.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg11/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg11/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg11/Rdg11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg11/Rdg11.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg12/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg12/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg12/Rdg12.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg12/Rdg12.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg13/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg13/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg13/Rdg13.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg13/Rdg13.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg13/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg13/appsettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg2/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg2/Rdg2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg2/Rdg2.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg2/appsettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg4/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg4/Rdg4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg4/Rdg4.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg4/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg4/appsettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg5/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg5/Rdg5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg5/Rdg5.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg5/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg5/appsettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg6/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg6/Rdg6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg6/Rdg6.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg6/appsettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg7/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg7/Rdg7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg7/Rdg7.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg8/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg8/Rdg8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg8/Rdg8.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg8/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg8/appsettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg9/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg9/Program.cs -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg9/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg9/Properties/launchSettings.json -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg9/Rdg9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg9/Rdg9.csproj -------------------------------------------------------------------------------- /fundamentals/aot/diagnostics/Rdg9/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/aot/diagnostics/Rdg9/appsettings.json -------------------------------------------------------------------------------- /fundamentals/configuration/2.x/ConfigurationSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/2.x/ConfigurationSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/configuration/2.x/ConfigurationSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/2.x/ConfigurationSample/README.md -------------------------------------------------------------------------------- /fundamentals/configuration/2.x/ConfigurationSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/2.x/ConfigurationSample/Startup.cs -------------------------------------------------------------------------------- /fundamentals/configuration/2.x/ConfigurationSample/json_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/2.x/ConfigurationSample/json_array.json -------------------------------------------------------------------------------- /fundamentals/configuration/2.x/ConfigurationSample/starship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/2.x/ConfigurationSample/starship.json -------------------------------------------------------------------------------- /fundamentals/configuration/2.x/ConfigurationSample/tvshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/2.x/ConfigurationSample/tvshow.xml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ConfigSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ConfigSample.csproj -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/MyArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/MyArray.json -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/MyConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/MyConfig.json -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/MyIniConfig.Development.ini: -------------------------------------------------------------------------------- 1 | MyKey="MyIniConfig.ini Value from Dev" -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/MyIniConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/MyIniConfig.ini -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/MySubsection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/MySubsection.json -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/MyXMLFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/MyXMLFile.xml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/MyXMLFile3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/MyXMLFile3.xml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Options/Widgets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Options/Widgets.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Array.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.ArrayModel 3 | 4 | Markup not displayed. 5 | -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Array.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Array.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Index2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Index2.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Index2.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Index2.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test2.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test2.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test2.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test21.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test21.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test21.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test21.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test22.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test22.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test22.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test22.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test25.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test25.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test25.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test25.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test26.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test26.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test26.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test26.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test3.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test3.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test3.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test5.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test5.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/Test5.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/Test5.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/TestNum.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/TestNum.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/TestSection.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSectionModel 3 | 4 | This markup Not used! 5 | -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/TestSection2.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSection2Model 3 | 4 | This markup Not used! -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/TestSection4.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSection4Model 3 | 4 | This markup Not used! -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Pages/XML/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Pages/XML/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramArray.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramINI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramINI.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramJSON.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramJSON2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramJSON2.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramJSONarray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramJSONarray.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramJSONsection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramJSONsection.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramSwitch.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/ProgramXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/ProgramXML.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Startup.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Startup2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Startup2.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Startup4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/Startup4.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/StartupKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/StartupKey.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/StartupMVC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/StartupMVC.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/Value3.json: -------------------------------------------------------------------------------- 1 | { 2 | "array:entries:3": "value3" 3 | } -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigurationSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigurationSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigurationSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigurationSample/README.md -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigurationSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigurationSample/Startup.cs -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigurationSample/json_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigurationSample/json_array.json -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigurationSample/starship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigurationSample/starship.json -------------------------------------------------------------------------------- /fundamentals/configuration/3.x/ConfigurationSample/tvshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/3.x/ConfigurationSample/tvshow.xml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/ConfigSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/ConfigSample.csproj -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/MyArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/MyArray.json -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/MyConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/MyConfig.json -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/MyIniConfig.Development.ini: -------------------------------------------------------------------------------- 1 | MyKey="MyIniConfig.ini Value from Dev" -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/MyIniConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/MyIniConfig.ini -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/MySubsection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/MySubsection.json -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/MyXMLFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/MyXMLFile.xml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/MyXMLFile3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/MyXMLFile3.xml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Options/Widgets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Options/Widgets.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Array.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.ArrayModel 3 | 4 | Markup not displayed. 5 | -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Array.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Array.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Index2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Index2.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Index2.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Index2.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test2.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test2.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test2.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test21.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test21.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test21.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test21.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test22.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test22.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test22.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test22.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test25.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test25.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test25.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test25.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test26.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test26.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test26.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test26.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test3.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test3.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test3.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test5.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test5.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/Test5.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/Test5.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/TestNum.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/TestNum.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/TestSection.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSectionModel 3 | 4 | This markup Not used! 5 | -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/TestSection2.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSection2Model 3 | 4 | This markup Not used! -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/TestSection4.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSection4Model 3 | 4 | This markup Not used! -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Pages/XML/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Pages/XML/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/Service.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/ConfigurationSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/ConfigurationSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/configuration/6.x/EFconfigSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/6.x/EFconfigSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/ConfigSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/ConfigSample.csproj -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/MyArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/MyArray.json -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/MyConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/MyConfig.json -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/MyIniConfig.Development.ini: -------------------------------------------------------------------------------- 1 | MyKey="MyIniConfig.ini Value from Dev" -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/MyIniConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/MyIniConfig.ini -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/MySubsection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/MySubsection.json -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/MyXMLFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/MyXMLFile.xml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/MyXMLFile3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/MyXMLFile3.xml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Options/Widgets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Options/Widgets.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Array.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.ArrayModel 3 | 4 | Markup not displayed. 5 | -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Array.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Array.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Index2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Index2.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Index2.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Index2.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test2.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test2.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test2.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test21.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test21.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test21.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test21.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test22.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test22.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test22.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test22.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test25.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test25.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test25.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test25.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test26.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test26.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test26.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test26.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test3.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test3.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test3.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test33.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test33.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test33.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test33.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test5.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test5.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/Test5.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/Test5.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/TestNum.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/TestNum.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/TestSection.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSectionModel 3 | 4 | This markup Not used! 5 | -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/TestSection2.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSection2Model 3 | 4 | This markup Not used! -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/TestSection4.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model ConfigSample.TestSection4Model 3 | 4 | This markup Not used! -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Pages/XML/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Pages/XML/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/Service.cs -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/configuration/8.x/ConfigSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/configuration/8.x/ConfigSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/environments/3.0/EnvironmentsSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/environments/3.0/EnvironmentsSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/environments/3.0/EnvironmentsSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/environments/3.0/EnvironmentsSample/Startup.cs -------------------------------------------------------------------------------- /fundamentals/environments/3.0/EnvironmentsSample/StartupInject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/environments/3.0/EnvironmentsSample/StartupInject.cs -------------------------------------------------------------------------------- /fundamentals/environments/3.0/EnvironmentsSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/environments/3.0/EnvironmentsSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/environments/6.0/EnvironmentsSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/environments/6.0/EnvironmentsSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/environments/6.0/EnvironmentsSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/environments/6.0/EnvironmentsSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/host/TimedBackgroundTasks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/host/TimedBackgroundTasks/Program.cs -------------------------------------------------------------------------------- /fundamentals/host/TimedBackgroundTasks/TimedBackgroundTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/host/TimedBackgroundTasks/TimedBackgroundTasks.csproj -------------------------------------------------------------------------------- /fundamentals/host/TimedBackgroundTasks/TimedHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/host/TimedBackgroundTasks/TimedHostedService.cs -------------------------------------------------------------------------------- /fundamentals/host/TimedBackgroundTasks/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/host/TimedBackgroundTasks/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Core/LoggingEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Core/LoggingEvents.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Core/Model/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Core/Model/TodoItem.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/About.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Contact.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/README.md -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/Startup.cs -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/TodoApiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/TodoApiSample.csproj -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/appsettings2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/appsettings2.json -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /fundamentals/logging/2.x/TodoApiSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/2.x/TodoApiSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/logging/3.x/LoggingConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/LoggingConsoleApp/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/1appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/1appsettings.Development.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/1appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/1appsettings.Staging.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/1appsettings.Staging2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/1appsettings.Staging2.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/1appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/1appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Controllers/HomeController.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/MyMain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/MyMain.csproj -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Startup.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/appsettings.Trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/appsettings.Trace.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /fundamentals/logging/3.x/MyMain/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/MyMain/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Controllers/TestController.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Models/MyLogEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Models/MyLogEvents.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Models/MyUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Models/MyUtil.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Models/TodoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Models/TodoContext.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Models/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Models/TodoItem.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Models/TodoItemDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Models/TodoItemDTO.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/About.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Contact.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/Startup.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/TodoApiDTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/TodoApiDTO.csproj -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/appsettings.Development.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/appsettings.MSFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/appsettings.MSFT.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/appsettings.Prod2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/appsettings.Prod2.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/appsettings.Production.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiDTO/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiDTO/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Core/LoggingEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Core/LoggingEvents.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Core/Model/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Core/Model/TodoItem.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/MyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/MyService.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Pages/About.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/README.md -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Startup.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/Startup2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/Startup2.cs -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/TodoApiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/TodoApiSample.csproj -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/appsettings2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/appsettings2.json -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/logging/3.x/TodoApiSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/3.x/TodoApiSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApi/Models/TodoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApi/Models/TodoContext.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApi/Models/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApi/Models/TodoItem.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApi/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApi/TodoApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApi/TodoApi.csproj -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApi/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApi/WeatherForecast.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApi/appsettings.Development.json -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApi/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Models/MyLogEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Models/MyLogEvents.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Models/TodoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Models/TodoContext.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Models/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Models/TodoItem.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Models/TodoItemDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Models/TodoItemDTO.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/About.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/TodoApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/TodoApi.csproj -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/WeatherForecast.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/appsettings.Development.json -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /fundamentals/logging/6.x/TodoApiDTO/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/TodoApiDTO/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/WebApp.csproj -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/appsettings.Development.json -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/appsettings.json -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebApp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebApp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebLog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebLog/Program.cs -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebLog/WebLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebLog/WebLog.csproj -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebLog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebLog/appsettings.Development.json -------------------------------------------------------------------------------- /fundamentals/logging/6.x/WebLog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/logging/6.x/WebLog/appsettings.json -------------------------------------------------------------------------------- /fundamentals/middleware/problem-details-service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/problem-details-service/Program.cs -------------------------------------------------------------------------------- /fundamentals/middleware/problem-details-service/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/problem-details-service/appsettings.json -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/Program.cs -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/WebRate2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/WebRate2.csproj -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/appsettings.json -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRate2/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRate2/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/middleware/rate-limit/WebRateLimitAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/middleware/rate-limit/WebRateLimitAuth/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/FormBinding/Models/Todo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/FormBinding/Models/Todo.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/FormBinding/Models/TodoDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/FormBinding/Models/TodoDb.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/FormBinding/Models/TodoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/FormBinding/Models/TodoDto.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/FormBinding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/FormBinding/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/FormBinding/TodoApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/FormBinding/TodoApi.csproj -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/FormBinding/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/FormBinding/appsettings.json -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/FormBinding/wwwroot/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/FormBinding/wwwroot/sample.html -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/IFormFile/IformFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/IFormFile/IformFile.csproj -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/IFormFile/MyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/IFormFile/MyUtils.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/IFormFile/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/IFormFile/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/IFormFile/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/IFormFile/appsettings.json -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/IResultImplementation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/IResultImplementation/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/KeyServiceController/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/KeyServiceController/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/KeyServiceMinAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/KeyServiceMinAPI/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/MinApiTestsSample/IntegrationTests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/MinApiTestsSample/UnitTests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/MultipleResultTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/MultipleResultTypes/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/MyAntiForgery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/MyAntiForgery/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/MyAntiForgery/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/MyAntiForgery/appsettings.json -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/ValidateOnBuildWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/ValidateOnBuildWeb/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/arg-lists/Models/Todo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/arg-lists/Models/Todo.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/arg-lists/Models/TodoDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/arg-lists/Models/TodoDb.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/arg-lists/Models/TodoItemDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/arg-lists/Models/TodoItemDTO.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/arg-lists/Models/TodoRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/arg-lists/Models/TodoRecord.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/arg-lists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/arg-lists/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/arg-lists/TodoApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/arg-lists/TodoApi.csproj -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/arg-lists/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/arg-lists/appsettings.json -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/json-apis/Data/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/json-apis/Data/AppDbContext.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/json-apis/JSON.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/json-apis/JSON.csproj -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/json-apis/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/json-apis/Program.cs -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/json-apis/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/json-apis/appsettings.json -------------------------------------------------------------------------------- /fundamentals/minimal-apis/samples/taskUnit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/minimal-apis/samples/taskUnit/readme.txt -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/Startup.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/StaticFileAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/StaticFileAuth.csproj -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/img/1.png -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/img/2.png -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/wwwroot/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/wwwroot/images/1.png -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/wwwroot/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/wwwroot/images/2.png -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFileAuth/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFileAuth/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/Program2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/Program2.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/Startup.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/StartupBrowse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/StartupBrowse.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/StartupDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/StartupDefault.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/StartupEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/StartupEmpty.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/StartupEmpty2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/StartupEmpty2.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/StartupEmpty3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/StartupEmpty3.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/StartupRose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/StartupRose.cs -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/default.html -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/index.html -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/wwwroot/index.html -------------------------------------------------------------------------------- /fundamentals/static-files/3.1/StaticFilesSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/3.1/StaticFilesSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/StaticFileAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/StaticFileAuth.csproj -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/wwwroot/css/site.css -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/wwwroot/favicon.ico -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFileAuth/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFileAuth/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFilesSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFilesSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/Pages/Test.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFilesSample/Pages/Test.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFilesSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFilesSample/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFilesSample/wwwroot/index.html -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/StaticFilesSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/StaticFilesSample/wwwroot/mapTest/TextFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/WebRoot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/WebRoot/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/WebRoot/WebRoot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/WebRoot/WebRoot.csproj -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/WebRoot/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/WebRoot/appsettings.Development.json -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/WebRoot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/WebRoot/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/WebRoot/wwwroot-custom/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/WebRoot/wwwroot-custom/Index.html -------------------------------------------------------------------------------- /fundamentals/static-files/6.0/WebRoot/wwwroot/Index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/6.0/WebRoot/wwwroot/Index1.html -------------------------------------------------------------------------------- /fundamentals/static-files/8.0/StaticFileAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/8.0/StaticFileAuth/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/8.0/StaticFileAuth/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/8.0/StaticFileAuth/Utilities.cs -------------------------------------------------------------------------------- /fundamentals/static-files/8.0/StaticFileAuth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/8.0/StaticFileAuth/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/8.0/StaticFileAuth/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/8.0/StaticFileAuth/wwwroot/index.html -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/MapStaticAssetsManifest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/MapStaticAssetsManifest/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/MapStaticAssetsManifest/wwwroot/mapTest/TextFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFileAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/StaticFileAuth/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFileAuth/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/StaticFileAuth/Utilities.cs -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFileAuth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/StaticFileAuth/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFileAuth/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/StaticFileAuth/wwwroot/index.html -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFilesSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/StaticFilesSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFilesSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/StaticFilesSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFilesSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/StaticFilesSample/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/StaticFilesSample/wwwroot/mapTest/TextFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/WebRoot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/WebRoot/Program.cs -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/WebRoot/WebRoot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/WebRoot/WebRoot.csproj -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/WebRoot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/WebRoot/appsettings.json -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/WebRoot/wwwroot-custom/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/WebRoot/wwwroot-custom/Index.html -------------------------------------------------------------------------------- /fundamentals/static-files/9.0/WebRoot/wwwroot/Index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/static-files/9.0/WebRoot/wwwroot/Index1.html -------------------------------------------------------------------------------- /fundamentals/streaming/DynamicBinaryStream/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/streaming/DynamicBinaryStream/Program.cs -------------------------------------------------------------------------------- /fundamentals/streaming/DynamicBinaryStream/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/streaming/DynamicBinaryStream/appsettings.json -------------------------------------------------------------------------------- /fundamentals/streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/streaming/README.md -------------------------------------------------------------------------------- /fundamentals/streaming/SynchronousWithNewtonsoftJson/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/fundamentals/streaming/SynchronousWithNewtonsoftJson/Program.cs -------------------------------------------------------------------------------- /mvc/action-return-types/7.x/WebApiSample/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/7.x/WebApiSample/Models/Product.cs -------------------------------------------------------------------------------- /mvc/action-return-types/7.x/WebApiSample/ProductContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/7.x/WebApiSample/ProductContext.cs -------------------------------------------------------------------------------- /mvc/action-return-types/7.x/WebApiSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/7.x/WebApiSample/Program.cs -------------------------------------------------------------------------------- /mvc/action-return-types/7.x/WebApiSample/WebApiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/7.x/WebApiSample/WebApiSample.csproj -------------------------------------------------------------------------------- /mvc/action-return-types/7.x/WebApiSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/7.x/WebApiSample/appsettings.json -------------------------------------------------------------------------------- /mvc/action-return-types/8.x/WebApiSample/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/8.x/WebApiSample/Models/Product.cs -------------------------------------------------------------------------------- /mvc/action-return-types/8.x/WebApiSample/ProductContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/8.x/WebApiSample/ProductContext.cs -------------------------------------------------------------------------------- /mvc/action-return-types/8.x/WebApiSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/8.x/WebApiSample/Program.cs -------------------------------------------------------------------------------- /mvc/action-return-types/8.x/WebApiSample/WebApiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/8.x/WebApiSample/WebApiSample.csproj -------------------------------------------------------------------------------- /mvc/action-return-types/8.x/WebApiSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/action-return-types/8.x/WebApiSample/appsettings.json -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/BindTryParseAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/BindTryParseAPI.csproj -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/Models/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/Models/Culture.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/Models/DateRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/Models/DateRange.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/Models/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/Models/WeatherForecast.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/Models/WeatherForecastViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/Models/WeatherForecastViewModel.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/Program.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/appsettings.Development.json -------------------------------------------------------------------------------- /mvc/models/BindTryParseAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseAPI/appsettings.json -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/BindTryParseMVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/BindTryParseMVC.csproj -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Controllers/HomeController.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Models/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Models/Culture.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Models/DateRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Models/DateRange.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Models/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Models/WeatherForecast.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Models/WeatherForecastViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Models/WeatherForecastViewModel.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Program.cs -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/WeatherForecast/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/WeatherForecast/Index.cshtml -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/appsettings.Development.json -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/appsettings.json -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/wwwroot/favicon.ico -------------------------------------------------------------------------------- /mvc/models/BindTryParseMVC/wwwroot/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/BindTryParseMVC/wwwroot/site.css -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Controllers/ContactsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Controllers/ContactsController.cs -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Controllers/HomeController.cs -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Data/ModelStateErrorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Data/ModelStateErrorContext.cs -------------------------------------------------------------------------------- /mvc/models/ModelStateError/ModelStateError.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/ModelStateError.csproj -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Models/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Models/Contact.cs -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Program.cs -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Contacts/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Contacts/Create.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Contacts/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Contacts/Delete.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Contacts/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Contacts/Details.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Contacts/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Contacts/Edit.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Contacts/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Contacts/Index.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /mvc/models/ModelStateError/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/appsettings.Development.json -------------------------------------------------------------------------------- /mvc/models/ModelStateError/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/appsettings.json -------------------------------------------------------------------------------- /mvc/models/ModelStateError/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/wwwroot/css/site.css -------------------------------------------------------------------------------- /mvc/models/ModelStateError/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/wwwroot/favicon.ico -------------------------------------------------------------------------------- /mvc/models/ModelStateError/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/wwwroot/js/site.js -------------------------------------------------------------------------------- /mvc/models/ModelStateError/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /mvc/models/ModelStateError/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /mvc/models/ModelStateError/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/mvc/models/ModelStateError/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /samples/KeyedServices/KeyedServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/KeyedServices/KeyedServices.csproj -------------------------------------------------------------------------------- /samples/KeyedServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/KeyedServices/Program.cs -------------------------------------------------------------------------------- /samples/KeyedServices/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/KeyedServices/appsettings.json -------------------------------------------------------------------------------- /samples/KeyedServices9/KeyedServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/KeyedServices9/KeyedServices.csproj -------------------------------------------------------------------------------- /samples/KeyedServices9/MyScopedClass.cs: -------------------------------------------------------------------------------- 1 | internal class MyScopedClass 2 | { 3 | } -------------------------------------------------------------------------------- /samples/KeyedServices9/MySingletonClass.cs: -------------------------------------------------------------------------------- 1 | internal class MySingletonClass 2 | { 3 | } -------------------------------------------------------------------------------- /samples/KeyedServices9/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/KeyedServices9/Program.cs -------------------------------------------------------------------------------- /samples/KeyedServices9/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/KeyedServices9/appsettings.json -------------------------------------------------------------------------------- /samples/WebKeyedService/Hubs/MyHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/WebKeyedService/Hubs/MyHub.cs -------------------------------------------------------------------------------- /samples/WebKeyedService/ICache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/WebKeyedService/ICache.cs -------------------------------------------------------------------------------- /samples/WebKeyedService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/WebKeyedService/Program.cs -------------------------------------------------------------------------------- /samples/WebKeyedService/WebKeyedService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/WebKeyedService/WebKeyedService.csproj -------------------------------------------------------------------------------- /samples/WebKeyedService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/WebKeyedService/appsettings.json -------------------------------------------------------------------------------- /samples/aspnetcore-authz-with-ext-authz-service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/aspnetcore-authz-with-ext-authz-service/LICENSE -------------------------------------------------------------------------------- /samples/aspnetcore-authz-with-ext-authz-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/aspnetcore-authz-with-ext-authz-service/README.md -------------------------------------------------------------------------------- /samples/ngIdentity/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/NuGet.config -------------------------------------------------------------------------------- /samples/ngIdentity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/README.md -------------------------------------------------------------------------------- /samples/ngIdentity/ngIdentity.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngIdentity.Server/Program.cs -------------------------------------------------------------------------------- /samples/ngIdentity/ngIdentity.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngIdentity.Server/appsettings.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngIdentity.Server/ngIdentity.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngIdentity.Server/ngIdentity.Server.csproj -------------------------------------------------------------------------------- /samples/ngIdentity/ngIdentity.Server/ngIdentity.Server.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngIdentity.Server/ngIdentity.Server.http -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/.editorconfig -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/.gitignore -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/.vscode/extensions.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/.vscode/launch.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/.vscode/tasks.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/README.md -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/angular.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/aspnetcore-https.js -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/karma.conf.js -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/ngidentity.client.esproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/ngidentity.client.esproj -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/nuget.config -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/package-lock.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/package.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/app/app.component.css -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/app/app.component.html -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/app/app.component.ts -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/app/app.module.ts -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/app/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/app/home.component.ts -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/app/identity/dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/app/identity/dto.ts -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/app/identity/guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/app/identity/guard.ts -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/favicon.ico -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/index.html -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/main.ts -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/proxy.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/proxy.conf.js -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/src/styles.css -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/tsconfig.app.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/tsconfig.json -------------------------------------------------------------------------------- /samples/ngIdentity/ngidentity.client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/samples/ngIdentity/ngidentity.client/tsconfig.spec.json -------------------------------------------------------------------------------- /security/authorization/AuthRequirementsData/.gitignore: -------------------------------------------------------------------------------- 1 | !Properties/ 2 | -------------------------------------------------------------------------------- /security/authorization/AuthRequirementsData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/security/authorization/AuthRequirementsData/Program.cs -------------------------------------------------------------------------------- /security/authorization/AuthRequirementsData/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/security/authorization/AuthRequirementsData/appsettings.json -------------------------------------------------------------------------------- /security/authorization/OldStyleAuthRequirements/OldAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/security/authorization/OldStyleAuthRequirements/OldAuth.csproj -------------------------------------------------------------------------------- /security/authorization/OldStyleAuthRequirements/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/security/authorization/OldStyleAuthRequirements/Program.cs -------------------------------------------------------------------------------- /security/authorization/social/deleteMe.md: -------------------------------------------------------------------------------- 1 | Delete this file when you add the GoogleAuthticationExample 2 | -------------------------------------------------------------------------------- /signalr/hubs/KeyedSvsHub/KeyedSvsHub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/KeyedSvsHub/KeyedSvsHub.csproj -------------------------------------------------------------------------------- /signalr/hubs/KeyedSvsHub/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/KeyedSvsHub/Program.cs -------------------------------------------------------------------------------- /signalr/hubs/KeyedSvsHub/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/KeyedSvsHub/appsettings.json -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/Hubs/ChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/Hubs/ChatHub.cs -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/Program.cs -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/appsettings.json -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/wwwroot/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/wwwroot/chat.js -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /signalr/hubs/samples/6.x/SignalRHubsSample/wwwroot/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/signalr/hubs/samples/6.x/SignalRHubsSample/wwwroot/site.css -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/.dockerignore -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Dockerfile -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/GitHubRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/GitHubRepo.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/Error.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/Index.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/Program.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/ScalableRazor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/ScalableRazor.csproj -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/appsettings.Development.json -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/appsettings.json -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/wwwroot/css/site.css -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/wwwroot/favicon.ico -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/wwwroot/js/site.js -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/end/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/end/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/.dockerignore -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Dockerfile -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/GitHubRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/GitHubRepo.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/Error.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/Index.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/Program.cs -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/ScalableRazor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/ScalableRazor.csproj -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/appsettings.json -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/wwwroot/css/site.css -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/wwwroot/favicon.ico -------------------------------------------------------------------------------- /tutorials/scalable-razor-apps/start/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/scalable-razor-apps/start/wwwroot/js/site.js -------------------------------------------------------------------------------- /tutorials/signalr-typescript-webpack/samples/6.x/SignalRWebpack/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/ 2 | -------------------------------------------------------------------------------- /tutorials/signalr-typescript-webpack/samples/7.x/SignalRWebpack/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/ 2 | -------------------------------------------------------------------------------- /tutorials/signalr-typescript-webpack/samples/8.x/SignalRWebpack/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/ 2 | -------------------------------------------------------------------------------- /tutorials/webApiSwagger/secureSwagger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/webApiSwagger/secureSwagger/Program.cs -------------------------------------------------------------------------------- /tutorials/webApiSwagger/secureSwagger/WebApplication6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/webApiSwagger/secureSwagger/WebApplication6.csproj -------------------------------------------------------------------------------- /tutorials/webApiSwagger/secureSwagger/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/AspNetCore.Docs.Samples/HEAD/tutorials/webApiSwagger/secureSwagger/appsettings.json --------------------------------------------------------------------------------