EntitySync.csproj 522 B

1234567891011121314151617181920
  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. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\OASystem.Api\OASystem.API.csproj" />
  14. </ItemGroup>
  15. </Project>