forked from KaBooMa/S1API
-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathgithub.build.props
More file actions
36 lines (26 loc) · 1.94 KB
/
github.build.props
File metadata and controls
36 lines (26 loc) · 1.94 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
<!-- This file should be placed inside your local directory in order to build. -->
<!-- Name the file `local.build.props`. -->
<!-- Adjust the properties below to fit your local configuration. -->
<Project>
<PropertyGroup>
<!-- General Configuration -->
<!-- Whether or not you want the build steps to copy over the newly built versions. -->
<AutomateLocalDeployment>false</AutomateLocalDeployment>
<!-- Used when building Il2Cpp. Typically located at `steamapps/Schedule I/MelonLoader/net6` -->
<MelonLoaderAssembliesPath>..\ScheduleOneAssemblies\MelonLoader</MelonLoaderAssembliesPath>
<BepInExAssembliesPath>..\ScheduleOneAssemblies\BepInEx</BepInExAssembliesPath>
<!-- Mono Configuration -->
<!-- Used when building Mono. Typically located at `steamapps/Schedule I/MelonLoader/net35` -->
<MelonLoaderMonoAssembliesPath>..\ScheduleOneAssemblies\MelonLoaderMono</MelonLoaderMonoAssembliesPath>
<!-- Used only when building against Mono. Typically located at `steamapps/Schedule I` -->
<LocalMonoDeploymentPath>null</LocalMonoDeploymentPath>
<!-- Used only when building against Mono. Typically located at `steamapps/Schedule I/Schedule I_Data/Managed` -->
<MonoAssembliesPath>..\ScheduleOneAssemblies\Managed</MonoAssembliesPath>
<!-- Il2Cpp Configuration -->
<!-- Used only when building against Il2Cpp. Typically located at `steamapps/Schedule I` -->
<LocalIl2CppDeploymentPath>null</LocalIl2CppDeploymentPath>
<!-- Used only when building against Il2Cpp. Typically located at `steamapps/Schedule I/MelonLoader/Il2CppAssemblies` -->
<Il2CppAssembliesPath Condition="'$(Configuration)' == 'Il2CppMelon'">..\ScheduleOneAssemblies\Il2CppAssemblies</Il2CppAssembliesPath>
<Il2CppAssembliesPath Condition="'$(Configuration)' == 'Il2CppBepInEx'">..\ScheduleOneAssemblies\Il2CppAssemblies</Il2CppAssembliesPath>
</PropertyGroup>
</Project>