Blame view

antis-ncc-net-core/src/Infrastructure/NCC.Data.SqlSugar/NCC.Data.SqlSugar.csproj 875 Bytes
03207d5d   wwk   1
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
  <Project Sdk="Microsoft.NET.Sdk">
  
    <PropertyGroup>
      <TargetFramework>net5.0</TargetFramework>
    </PropertyGroup>
  
  	<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  		<DocumentationFile>bin\Debug\$(AssemblyName).xml</DocumentationFile>
  	</PropertyGroup>
  
  	<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  		<DocumentationFile>bin\Release\$(AssemblyName).xml</DocumentationFile>
  	</PropertyGroup>
  
  	<ItemGroup>
  		<FrameworkReference Include="Microsoft.AspNetCore.App" />
  	</ItemGroup>
  
  	<ItemGroup>
  		<PackageReference Include="SqlSugar.IOC" Version="1.7.0" />
  		<PackageReference Include="SqlSugarCore" Version="5.0.4.1" />
  		<PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
  	</ItemGroup>
  
  	<ItemGroup>
  	  <ProjectReference Include="..\NCC\NCC.Code.csproj" />
  	</ItemGroup>
  
  </Project>