Skip to content

Commit 4b171fa

Browse files
committed
Merge pull request #72 from bendetat/issue_71_fix_compile_error_in_production_app_start_template
#71 fix compile error in production app_start template
2 parents 8800797 + 3788274 commit 4b171fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AppStart.cs.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
{
1111
public static void Start()
1212
{
13-
ModelBinders.Binders.Add(typeof(DateTime), new DateTimeModelBinder());
14-
ModelBinders.Binders.Add(typeof(DateTime?), new DateTimeModelBinder());
13+
System.Web.Mvc.ModelBinders.Binders.Add(typeof(DateTime), new DateTimeModelBinder());
14+
System.Web.Mvc.ModelBinders.Binders.Add(typeof(DateTime?), new DateTimeModelBinder());
1515
}
1616
}
1717
}

0 commit comments

Comments
 (0)