| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <HotReloadAutoRestart>true</HotReloadAutoRestart>
- </PropertyGroup>
- <ItemGroup>
- <None Include=".github\copilot-instructions.md" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design">
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- <PrivateAssets>all</PrivateAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- <PrivateAssets>all</PrivateAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design">
- <PrivateAssets>all</PrivateAssets>
- </PackageReference>
- <PackageReference Include="Serilog.AspNetCore" />
- <PackageReference Include="System.Management" />
- </ItemGroup>
- <ItemGroup>
- <!-- CodeGeneration.Design(design-time) 이 NuGet.Packaging/Protocol 6.12.1 을 끌고 옴 — 저심각도 advisory 1건만 스코프 억제 -->
- <NuGetAuditSuppress Include="https://github.com/advisories/GHSA-g4vj-cjjj-v7hg" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Application\Application.csproj" />
- <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="wwwroot\uploads\basic\" />
- <Folder Include="wwwroot\uploads\banner\" />
- <Folder Include="wwwroot\uploads\thumb\" />
- </ItemGroup>
- </Project>
|