You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SecureSharing.Data.csproj 1.2KB

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <RootNamespace>SecureSharing.Data</RootNamespace>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="AutoMapper" Version="11.0.1" />
  10. <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="6.0.9" />
  11. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.9" />
  12. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.9" />
  13. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.9" />
  14. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.9">
  15. <PrivateAssets>all</PrivateAssets>
  16. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  17. </PackageReference>
  18. <PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
  19. <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
  20. </ItemGroup>
  21. </Project>