-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrinityMelonLoader.csproj
More file actions
52 lines (47 loc) · 2.18 KB
/
TrinityMelonLoader.csproj
File metadata and controls
52 lines (47 loc) · 2.18 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<AssemblyName>TrinityMenu</AssemblyName>
<RootNamespace>Trinity</RootNamespace>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\MelonLoader\</OutputPath>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<!-- MelonLoader Reference via NuGet -->
<PackageReference Include="LavaGang.MelonLoader" Version="0.6.1" />
<!-- Unity Engine References -->
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\..\..\..\Games\Infinite-Lives-SteamRIP.com\Infinite Lives\Infinite Lives_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="UnityEngine.InputLegacyModule">
<HintPath>..\..\..\..\Games\Infinite-Lives-SteamRIP.com\Infinite Lives\Infinite Lives_Data\Managed\UnityEngine.InputLegacyModule.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="UnityEngine.IMGUIModule">
<HintPath>..\..\..\..\Games\Infinite-Lives-SteamRIP.com\Infinite Lives\Infinite Lives_Data\Managed\UnityEngine.IMGUIModule.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule">
<HintPath>..\..\..\..\Games\Infinite-Lives-SteamRIP.com\Infinite Lives\Infinite Lives_Data\Managed\UnityEngine.TextRenderingModule.dll</HintPath>
<Private>false</Private>
</Reference>
<!-- Game Assembly Reference -->
<Reference Include="Assembly-CSharp">
<HintPath>..\..\..\..\Games\Infinite-Lives-SteamRIP.com\Infinite Lives\Infinite Lives_Data\Managed\Assembly-CSharp.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="TrinityMod.cs" />
<Compile Include="TrinityMenu.cs" />
</ItemGroup>
</Project>