update
命名空间修正
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using Dilon.Core;
|
||||
using Ewide.Core;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Dilon.Core;
|
||||
using Ewide.Core;
|
||||
using Furion.DependencyInjection;
|
||||
using Furion.DynamicApiController;
|
||||
using Furion.Snowflake;
|
||||
|
||||
6997
Api/Ewide.Core/Dilon.Core.xml
Normal file
6997
Api/Ewide.Core/Dilon.Core.xml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
using Dilon.Core.Service;
|
||||
using Ewide.Core.Service;
|
||||
using Furion;
|
||||
using Furion.DatabaseAccessor;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Dilon.Core.Service;
|
||||
using Ewide.Core.Service;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Dilon.Core.Service;
|
||||
using Ewide.Core.Service;
|
||||
using Furion.DatabaseAccessor;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Dilon.Core.OAuth;
|
||||
using Ewide.Core.OAuth;
|
||||
using Furion.DependencyInjection;
|
||||
using Furion.DynamicApiController;
|
||||
using Furion.FriendlyException;
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Dilon.Core\Dilon.Core.csproj" />
|
||||
<ProjectReference Include="..\Ewide.Core\Ewide.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Dilon.Core;
|
||||
using Ewide.Core;
|
||||
using Furion;
|
||||
using Furion.Snowflake;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Dilon.Application;
|
||||
using Ewide.Application;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
@using Dilon.Web.Entry
|
||||
@using Ewide.Web.Entry
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
Reference in New Issue
Block a user