-
Notifications
You must be signed in to change notification settings - Fork 0
/
BepInNodeLoaderIl2Cpp.csproj
46 lines (43 loc) · 1.84 KB
/
BepInNodeLoaderIl2Cpp.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>BepInNodeLoaderIl2Cpp</AssemblyName>
<Description>BepInNodeLoaderIl2Cpp</Description>
<Version>0.1.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RestoreAdditionalProjectSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json;
https://nuget.samboy.dev/v3/index.json
</RestoreAdditionalProjectSources>
<RootNamespace>BepInNodeLoaderIl2Cpp</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
</ItemGroup>
<ItemGroup>
<Reference Include="Il2CppInterop.Runtime">
<HintPath>D:\Games\POOLS\BepInEx\core\Il2CppInterop.Runtime.dll</HintPath>
</Reference>
<Reference Include="Il2Cppmscorlib">
<HintPath>D:\Games\POOLS\BepInEx\interop\Il2Cppmscorlib.dll</HintPath>
</Reference>
<Reference Include="Il2CppSystem">
<HintPath>D:\Games\POOLS\BepInEx\interop\Il2CppSystem.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>D:\Games\POOLS\BepInEx\unity-libs\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>D:\Games\POOLS\BepInEx\interop\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputLegacyModule">
<HintPath>D:\Games\POOLS\BepInEx\unity-libs\UnityEngine.InputLegacyModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>D:\Games\POOLS\BepInEx\unity-libs\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
</ItemGroup>
</Project>