-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrimalMonkey.csproj
More file actions
84 lines (81 loc) · 4.47 KB
/
PrimalMonkey.csproj
File metadata and controls
84 lines (81 loc) · 4.47 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>PrimalMonkey</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<AssemblyName>PrimalMonkey</AssemblyName>
<LangVersion>latest</LangVersion>
<Optimize>False</Optimize>
<DebugType>embedded</DebugType>
</PropertyGroup>
<Import Project="..\btd6.targets" />
<ItemGroup>
<None Remove="PrimalMonkey-Icon.png" />
</ItemGroup>
<ItemGroup>
<Reference Include="0Harmony">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\net6\0Harmony.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="BloonsTD6 Mod Helper">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\Mods\Btd6ModHelper.dll</HintPath>
</Reference>
<Reference Include="Il2CppFacepunch.Steamworks">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\Il2CppFacepunch.Steamworks.dll</HintPath>
</Reference>
<Reference Include="Il2CppInterop.Common">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\net6\Il2CppInterop.Common.dll</HintPath>
</Reference>
<Reference Include="Il2CppInterop.Generator">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\net6\Il2CppInterop.Generator.dll</HintPath>
</Reference>
<Reference Include="Il2CppInterop.Runtime">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\net6\Il2CppInterop.Runtime.dll</HintPath>
</Reference>
<Reference Include="Il2Cppmscorlib">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\Il2Cppmscorlib.dll</HintPath>
</Reference>
<Reference Include="Il2CppNewtonsoft.Json">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\Il2CppNewtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Il2CppNinjaKiwi.Common">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\Il2CppNinjaKiwi.Common.dll</HintPath>
</Reference>
<Reference Include="Il2CppNinjaKiwi.LiNK.Aot">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\Il2CppNinjaKiwi.LiNK.Aot.dll</HintPath>
</Reference>
<Reference Include="Il2CppUniWebView-CSharp">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\Il2CppUniWebView-CSharp.dll</HintPath>
</Reference>
<Reference Include="MelonLoader">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\net6\MelonLoader.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Il2CppAssetBundleManager">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Managed\UnityEngine.Il2CppAssetBundleManager.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Il2CppImageConversionManager">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Managed\UnityEngine.Il2CppImageConversionManager.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ImageConversionModule">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\UnityEngine.ImageConversionModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ParticleSystemModule">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\UnityEngine.ParticleSystemModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule">
<HintPath>..\..\..\..\Desktop\BloonsTD6 - Modded\MelonLoader\Il2CppAssemblies\UnityEngine.UIModule.dll</HintPath>
</Reference>
</ItemGroup>
</Project>