2022-06-11 18:41:10 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2021-07-07 13:36:25 +02:00
|
|
|
|
<PropertyGroup>
|
2022-06-11 18:41:10 +08:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
|
|
|
<OutputPath>D:\Games\Grand Theft Auto V\Scripts\RageCoop</OutputPath>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2022-06-12 15:39:32 +08:00
|
|
|
|
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
|
|
|
|
<GenerateDocumentationFile>False</GenerateDocumentationFile>
|
|
|
|
|
<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-12 17:11:14 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<Optimize>True</Optimize>
|
2021-07-07 13:36:25 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2022-06-11 18:41:10 +08:00
|
|
|
|
<PackageReference Include="DotNetZip" Version="1.16.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\RageCoop.Core\RageCoop.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="LemonUI.SHVDN3">
|
2022-06-22 14:18:20 +08:00
|
|
|
|
<HintPath>..\libs\LemonUI.SHVDN3.dll</HintPath>
|
2021-07-07 13:36:25 +02:00
|
|
|
|
</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-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>
|
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
|
|
|
|
</ItemGroup>
|
2022-06-11 18:41:10 +08:00
|
|
|
|
|
|
|
|
|
</Project>
|