Update: 3rd Party Libraries

SignalR 1.1.2; ASP.NET MVC & ASP.NET Razor (30506); jQuery 2.0.2; jQuery
Unobtrusive Validation (30116); T4MVC 3.6.5; MS HTTP Client Libraries
2.1.10
This commit is contained in:
Gary Sharp
2013-06-03 20:19:08 +10:00
parent fac8f0acfa
commit 74146695e4
45 changed files with 12154 additions and 20963 deletions
+6 -3
View File
@@ -1,6 +1,6 @@
<#
/*
T4MVC Version 3.6.4
T4MVC Version 3.6.5
Find latest version and documentation at http://mvccontrib.codeplex.com/wikipage?title=T4MVC
Discuss on StackOverflow or on Codeplex (https://t4mvc.codeplex.com/discussions)
@@ -1732,8 +1732,11 @@ class ResultTypeInfo
{
_codeType = codeType;
var ctor = _codeType.Members.OfType<CodeFunction2>().FirstOrDefault(
f => f.FunctionKind == vsCMFunction.vsCMFunctionConstructor);
// Use the constructor with the least number of parameters
var ctor = _codeType.Members.OfType<CodeFunction2>()
.Where(f => f.FunctionKind == vsCMFunction.vsCMFunctionConstructor)
.OrderBy(f => f.Parameters.Count)
.FirstOrDefault();
Constructor = new FunctionInfo(ctor);
}