Skip to content

Commit 5a3f25c

Browse files
committed
#修复生成错误#
1 parent 9a6d483 commit 5a3f25c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

APIJSON.NET/APIJSON.NET/APIJSON.NET.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<ItemGroup>
2222
<PackageReference Include="AspectCore.Extensions.Reflection" Version="1.2.0" />
23-
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
23+
<PackageReference Include="Microsoft.AspNetCore.App" />
2424
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="2.2.0" />
2525
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="2.2.0" />
2626
<PackageReference Include="Microsoft.AspNetCore.Rewrite" Version="2.2.0" />

APIJSON.NET/APIJSONCommon/ApiJson.Common.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Version>0.0.1</Version>
66
<Description>通用查询组件</Description>
7+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
78
</PropertyGroup>
89

910
<ItemGroup>

APIJSON.NET/APIJSONCommon/Properties/AssemblyInfo.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// 有关程序集的一般信息由以下

APIJSON.NET/APIJSONCommon/Services/IIdentityService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface IIdentityService
2525
/// </summary>
2626
/// <param name="table"></param>
2727
/// <returns></returns>
28-
Tuple<bool, string> GetSelectRole(string table);
28+
(bool, string) GetSelectRole(string table);
2929

3030

3131
bool ColIsRole(string col, string[] selectrole);

0 commit comments

Comments
 (0)