add
yirongjin
2025-07-24 b9c933a1a9c9de300ed8b10d07d482216c387323
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
  </PropertyGroup>
 
 
  <ItemGroup>
    <Content Include="dbsettings.Development.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
    <Content Include="dbsettings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.9" />
    <PackageReference Include="Zack.EFCore.Batch.MSSQL_NET6" Version="6.1.3" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\iWare.Wms.Core\iWare.Wms.Core.csproj" />
  </ItemGroup>
 
</Project>