34 lines
1021 B
XML
34 lines
1021 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<PackageOutputPath>$(ProjectDir)</PackageOutputPath>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Serilog" Version="4.0.0" />
|
|||
|
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
|
|||
|
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\SCHALE.Common\SCHALE.Common.csproj" />
|
|||
|
<ProjectReference Include="..\SCHALE.GameServer\SCHALE.GameServer.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Folder Include="Misc\" />
|
|||
|
<Folder Include="Properties\" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Update="Misc\students.json">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|