您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <GenerateRuntimeConfigurationFiles>True</GenerateRuntimeConfigurationFiles>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
  8. <PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.8" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.8" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.8">
  12. <PrivateAssets>all</PrivateAssets>
  13. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  14. </PackageReference>
  15. <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
  16. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.1.0" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\Domain\Domain.csproj" />
  20. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Folder Include="Migrations\" />
  24. </ItemGroup>
  25. </Project>