命名空间修正
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

@@ -1,4 +1,4 @@
using Dilon.Core;
using Ewide.Core;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations.Schema;

View File

@@ -3,12 +3,12 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>Dilon.Application.xml</DocumentationFile>
<DocumentationFile>Ewide.Application.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="applicationsettings.json" />
<None Remove="Dilon.Application.xml" />
<None Remove="Ewide.Application.xml" />
</ItemGroup>
<ItemGroup>
@@ -18,7 +18,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dilon.Core\Dilon.Core.csproj" />
<ProjectReference Include="..\Ewide.Core\Ewide.Core.csproj" />
</ItemGroup>
<ItemGroup>

View File

@@ -1,65 +1,65 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Dilon.Application</name>
<name>Ewide.Application</name>
</assembly>
<members>
<member name="T:Dilon.Application.CodeGenTest">
<member name="T:Ewide.Application.CodeGenTest">
<summary>
代码生成实体测试EF
</summary>
</member>
<member name="P:Dilon.Application.CodeGenTest.Name">
<member name="P:Ewide.Application.CodeGenTest.Name">
<summary>
名称
</summary>
</member>
<member name="P:Dilon.Application.CodeGenTest.NickName">
<member name="P:Ewide.Application.CodeGenTest.NickName">
<summary>
昵称
</summary>
</member>
<member name="P:Dilon.Application.CodeGenTest.Birthday">
<member name="P:Ewide.Application.CodeGenTest.Birthday">
<summary>
生日
</summary>
</member>
<member name="P:Dilon.Application.CodeGenTest.Age">
<member name="P:Ewide.Application.CodeGenTest.Age">
<summary>
年龄
</summary>
</member>
<member name="T:Dilon.Application.Test">
<member name="T:Ewide.Application.Test">
<summary>
SqlSugar实体
</summary>
</member>
<member name="P:Dilon.Application.Test.Id">
<member name="P:Ewide.Application.Test.Id">
<summary>
雪花Id
</summary>
</member>
<member name="P:Dilon.Application.Test.Name">
<member name="P:Ewide.Application.Test.Name">
<summary>
名称
</summary>
</member>
<member name="P:Dilon.Application.Test.Age">
<member name="P:Ewide.Application.Test.Age">
<summary>
年龄
</summary>
</member>
<member name="P:Dilon.Application.Test.CreateTime">
<member name="P:Ewide.Application.Test.CreateTime">
<summary>
创建时间
</summary>
</member>
<member name="T:Dilon.Application.TestService">
<member name="T:Ewide.Application.TestService">
<summary>
业务服务及集成SqlSugar用法事例
</summary>
</member>
<member name="M:Dilon.Application.TestService.GetDescription">
<member name="M:Ewide.Application.TestService.GetDescription">
<summary>
测试方法
</summary>

View File

@@ -1,4 +1,4 @@
using Dilon.Core;
using Ewide.Core;
using Furion.DependencyInjection;
using Furion.DynamicApiController;
using Furion.Snowflake;

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
using Dilon.Core.Service;
using Ewide.Core.Service;
using Furion;
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;

View File

@@ -1,4 +1,4 @@
using Dilon.Core.Service;
using Ewide.Core.Service;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations.Schema;

View File

@@ -1,4 +1,4 @@
using Dilon.Core.Service;
using Ewide.Core.Service;
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using System;

View File

@@ -1,4 +1,4 @@
using Dilon.Core.OAuth;
using Ewide.Core.OAuth;
using Furion.DependencyInjection;
using Furion.DynamicApiController;
using Furion.FriendlyException;

View File

@@ -5,7 +5,7 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Dilon.EntityFramework.Core\Dilon.EntityFramework.Core.csproj" />
<ProjectReference Include="..\Ewide.EntityFramework.Core\Ewide.EntityFramework.Core.csproj" />
</ItemGroup>
</Project>

View File

@@ -1,6 +1,6 @@
// <auto-generated />
using System;
using Dilon.EntityFramework.Core;
using Ewide.EntityFramework.Core;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;

View File

@@ -1,6 +1,6 @@
// <auto-generated />
using System;
using Dilon.EntityFramework.Core;
using Ewide.EntityFramework.Core;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;

View File

@@ -1,5 +1,5 @@
using Dilon.Core;
using Dilon.Core.Service;
using Ewide.Core;
using Ewide.Core.Service;
using Furion;
using Furion.DatabaseAccessor;
using Furion.FriendlyException;

View File

@@ -1,5 +1,5 @@
using Dilon.Core;
using Dilon.Core.Service;
using Ewide.Core;
using Ewide.Core.Service;
using Furion;
using Furion.DatabaseAccessor;
using Furion.FriendlyException;

View File

@@ -14,7 +14,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dilon.Core\Dilon.Core.csproj" />
<ProjectReference Include="..\Ewide.Core\Ewide.Core.csproj" />
</ItemGroup>
<ItemGroup>

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;

View File

@@ -1,4 +1,4 @@
using Dilon.Application;
using Ewide.Application;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

View File

@@ -25,7 +25,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dilon.Web.Core\Dilon.Web.Core.csproj" />
<ProjectReference Include="..\Ewide.Web.Core\Ewide.Web.Core.csproj" />
</ItemGroup>
<ItemGroup>

View File

@@ -1,2 +1,2 @@
@using Dilon.Web.Entry
@using Ewide.Web.Entry
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers