命名空间修正
This commit is contained in:
2021-04-25 14:44:22 +08:00
parent 09eeec63a4
commit c300dec039
22 changed files with 7041 additions and 44 deletions

View File

@@ -3,11 +3,11 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>Dilon.Web.Core.xml</DocumentationFile>
<DocumentationFile>Ewide.Web.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="Dilon.Web.Core.xml" />
<None Remove="Ewide.Web.Core.xml" />
</ItemGroup>
<ItemGroup>
@@ -15,8 +15,8 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dilon.Application\Dilon.Application.csproj" />
<ProjectReference Include="..\Dilon.Database.Migrations\Dilon.Database.Migrations.csproj" />
<ProjectReference Include="..\Ewide.Application\Ewide.Application.csproj" />
<ProjectReference Include="..\Ewide.Database.Migrations\Ewide.Database.Migrations.csproj" />
</ItemGroup>
</Project>

View File

@@ -1,17 +1,17 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Dilon.Web.Core</name>
<name>Ewide.Web.Core</name>
</assembly>
<members>
<member name="M:Dilon.Web.Core.JwtHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext)">
<member name="M:Ewide.Web.Core.JwtHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext)">
<summary>
重写 Handler 添加自动刷新
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:Dilon.Web.Core.JwtHandler.PipelineAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext,Microsoft.AspNetCore.Http.DefaultHttpContext)">
<member name="M:Ewide.Web.Core.JwtHandler.PipelineAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext,Microsoft.AspNetCore.Http.DefaultHttpContext)">
<summary>
授权判断逻辑,授权通过返回 true否则返回 false
</summary>
@@ -19,7 +19,7 @@
<param name="httpContext"></param>
<returns></returns>
</member>
<member name="M:Dilon.Web.Core.JwtHandler.CheckAuthorzieAsync(Microsoft.AspNetCore.Http.DefaultHttpContext)">
<member name="M:Ewide.Web.Core.JwtHandler.CheckAuthorzieAsync(Microsoft.AspNetCore.Http.DefaultHttpContext)">
<summary>
检查权限
</summary>

View File

@@ -1,5 +1,5 @@
using Dilon.Core;
using Dilon.Core.Service;
using Ewide.Core;
using Ewide.Core.Service;
using Furion;
using Furion.Authorization;
using Furion.DataEncryption;

View File

@@ -1,4 +1,4 @@
using Dilon.Core;
using Ewide.Core;
using Furion;
using Furion.Snowflake;
using Microsoft.AspNetCore.Builder;