AipGateway.API.Service.csproj 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.4" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.4" />
  11. <PackageReference Include="Microsoft.Identity.Client" Version="4.60.3" />
  12. <PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.60.3" />
  13. <PackageReference Include="Microsoft.InformationProtection.File" Version="1.14.128" />
  14. <PackageReference Include="Serilog" Version="3.1.1" />
  15. <PackageReference Include="Swashbuckle" Version="5.6.0" />
  16. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\AipGateway.AIP\AipGateway.AIP.csproj" />
  20. <ProjectReference Include="..\AipGateway.Common\AipGateway.Common.csproj" />
  21. <ProjectReference Include="..\AipGateway.Data\AipGateway.Data.csproj" />
  22. <ProjectReference Include="..\AipGateway.DRM\AipGateway.DRM.csproj" />
  23. <ProjectReference Include="..\AipGateway.Log\AipGateway.Log.csproj" />
  24. <ProjectReference Include="..\AipGateway.Test\AipGateway.Test.csproj" />
  25. <ProjectReference Include="..\AipGateway.Viewer\AipGateway.Viewer.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Folder Include="Resources\" />
  29. </ItemGroup>
  30. </Project>