1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.1</TargetFramework>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="AutoMapper" Version="12.0.1" />
- <PackageReference Include="CSRedisCore" Version="3.8.670" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\wms.dataservice\wms.dataservice.csproj" />
- <ProjectReference Include="..\wms.dto\wms.dto.csproj" />
- <ProjectReference Include="..\wms.package\wms.package.csproj" />
- <ProjectReference Include="..\wms.sqlsugar\wms.sqlsugar.csproj" />
- </ItemGroup>
- </Project>
|