forked from liaozb/APIJSON.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApiJson.Common.csproj
More file actions
32 lines (27 loc) · 1.06 KB
/
ApiJson.Common.csproj
File metadata and controls
32 lines (27 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>0.0.11</Version>
<Description>
0.0.11 升级sqlSugarCore版本 解决如果查找字段是关键字(例如:key)时出错的问题
0.0.10 处理别名如果为关键字的缺陷
0.0.8 清理SelectTable 支持重载
0.0.7 修复not in的缺陷,增加~ 不等于的支持
0.0.6 增加ToSql接口,处理sql注入的情况
通用查询组件</Description>
<PackageId>ApiJson.Common.Core</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
<Compile Remove="SelectTable - 副本.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspectCore.Extensions.Reflection" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
<PackageReference Include="sqlSugarCore" Version="5.0.9.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>