aspnetcore/test/WebSites/BasicWebSite
Doug Bunting d8d2e54506 Remove extra options to manipulate `JsonSerializerSettings`
- #4339: remove non-recommended JSON formatter constructors
 - affects `JsonInputFormatter`, `JsonOutputFormatter`, `JsonPatchInputFormatter`
 - `JsonOutputFormatter` cleanup also impacts `JsonHelper`
 - rename and make `SerializerSettingsProvider` class public; use it as appropriate
- #4409: make `SerializerSetings` properties get-only and `protected`
 - affects `JsonInputFormatter`, `JsonOutputFormatter`

Recommended patterns:
- change `JsonSerializerSettings` values in `MvcJsonOptions` for almost all customizations
- find `JsonOutputFormatter` in `MvcOptions.OutputFormatters` when limiting per-result formatters
- start with `JsonSerializerSettingsProvider.CreateSerializerSettings()` when customizing a per-result formatter
2016-04-27 14:48:16 -07:00
..
Areas
Components * Remove JsonViewComponentResult 2016-03-11 11:40:54 -08:00
Controllers Remove extra options to manipulate `JsonSerializerSettings` 2016-04-27 14:48:16 -07:00
Conventions
Formatters [Fixes #4051] Split OutputFormatter into OutputFormatter and TextOutputFormatter 2016-02-12 12:04:18 -08:00
Models
Views Remove extra options to manipulate `JsonSerializerSettings` 2016-04-27 14:48:16 -07:00
ActionDescriptorCreationCounter.cs
BasicWebSite.xproj Remove project name from output path 2016-03-02 14:39:12 -08:00
RequestIdMiddleware.cs
RequestIdService.cs
RequestIdViewComponent.cs
RequestScopedActionConstraint.cs
RequestScopedFilter.cs
RequestScopedTagHelper.cs
Startup.cs Update samples and test sites to new formats 2016-04-25 12:09:40 -07:00
project.json Update samples and test sites to new formats 2016-04-25 12:09:40 -07:00
readme.md
web.config Add publish-iis and fix web.config 2016-04-22 14:07:38 -07:00

readme.md

BasicWebSite

This web site illustrates many commonly used features including but not limited to link generation, action results and content negotiation, RouteData amongst others.