Skip to content

Commit

Permalink
Merge pull request #12 from liaozb/master
Browse files Browse the repository at this point in the history
#修复生成错误#
  • Loading branch information
TommyLemon authored Jul 22, 2019
2 parents 4d4bf02 + 5a3f25c commit 61f87af
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion APIJSON.NET/APIJSON.NET/APIJSON.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<ItemGroup>
<PackageReference Include="AspectCore.Extensions.Reflection" Version="1.2.0" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Rewrite" Version="2.2.0" />
Expand Down
3 changes: 2 additions & 1 deletion APIJSON.NET/APIJSONCommon/ApiJson.Common.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>0.0.1</Version>
<Description>通用查询组件</Description>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion APIJSON.NET/APIJSONCommon/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// 有关程序集的一般信息由以下
Expand Down
2 changes: 1 addition & 1 deletion APIJSON.NET/APIJSONCommon/Services/IIdentityService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public interface IIdentityService
/// </summary>
/// <param name="table"></param>
/// <returns></returns>
Tuple<bool, string> GetSelectRole(string table);
(bool, string) GetSelectRole(string table);


bool ColIsRole(string col, string[] selectrole);
Expand Down

0 comments on commit 61f87af

Please sign in to comment.