Prepare game server to be published easily.

This commit is contained in:
Ray Koopa 2020-07-11 03:14:57 +02:00
parent c97ef5deb2
commit 4e1f9b17a8
4 changed files with 21 additions and 6 deletions

BIN
res/icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -35,6 +35,7 @@ namespace Syroot.Worms.IO
return values;
}
/// <summary>
/// Returns the current position of the stream at which a 4-byte placeholder has been written which can be
/// filled later with <see cref="SatisfyOffset"/>.
/// </summary>

View File

@ -30,7 +30,6 @@ namespace Syroot.Worms.IO
return (encoding ?? Encoding.ASCII).GetString(bytes.Slice(0, length));
}
/// <s
/// <summary>
/// Reads the unmanaged representation of a struct of type <typeparamref name="T"/>.
/// </summary>

View File

@ -1,4 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Metadata -->
<PropertyGroup>
<ApplicationIcon>..\..\..\res\icon.ico</ApplicationIcon>
<AssemblyName>Worms 2 Server</AssemblyName>
<Authors>Syroot</Authors>
<Copyright>(c) Syroot, licensed under MIT</Copyright>
<Description>Worms 2 Game Server</Description>
<Version>1.0.0</Version>
</PropertyGroup>
<!-- References -->
<ItemGroup>
<PackageReference Include="Syroot.ColoredConsole" Version="1.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.1" />
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
</ItemGroup>
<!-- Build -->
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
<LangVersion>latest</LangVersion>
@ -6,9 +25,5 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Syroot.ColoredConsole" Version="1.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.1" />
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
</ItemGroup>
</Project>