Admin.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <HotReloadAutoRestart>true</HotReloadAutoRestart>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <None Remove="nul" />
  7. </ItemGroup>
  8. <ItemGroup>
  9. <None Include=".github\copilot-instructions.md" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
  13. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
  14. <PackageReference Include="Microsoft.EntityFrameworkCore.Design">
  15. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  16. <PrivateAssets>all</PrivateAssets>
  17. </PackageReference>
  18. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
  19. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
  20. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  21. <PrivateAssets>all</PrivateAssets>
  22. </PackageReference>
  23. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
  24. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" />
  25. <PackageReference Include="MimeKit" />
  26. <PackageReference Include="Serilog.AspNetCore" />
  27. <PackageReference Include="Serilog.Sinks.File" />
  28. <PackageReference Include="System.Management" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\Application\Application.csproj" />
  32. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Folder Include="wwwroot\uploads\basic\" />
  36. <Folder Include="wwwroot\uploads\banner\" />
  37. <Folder Include="wwwroot\uploads\thumb\" />
  38. </ItemGroup>
  39. </Project>