|
|
@@ -1,50 +1,47 @@
|
|
|
-<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
+<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
- <PropertyGroup>
|
|
|
- <TargetFramework>net10.0</TargetFramework>
|
|
|
- <Nullable>enable</Nullable>
|
|
|
- <ImplicitUsings>enable</ImplicitUsings>
|
|
|
- <HotReloadAutoRestart>true</HotReloadAutoRestart>
|
|
|
- </PropertyGroup>
|
|
|
+ <PropertyGroup>
|
|
|
+ <HotReloadAutoRestart>true</HotReloadAutoRestart>
|
|
|
+ </PropertyGroup>
|
|
|
|
|
|
- <ItemGroup>
|
|
|
- <None Remove="nul" />
|
|
|
- </ItemGroup>
|
|
|
-
|
|
|
- <ItemGroup>
|
|
|
- <None Include=".github\copilot-instructions.md" />
|
|
|
- </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <None Include=".github\copilot-instructions.md" />
|
|
|
+ </ItemGroup>
|
|
|
|
|
|
- <ItemGroup>
|
|
|
- <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.7" />
|
|
|
- <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.7" />
|
|
|
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.7">
|
|
|
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
- <PrivateAssets>all</PrivateAssets>
|
|
|
- </PackageReference>
|
|
|
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.7" />
|
|
|
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.7">
|
|
|
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
- <PrivateAssets>all</PrivateAssets>
|
|
|
- </PackageReference>
|
|
|
- <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="10.0.7" />
|
|
|
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="10.0.2" />
|
|
|
- <PackageReference Include="NuGet.Packaging" Version="7.3.1" />
|
|
|
- <PackageReference Include="NuGet.Protocol" Version="7.3.1" />
|
|
|
- <PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
|
|
|
- <PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
|
|
|
- <PackageReference Include="System.Management" Version="10.0.7" />
|
|
|
- </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>
|
|
|
- <ProjectReference Include="..\Application\Application.csproj" />
|
|
|
- <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
|
|
|
- </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>
|
|
|
- <Folder Include="wwwroot\uploads\basic\" />
|
|
|
- <Folder Include="wwwroot\uploads\banner\" />
|
|
|
- <Folder Include="wwwroot\uploads\thumb\" />
|
|
|
- </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>
|