forked from lempamo/ChaosIV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChaosIV.csproj
39 lines (32 loc) · 1.59 KB
/
ChaosIV.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>lempamo, shtrih</Authors>
<PackageProjectUrl>https://github.com/lempamo/ChaosIV</PackageProjectUrl>
<RepositoryUrl>https://github.com/lempamo/ChaosIV</RepositoryUrl>
<Description>Chaos mod for GTA IV [prerelease build]</Description>
<Platforms>AnyCPU;x86</Platforms>
<Version>2.2.1</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath></OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<OutputPath />
<!--<RestoreProjectStyle>PackageReference</RestoreProjectStyle>-->
<!--<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>-->
<!--<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>-->
</PropertyGroup>
<ItemGroup>
<Reference Include="ScriptHookDotNet">
<HintPath>..\bin\ScriptHookDotNet.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<!-- <Exec Command="copy "$(TargetPath)" "$(TargetPath)\..\..\..\..\..\..\ChaosIV.net.dll"
cd "$(ProjectDir)\..\..\..\"
LaunchGTAIV.exe -availablevidmem 20.0" />-->
<Exec Command="copy "$(TargetPath)" "$(TargetPath)\..\..\..\..\..\..\..\ChaosIV.net.dll"" />
</Target>
</Project>