-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathMenuAPI.csproj
More file actions
57 lines (47 loc) · 2.78 KB
/
MenuAPI.csproj
File metadata and controls
57 lines (47 loc) · 2.78 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net452</TargetFramework>
<DebugType>embedded</DebugType>
<TargetName>MenuAPI</TargetName>
<Configurations>Release RedM;Release FiveM;Debug RedM;Debug FiveM</Configurations>
<AssemblyTitle Condition="'$(Configuration)' == 'Debug FiveM' Or '$(Configuration)' == 'Release FiveM'">MenuAPI FiveM</AssemblyTitle>
<AssemblyTitle Condition="'$(Configuration)' == 'Debug RedM' Or '$(Configuration)' == 'Release RedM'">MenuAPI RedM</AssemblyTitle>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Tom Grobbe</Authors>
<Description Condition="'$(Configuration)' == 'Debug FiveM' Or '$(Configuration)' == 'Release FiveM'">An advanced Menu API for FiveM C# resources.</Description>
<Description Condition="'$(Configuration)' == 'Debug RedM' Or '$(Configuration)' == 'Release RedM'">An advanced Menu API for RedM C# resources.</Description>
<Copyright>Copyright Tom Grobbe 2018-2020</Copyright>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageProjectUrl>https://github.com/tomgrobbe/menuapi/</PackageProjectUrl>
<RepositoryUrl>https://github.com/tomgrobbe/menuapi/</RepositoryUrl>
<PackageTags Condition="'$(Configuration)' == 'Debug FiveM' Or '$(Configuration)' == 'Release FiveM'">FiveM MenuAPI</PackageTags>
<PackageTags Condition="'$(Configuration)' == 'Debug RedM' Or '$(Configuration)' == 'Release RedM'">RedM MenuAPI</PackageTags>
<PackageLicenseFile>license.txt</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release FiveM'">
<DefineConstants>FIVEM</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug FiveM'">
<DefineConstants>FIVEM;DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release RedM'">
<DefineConstants>REDM</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug RedM'">
<DefineConstants>REDM;DEBUG</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\shared\RedM\Controls.cs" Link="Controls.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<PackageReference Include="CitizenFX.Core.Client" Version="1.0.3394" Condition="'$(Configuration)' == 'Release FiveM' Or '$(Configuration)' == 'Debug FiveM'">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<!-- currently hardcoded path as no nuget package for RedM exists yet -->
<Reference Include="CitizenFX.Core.Client" Condition="'$(Configuration)' == 'Release RedM' Or '$(Configuration)' == 'Debug RedM'">
<HintPath>..\dependencies\RedM\CitizenFX.Core.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
</Project>