Go to file
Doug Bunting fa8c2eac3e Check encoded and unencoded values against element body in `OptionTagHelper`
- #3386
- initialize comparison `HashSet` with unencoded values to ensure both are checked
- address perf and correctness issues in this code
  - `context.Items[typeof(SelectTagHelper)]` entry read as `ICollection` but written as `IReadOnlyCollection`
    - `IReadOnlyCollection` worse because it does not include `Contains()`, causing Linq use
  - every `<option>` element recalculated the encoded values and created a `HashSet` to contain them
    - add `CurrentValues` type to cache this `HashSet` in `context.Items`
  - each `OptionTagHelper` created the additional `HashSet` even if `Value` was bound
2016-01-14 17:46:54 -08:00
samples Fixes #3818 - Support Consumes in ApiExplorer 2016-01-13 12:32:17 -08:00
src Check encoded and unencoded values against element body in `OptionTagHelper` 2016-01-14 17:46:54 -08:00
test Check encoded and unencoded values against element body in `OptionTagHelper` 2016-01-14 17:46:54 -08:00
tools Strong name everything. 2015-11-03 21:16:49 -08:00
.gitattributes
.gitignore
.travis.yml
CONTRIBUTING.md
LICENSE.txt
Mvc.NoFun.sln Remove Razor precompilation 2016-01-12 14:51:33 -08:00
Mvc.sln Remove Razor precompilation 2016-01-12 14:51:33 -08:00
NuGet.config Revert DependencyContext changes untill dotnet-cli packages get sorted out 2016-01-08 15:59:53 -08:00
NuGetPackageVerifier.json
README.md Add link to ASP.NET MVC Boilerplate 2015-12-31 11:41:12 -08:00
Settings.StyleCop
appveyor.yml Turn on parallel AppVeyor builds 2015-04-30 21:57:38 -07:00
build.cmd Fix local build break 2015-10-12 12:59:16 -07:00
build.sh React to aspnet/Universe#290 fix 2015-10-12 10:42:45 -07:00
global.json
makefile.shade

README.md

ASP.NET MVC

AppVeyor: AppVeyor

Travis: Travis

ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and gives you full control over markup for enjoyable, agile development. ASP.NET MVC includes many features that enable fast, TDD-friendly development for creating sophisticated applications that use the latest web standards.

ASP.NET MVC in ASP.NET 5 includes support for building web pages and HTTP services in a single aligned framework that can be hosted in IIS or self-hosted in your own process.

Related community projects:

This project is part of ASP.NET 5. You can find samples, documentation and getting started instructions for ASP.NET 5 at the Home repo.