EntitySync.csproj 595 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Autofac" Version="6.4.0" />
  10. <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="8.0.0" />
  11. <PackageReference Include="SqlSugarCore" Version="5.1.3.32" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\OASystem.Domain\OASystem.Domain.csproj" />
  15. </ItemGroup>
  16. </Project>