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-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>
|
|
|
|
|
<Reference Include="Lidgren.Network">
|
|
|
|
|
<HintPath>..\Libs\Release\scripts\Lidgren.Network.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Newtonsoft.Json">
|
|
|
|
|
<HintPath>..\Libs\Release\scripts\Newtonsoft.Json.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ScriptHookVDotNet3">
|
|
|
|
|
<HintPath>..\Libs\Release\ScriptHookVDotNet3.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|