示例#1
0
 public AbpAspNetCoreMvcOptions()
 {
     ConventionalControllers            = new AbpConventionalControllerOptions();
     IgnoredControllersOnModelExclusion = new HashSet <Type>();
     AutoModelValidation = true;
     EnableRazorRuntimeCompilationOnDevelopment = true;
 }
示例#2
0
 public AbpAspNetCoreMvcOptions()
 {
     ConventionalControllers = new AbpConventionalControllerOptions();
 }
示例#3
0
 public AbpAspNetCoreMvcOptions()
 {
     ConventionalControllers            = new AbpConventionalControllerOptions();
     IgnoredControllersOnModelExclusion = new HashSet <Type>();
 }
示例#4
0
 public ConventionalRouteBuilder(IOptions <AbpConventionalControllerOptions> options)
 {
     Options = options.Value;
 }