random cleanup

This commit is contained in:
SonjaKhan 2014-12-09 10:55:22 -08:00
parent 274c9dbc4b
commit 66eb3af806
4 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
"Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-*", "Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-*",
"Microsoft.AspNet.Server.IIS": "1.0.0-*", "Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*", "Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.StaticFiles": "1.0.0-*", "Microsoft.AspNet.StaticFiles": "1.0.0-*"
}, },
"commands": { "commands": {
"web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5001", "web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5001",

View File

@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc
/// are candidates for selection, the next stage to run is the lowest value of <see cref="Order"/> for any /// are candidates for selection, the next stage to run is the lowest value of <see cref="Order"/> for any
/// constraint of any candidate which is greater than the order of the last stage. /// constraint of any candidate which is greater than the order of the last stage.
/// ///
/// Once the stage order is identified, each action has all of it's constraints in that stage executed. /// Once the stage order is identified, each action has all of its constraints in that stage executed.
/// If any constraint does not match, then that action is not a candidate for selection. If any actions /// If any constraint does not match, then that action is not a candidate for selection. If any actions
/// with constraints in the current state are still candidates, then those are the 'best' actions and this /// with constraints in the current state are still candidates, then those are the 'best' actions and this
/// process will repeat with the next stage on the set of 'best' actions. If after processing the /// process will repeat with the next stage on the set of 'best' actions. If after processing the

View File

@ -14,7 +14,7 @@ namespace Microsoft.AspNet.Mvc
public class ViewResult : ActionResult public class ViewResult : ActionResult
{ {
/// <summary> /// <summary>
/// /// Gets or sets the name of the view to render. /// Gets or sets the name of the view to render.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// When <c>null</c>, defaults to <see cref="ActionDescriptor.Name"/>. /// When <c>null</c>, defaults to <see cref="ActionDescriptor.Name"/>.

View File

@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc.Razor
/// </summary> /// </summary>
/// <param name="context">The <see cref="ViewLocationExpanderContext"/> for the current view location /// <param name="context">The <see cref="ViewLocationExpanderContext"/> for the current view location
/// expansion operation.</param> /// expansion operation.</param>
/// <param name="values">The sequence of view locations to expand.</param> /// <param name="viewLocations">The sequence of view locations to expand.</param>
/// <returns>A list of expanded view locations.</returns> /// <returns>A list of expanded view locations.</returns>
IEnumerable<string> ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable<string> ExpandViewLocations(ViewLocationExpanderContext context,
IEnumerable<string> viewLocations); IEnumerable<string> viewLocations);