DopInterfacePlatform.csproj 1.0 KB

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.21" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.21" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.21" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.21">
  12. <PrivateAssets>all</PrivateAssets>
  13. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  14. </PackageReference>
  15. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  16. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
  17. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.32.2" />
  18. <PackageReference Include="System.ServiceModel.Http" Version="6.0.0" />
  19. </ItemGroup>
  20. </Project>