-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cinema.csproj
50 lines (46 loc) · 1.92 KB
/
Cinema.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<MelonLoader>$(MD_DIRECTORY)\MelonLoader\net6</MelonLoader>
<Il2CppAssemblies>$(MD_DIRECTORY)\MelonLoader\Il2CppAssemblies</Il2CppAssemblies>
</PropertyGroup>
<Target Name="CopyDLLs" AfterTargets="Build">
<Copy SourceFiles="$(TargetDir)$(ProjectName).dll" DestinationFolder="$(MD_DIRECTORY)\Mods" />
<Message Text="Copied DLL -> $(MD_DIRECTORY)\Mods\$(ProjectName).dll" Importance="High" />
</Target>
<ItemGroup>
<Reference Include="0Harmony">
<HintPath>$(MelonLoader)\0Harmony.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>$(Il2CppAssemblies)\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="CustomAlbums">
<HintPath>$(MD_DIRECTORY)\Mods\CustomAlbums.dll</HintPath>
</Reference>
<Reference Include="Il2CppInterop.Generator">
<HintPath>$(MelonLoader)\Il2CppInterop.Generator.dll</HintPath>
</Reference>
<Reference Include="Il2CppInterop.Runtime">
<HintPath>$(MelonLoader)\Il2CppInterop.Runtime.dll</HintPath>
</Reference>
<Reference Include="Il2Cppmscorlib">
<HintPath>$(Il2CppAssemblies)\Il2Cppmscorlib.dll</HintPath>
</Reference>
<Reference Include="Il2CppSystem">
<HintPath>$(Il2CppAssemblies)\Il2CppSystem.dll</HintPath>
</Reference>
<Reference Include="MelonLoader">
<HintPath>$(MelonLoader)\MelonLoader.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>$(Il2CppAssemblies)\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VideoModule">
<HintPath>$(Il2CppAssemblies)\UnityEngine.VideoModule.dll</HintPath>
</Reference>
</ItemGroup>
</Project>