2022-06-11 18:41:10 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2021-07-07 13:36:25 +02:00
|
|
|
|
<PropertyGroup>
|
2022-07-01 12:22:31 +08:00
|
|
|
|
<UseWindowsForms>True</UseWindowsForms>
|
2022-06-11 18:41:10 +08:00
|
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2022-07-01 13:54:18 +08:00
|
|
|
|
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2022-06-12 15:39:32 +08:00
|
|
|
|
<DocumentationFile></DocumentationFile>
|
2022-06-12 17:11:14 +08:00
|
|
|
|
<DebugType>portable</DebugType>
|
2022-06-17 19:14:56 +08:00
|
|
|
|
<AssemblyVersion>0.5.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>0.5.0</FileVersion>
|
|
|
|
|
<Version>0.5.0</Version>
|
2022-06-27 13:02:31 +08:00
|
|
|
|
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
2022-06-24 16:49:59 +08:00
|
|
|
|
<Authors>RAGECOOP</Authors>
|
|
|
|
|
<Description>An API reference for developing client-side resource for RAGECOOP</Description>
|
|
|
|
|
<PackageProjectUrl>https://ragecoop.online/</PackageProjectUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/RAGECOOP/RAGECOOP-V</RepositoryUrl>
|
2022-06-24 18:25:24 +08:00
|
|
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
2022-06-24 16:49:59 +08:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
2022-06-27 13:02:31 +08:00
|
|
|
|
<DefineConstants>SHVDN3</DefineConstants>
|
2022-07-01 12:22:31 +08:00
|
|
|
|
<TargetFrameworks>net48</TargetFrameworks>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2022-06-12 17:11:14 +08:00
|
|
|
|
</PropertyGroup>
|
2022-07-09 13:27:07 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
|
|
|
<OutDir>..\bin\Debug\Client</OutDir>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
|
|
|
<OutDir>..\bin\Release\Client</OutDir>
|
|
|
|
|
</PropertyGroup>
|
2022-06-24 16:49:59 +08:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-24 18:25:24 +08:00
|
|
|
|
<Content Include="icon.ico" />
|
2022-06-24 16:49:59 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-07-07 13:36:25 +02:00
|
|
|
|
<ItemGroup>
|
2022-06-24 16:49:59 +08:00
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.3.3" />
|
2022-06-11 18:41:10 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\RageCoop.Core\RageCoop.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-07-01 14:39:43 +08:00
|
|
|
|
<Reference Include="LemonUI.SHVDN3">
|
|
|
|
|
<HintPath>..\libs\LemonUI.SHVDN3.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Lidgren.Network">
|
|
|
|
|
<HintPath>..\libs\Lidgren.Network.dll</HintPath>
|
|
|
|
|
</Reference>
|
2022-06-11 18:41:10 +08:00
|
|
|
|
<Reference Include="Newtonsoft.Json">
|
2022-06-22 14:18:20 +08:00
|
|
|
|
<HintPath>..\libs\Newtonsoft.Json.dll</HintPath>
|
2021-11-27 22:44:00 +01:00
|
|
|
|
</Reference>
|
2022-06-27 13:02:31 +08:00
|
|
|
|
<Reference Include="ScriptHookVDotNet">
|
2022-07-01 12:22:31 +08:00
|
|
|
|
<HintPath>..\libs\ScriptHookVDotNet.dll</HintPath>
|
2022-06-27 13:02:31 +08:00
|
|
|
|
</Reference>
|
2022-06-11 18:41:10 +08:00
|
|
|
|
<Reference Include="ScriptHookVDotNet3">
|
2022-06-22 14:18:20 +08:00
|
|
|
|
<HintPath>..\libs\ScriptHookVDotNet3.dll</HintPath>
|
2021-07-07 13:36:25 +02:00
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
2022-06-11 18:41:10 +08:00
|
|
|
|
|
|
|
|
|
</Project>
|