bitforum.csproj 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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="BuildWebCompiler" Version="1.12.405" />
  9. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
  10. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.0" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0">
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. <PrivateAssets>all</PrivateAssets>
  14. </PackageReference>
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
  16. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0">
  17. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  18. <PrivateAssets>all</PrivateAssets>
  19. </PackageReference>
  20. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.0" />
  21. <PackageReference Include="System.Management" Version="8.0.0" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Content Include="node_modules\bootstrap\dist\css\bootstrap.min.css" />
  25. <Content Include="node_modules/bootstrap-icons/font/bootstrap-icons.scss" />
  26. <Content Include="node_modules/jquery/dist/jquery.min.js" />
  27. <Content Include="node_modules/jquery-validation/dist/jquery.validate.min.js" />
  28. <Content Include="node_modules/jquery-validation/dist/additional-methods.min.js" />
  29. <Content Include="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Folder Include="Models\Board\Comment\" />
  33. <Folder Include="Models\Board\Post\" />
  34. </ItemGroup>
  35. </Project>