mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-05-05 11:19:29 +03:00
Prepare game server to be published easily.
This commit is contained in:
parent
c97ef5deb2
commit
4e1f9b17a8
BIN
res/icon.ico
Normal file
BIN
res/icon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
@ -35,6 +35,7 @@ namespace Syroot.Worms.IO
|
|||||||
return values;
|
return values;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
/// Returns the current position of the stream at which a 4-byte placeholder has been written which can be
|
/// 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"/>.
|
/// filled later with <see cref="SatisfyOffset"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -30,7 +30,6 @@ namespace Syroot.Worms.IO
|
|||||||
return (encoding ?? Encoding.ASCII).GetString(bytes.Slice(0, length));
|
return (encoding ?? Encoding.ASCII).GetString(bytes.Slice(0, length));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <s
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reads the unmanaged representation of a struct of type <typeparamref name="T"/>.
|
/// Reads the unmanaged representation of a struct of type <typeparamref name="T"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,4 +1,23 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<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>
|
<PropertyGroup>
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
@ -6,9 +25,5 @@
|
|||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp3</TargetFramework>
|
<TargetFramework>netcoreapp3</TargetFramework>
|
||||||
</PropertyGroup>
|
</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>
|
</Project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user