Files
Genesis_GameServer/GameServer/GameServer.csproj
2026-09-04 01:44:59 +09:00

26 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<!-- 업로드된 사진은 배포 산출물에 넣지 않는다.
서버에서는 볼륨(컨테이너) 또는 서버의 uploads 폴더로 따로 관리한다.
빼지 않으면 dotnet publish 가 사진 수십 MB 를 함께 배포한다. -->
<Content Remove="wwwroot/uploads/**" />
<None Remove="wwwroot/uploads/**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.13">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
<PackageReference Include="Scalar.AspNetCore" Version="2.13.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
</ItemGroup>
</Project>