78 lines
3.2 KiB
XML
78 lines
3.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<WarningsAsErrors>nullable;CS4014;VSTHRD110;VSTHRD100</WarningsAsErrors>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<Authors>MUnique</Authors>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<RepositoryUrl>https://github.com/MUnique/OpenMU/tree/master/src/Network</RepositoryUrl>
|
|
<PackageProjectUrl>https://munique.net</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageTags>MUnique OpenMU MUOnline Network TCP</PackageTags>
|
|
<PackageId>MUnique.OpenMU.Network</PackageId>
|
|
<Description>
|
|
MUnique.OpenMU.Network contains all what's required to connect from and to a MU Online game, connect or chat server. It implements the MU Online network protocol.
|
|
It also contains several the encryption algorithms and keys which were used until a few years ago up to Season 6 Episode 3.
|
|
</Description>
|
|
<PackageVersion>0.9.10</PackageVersion>
|
|
<Version>0.9.10</Version>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>..\..\bin\Debug\</OutputPath>
|
|
<DocumentationFile>..\..\bin\Debug\MUnique.OpenMU.Network.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>..\..\bin\Release\</OutputPath>
|
|
<DocumentationFile>..\..\bin\Release\MUnique.OpenMU.Network.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Analyzer\**" />
|
|
<EmbeddedResource Remove="Analyzer\**" />
|
|
<None Remove="Analyzer\**" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Packets\**" />
|
|
<EmbeddedResource Remove="Packets\**" />
|
|
<None Remove="Packets\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
<PackageReference Include="Nito.AsyncEx.Tasks" />
|
|
<PackageReference Include="Pipelines.Sockets.Unofficial" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PlugIns\MUnique.OpenMU.PlugIns.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Properties\PlugInResources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>PlugInResources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\PlugInResources.resx">
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>PlugInResources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|