26 lines
800 B
XML
26 lines
800 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<StartupObject>MistoxHolePunch.Program</StartupObject>
|
|
<PackageId>Mistox Game Server</PackageId>
|
|
<Authors>Mistox</Authors>
|
|
<Company>Mistox.net</Company>
|
|
<Product>Mistox Game Server</Product>
|
|
<Description>Game Server for Mistox Games and partners</Description>
|
|
<SignAssembly>false</SignAssembly>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<ErrorReport>none</ErrorReport>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MistoxServer\MistServerModule.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|