2022-05-22 15:55:26 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
2022-05-22 16:56:35 +08:00
|
|
|
|
<AssemblyVersion>0.1</AssemblyVersion>
|
|
|
|
|
<FileVersion>0.1</FileVersion>
|
|
|
|
|
<Version>0.1</Version>
|
2022-06-12 17:11:14 +08:00
|
|
|
|
<DebugType>embedded</DebugType>
|
2022-06-21 18:13:30 +08:00
|
|
|
|
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
|
2022-07-01 14:39:43 +08:00
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2022-05-22 15:55:26 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-07-01 14:39:43 +08:00
|
|
|
|
<Compile Remove="Lidgren.Network\**" />
|
|
|
|
|
<EmbeddedResource Remove="Lidgren.Network\**" />
|
|
|
|
|
<None Remove="Lidgren.Network\**" />
|
2022-06-11 18:41:10 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-06-24 16:49:59 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.3.3" />
|
|
|
|
|
<PackageReference Include="System.Buffers" Version="4.5.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-06-11 18:41:10 +08:00
|
|
|
|
<ItemGroup>
|
2022-07-01 14:39:43 +08:00
|
|
|
|
<Reference Include="Lidgren.Network">
|
|
|
|
|
<HintPath>..\libs\Lidgren.Network.dll</HintPath>
|
|
|
|
|
</Reference>
|
2022-05-22 15:55:26 +08:00
|
|
|
|
<Reference Include="Newtonsoft.Json">
|
2022-06-22 14:18:20 +08:00
|
|
|
|
<HintPath>..\libs\Newtonsoft.Json.dll</HintPath>
|
2022-05-22 15:55:26 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ScriptHookVDotNet3">
|
2022-06-22 14:18:20 +08:00
|
|
|
|
<HintPath>..\libs\ScriptHookVDotNet3.dll</HintPath>
|
2022-05-22 15:55:26 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|