-
Notifications
You must be signed in to change notification settings - Fork 7
/
Directory.Build.props
33 lines (29 loc) · 1.43 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BepInExDir>C:\Users\rai\AppData\Roaming\raicuparta\rai-pal\data\mod-loaders\bepinex</BepInExDir>
</PropertyGroup>
<!-- Il2Cpp -->
<PropertyGroup Condition=" '$(Configuration)' == 'legacy-il2cpp' Or '$(Configuration)' == 'modern-il2cpp' ">
<UnityBackend>il2cpp</UnityBackend>
<UnityBackendFolderName>Il2Cpp</UnityBackendFolderName>
<DefineConstants>$(DefineConstants);CPP</DefineConstants>
</PropertyGroup>
<!-- Mono -->
<PropertyGroup Condition=" '$(Configuration)' == 'legacy-mono' Or '$(Configuration)' == 'modern-mono' ">
<UnityBackend>mono</UnityBackend>
<UnityBackendFolderName>Mono</UnityBackendFolderName>
<DefineConstants>$(DefineConstants);MONO</DefineConstants>
</PropertyGroup>
<!-- Legacy (Unity 2019 or earlier) -->
<PropertyGroup Condition=" '$(Configuration)' == 'legacy-mono' Or '$(Configuration)' == 'legacy-il2cpp' ">
<UnityGeneration>legacy</UnityGeneration>
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
</PropertyGroup>
<!-- Modern (Unity 2020 or later) -->
<PropertyGroup Condition=" '$(Configuration)' == 'modern-mono' Or '$(Configuration)' == 'modern-il2cpp' ">
<UnityGeneration>modern</UnityGeneration>
<DefineConstants>$(DefineConstants);MODERN</DefineConstants>
</PropertyGroup>
</Project>