MusicAPI.csproj 741 B

12345678910111213141516171819
  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.EntityFrameworkCore" Version="6.0.25" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.25" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.25">
  11. <PrivateAssets>all</PrivateAssets>
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. </PackageReference>
  14. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
  15. </ItemGroup>
  16. </Project>