Admin.csproj 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <HotReloadAutoRestart>true</HotReloadAutoRestart>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <None Include=".github\copilot-instructions.md" />
  7. </ItemGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
  10. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Design">
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. <PrivateAssets>all</PrivateAssets>
  14. </PackageReference>
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
  16. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
  17. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  18. <PrivateAssets>all</PrivateAssets>
  19. </PackageReference>
  20. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
  21. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design">
  22. <PrivateAssets>all</PrivateAssets>
  23. </PackageReference>
  24. <PackageReference Include="Serilog.AspNetCore" />
  25. <PackageReference Include="System.Management" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <!-- CodeGeneration.Design(design-time) 이 NuGet.Packaging/Protocol 6.12.1 을 끌고 옴 — 저심각도 advisory 1건만 스코프 억제 -->
  29. <NuGetAuditSuppress Include="https://github.com/advisories/GHSA-g4vj-cjjj-v7hg" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\Application\Application.csproj" />
  33. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Folder Include="wwwroot\uploads\basic\" />
  37. <Folder Include="wwwroot\uploads\banner\" />
  38. <Folder Include="wwwroot\uploads\thumb\" />
  39. </ItemGroup>
  40. </Project>