Merge branch 'framework' of https://gitee.com/ccnetcore/Yi into framework

This commit is contained in:
橙子
2023-02-10 19:49:31 +08:00
20 changed files with 120 additions and 41 deletions

View File

@@ -1,5 +1,6 @@
using AspNetCore.Microsoft.AspNetCore.Builder;
using StartupModules;
using Yi.Framework.AspNetCore;
using Yi.Framework.Auth.JwtBearer;
using Yi.Framework.Core;
using Yi.Framework.Core.Attributes;
@@ -10,6 +11,7 @@ using Yi.RBAC.Sqlsugar;
namespace Yi.RBAC.Web
{
[DependsOn(
typeof(YiFrameworkAspNetCoreModule),
typeof(YiFrameworkCoreAutofacModule),
typeof(YiRBACSqlsugarModule),
typeof(YiRBACApplicationModule)

View File

@@ -2,6 +2,7 @@
"Logging": {
"LogLevel": {
"Default": "Information",
//"Default": "Debug",
"Microsoft.AspNetCore": "Warning"
}
},