-
Notifications
You must be signed in to change notification settings - Fork 39
/
RAGENativeUI.csproj
66 lines (65 loc) · 3.02 KB
/
RAGENativeUI.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<OutputType>Library</OutputType>
<LangVersion>9.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>x64</Platforms>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<OutputPath>bin/$(Configuration)/</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateDocumentationFile Condition="'$(Configuration)' == 'Release'">true</GenerateDocumentationFile>
<Configurations>Debug;Release;Debug-NoILMerge</Configurations>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
<PackageId>RAGENativeUI</PackageId>
<Version>1.9.3</Version>
<Authors>alexguirre</Authors>
<Company>$(Authors)</Company>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/alexguirre/RAGENativeUI</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/alexguirre/RAGENativeUI/releases</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>Library for RAGEPluginHook that helps you to quickly and easily build Rockstar-like menus and UIs.</Description>
<Copyright>Copyright © 2016-2024 alexguirre</Copyright>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Debug'))">
<DefineConstants>DEBUG</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="ILMerge" Version="3.0.41">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="RagePluginHook" Version="1.86.1" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Remove="Examples\**" />
</ItemGroup>
<PropertyGroup>
<PostBuildEvent Condition="'$(Configuration)' != 'Debug-NoILMerge'">
$(ILMergeConsolePath) /internalize /out:"$(Temp)\RAGENativeUI.dll" RAGENativeUI.dll System.Runtime.CompilerServices.Unsafe.dll
del RAGENativeUI.dll RAGENativeUI.pdb System.Runtime.CompilerServices.Unsafe.dll RagePluginHook.dll
move "$(Temp)\RAGENativeUI.dll" RAGENativeUI.dll
move "$(Temp)\RAGENativeUI.pdb" RAGENativeUI.pdb
</PostBuildEvent>
<PostBuildEvent Condition="'$(Configuration)' == 'Debug-NoILMerge'">
del RagePluginHook.dll
</PostBuildEvent>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-NoILMerge|x64'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
</Project>