maintenance: update T4MVC
This commit is contained in:
@@ -3,8 +3,10 @@
|
||||
// Don't change it directly as your change would get overwritten. Instead, make changes
|
||||
// to the .tt file (i.e. the T4 template) and save it to regenerate this file.
|
||||
|
||||
// Make sure the compiler doesn't complain about missing Xml comments
|
||||
#pragma warning disable 1591
|
||||
// Make sure the compiler doesn't complain about missing Xml comments and CLS compliance
|
||||
// 0108: suppress "Foo hides inherited member Foo. Use the new keyword if hiding was intended." when a controller and its abstract parent are both processed
|
||||
// 0114: suppress "Foo.BarController.Baz()' hides inherited member 'Qux.BarController.Baz()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword." when an action (with an argument) overrides an action in a parent controller
|
||||
#pragma warning disable 1591, 3008, 3009, 0108, 0114
|
||||
#region T4MVC
|
||||
|
||||
using System;
|
||||
@@ -66,7 +68,7 @@ namespace Disco.Web.Areas.Config.Controllers
|
||||
public readonly string Name = "SystemConfig";
|
||||
[GeneratedCode("T4MVC", "2.0")]
|
||||
public const string NameConst = "SystemConfig";
|
||||
|
||||
[GeneratedCode("T4MVC", "2.0")]
|
||||
static readonly ActionNamesClass s_actions = new ActionNamesClass();
|
||||
[GeneratedCode("T4MVC", "2.0"), DebuggerNonUserCode]
|
||||
public ActionNamesClass ActionNames { get { return s_actions; } }
|
||||
@@ -119,4 +121,4 @@ namespace Disco.Web.Areas.Config.Controllers
|
||||
}
|
||||
|
||||
#endregion T4MVC
|
||||
#pragma warning restore 1591
|
||||
#pragma warning restore 1591, 3008, 3009, 0108, 0114
|
||||
|
||||
Reference in New Issue
Block a user