aspnetcore/test
N. Taylor Mullen 490fcf1ab4 Remove the use of `Linq` and unneeded enumerators from Mvc `TagHelper`s.
- Prior to this change we were using `Linq` throughout our `TagHelper`s which resulted excess allocations.
- Also went through our data structures and changed some from `Enumerable<T>` to `IList<T>` where we were just not exposing the more accessible types (list).
- Changed several locations of `foreach` to `for` to remove the enumerator allocation.

#3599
2015-11-25 21:31:24 -08:00
..
Microsoft.AspNet.Mvc.Abstractions.Test
Microsoft.AspNet.Mvc.ApiExplorer.Test
Microsoft.AspNet.Mvc.Core.Test Remove FormatFilter dependency on IActionContextAccessor 2015-11-25 17:01:16 -08:00
Microsoft.AspNet.Mvc.Cors.Test
Microsoft.AspNet.Mvc.DataAnnotations.Test Adds ActionContext to Validation contexts 2015-11-25 16:38:26 -08:00
Microsoft.AspNet.Mvc.Formatters.Json.Test
Microsoft.AspNet.Mvc.Formatters.Xml.Test
Microsoft.AspNet.Mvc.FunctionalTests
Microsoft.AspNet.Mvc.IntegrationTests Adds ActionContext to Validation contexts 2015-11-25 16:38:26 -08:00
Microsoft.AspNet.Mvc.Localization.Test
Microsoft.AspNet.Mvc.Razor.Host.Test
Microsoft.AspNet.Mvc.Razor.Test
Microsoft.AspNet.Mvc.TagHelpers.Test Remove the use of `Linq` and unneeded enumerators from Mvc `TagHelper`s. 2015-11-25 21:31:24 -08:00
Microsoft.AspNet.Mvc.Test
Microsoft.AspNet.Mvc.TestCommon
Microsoft.AspNet.Mvc.TestDiagnosticListener.Sources
Microsoft.AspNet.Mvc.ViewFeatures.Test Adds ActionContext to Validation contexts 2015-11-25 16:38:26 -08:00
Microsoft.AspNet.Mvc.WebApiCompatShimTest
WebSites