Edited Issue: MediaTypeFormatterTracer doesn't pass MediaTypeMappings to...
The particular issue happens when supporting $format to ODataMediaTypeFormatter. The controller configuration won't work with tracing enabled: public class ODataFormatQueryAttribute : Attribute,...
View ArticleCommented Issue: Code formatting on CSHTML lowercases generic model types. [828]
Parser treats generic parameters in a generic model as html tag. Formatting cshtml file in Visual Studio 2012 (with Ctrl+K+D) changes generic parameter to lower case:```@model...
View ArticleEdited Issue: Code formatting on CSHTML lowercases generic model types. [828]
Parser treats generic parameters in a generic model as html tag. Formatting cshtml file in Visual Studio 2012 (with Ctrl+K+D) changes generic parameter to lower case:```@model...
View ArticleCommented Issue: HttpPostedFileBaseModelBinder and browsers that send full...
Certain browsers (IE) send the full file path of a file from an <input type="file"/>.It seems this behaviour was turned off in IE8 onwards (but still remains as an option to turn back on through...
View ArticleCommented Task: MQ: Review use of functional tests; convert some to unit...
Prefer unit testing to functional/integration testing in dev tests to reduce the time used in running tests in build.cmd* Identify all functional tests and separate them from unit tests.* Ensure every...
View ArticleCommented Task: MQ: Perf tests: refactor and add verification [818]
Performance tests improvement - refactor the client code and add verification as wellComments: partially done. client code is in a better shape now. I haven't touched client code for web API and other...
View ArticleCommented Issue: Razor outputs the string "value" or completely removes value...
I was creating some views where I used html for all my input fields instead of using the helper methods. I had some hidden fields that contained boolean values. I've done this often in MVC 3 and it was...
View ArticleEdited Issue: Model-binding collection fails when non-collection property...
Given a collection property named "foos" and another property named "foosBar" on an object being model-bound, because of the implementation of the PrefixContainer (specifically the IsPrefixMatch...
View ArticleEdited Issue: Optimizer JS Bundling bug with files that ends and starts with...
Hi,When you bundle two files that the first one ending with one-line comment (//) and the second starts with multiline comment (/* */) the minifier throws an error.For examplea.js```function foo() { //...
View ArticleEdited Issue: MediaTypeFormatterTracer doesn't pass MediaTypeMappings to...
The particular issue happens when supporting $format to ODataMediaTypeFormatter. The controller configuration won't work with tracing enabled: public class ODataFormatQueryAttribute : Attribute,...
View ArticleEdited Feature: Add json.net support for Delta [777]
Currently Delta<T> only works with the ODataFormatter. It should also work with json serialized from JSON.NET/JavaScript/JsonMediaTypeFormatter. Json is used heavily by web api and various...
View ArticleEdited Issue: Disambiguate actions correctly when they are overloaded by Enum...
The details behind this issue can be found here:http://forums.asp.net/post/5102466.aspxEnum types by default are FromUri as it has a TypeConverter from string.
View ArticleEdited Issue: .NET 4.5 post-upgrade cleanups [841]
After we upgrade the projects under Runtime.sln to .NET 4.5, we need to reivew and cleanup the source code to make sure we're making full use of .NET 4.5.Consider the followings:* Remove...
View ArticleEdited Issue: Help Pages XmlDocumentationProvider should process class level...
We've got support for parsing comments generated for methods, but not the class. Would be great to also be able to provide class level xml comments.
View ArticleEdited Issue: Help Pages XmlDocumentationProvider should process class level...
We've got support for parsing comments generated for methods, but not the class. Would be great to also be able to provide class level xml comments.
View ArticleEdited Issue: Fix tracing info link to fwlink in webapiconfig comment [840]
// To disable tracing in your application, please comment out or remove the following line of code// For more information, refer to: http://www.asp.net/web-api...
View ArticleCommented Issue: Fix tracing info link to fwlink in webapiconfig comment [840]
// To disable tracing in your application, please comment out or remove the following line of code// For more information, refer to: http://www.asp.net/web-api...
View ArticleCommented Issue: DependencyScope is disposed before the HttpControllerTracer...
### Facts - I am using AutoFac as IoC container - I enabled tracing with my custom tracer. - During the trace operation, I try to get the `DependencyScope` through request.Properties collection.###...
View ArticleEdited Feature: Caching story for Web API [608]
There’s a couple of things to think about when considering caching – it is not enough to just look at the cache control header and turn off caching. We absolutely want to enable caching in a rich way...
View Article