forked from MrPurple6411/My-Subnautica-Mods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigurations.targets
41 lines (40 loc) · 1.76 KB
/
Configurations.targets
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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)' == 'BZ'">
<DefineConstants>BZ;BELOWZERO</DefineConstants>
<GameDir>$(CommonDir)SubnauticaZeroBranches\Stable</GameDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'BZ.EXP'">
<DefineConstants>BZ;BELOWZERO_EXP</DefineConstants>
<GameDir>$(CommonDir)SubnauticaZeroBranches\Exp</GameDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'SN1'">
<DefineConstants>SN1;SUBNAUTICA_STABLE</DefineConstants>
<GameDir>$(CommonDir)SubnauticaBranches\Stable</GameDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'SN1.EXP'">
<DefineConstants>SN1;SUBNAUTICA_EXP</DefineConstants>
<GameDir>$(CommonDir)SubnauticaBranches\Exp</GameDir>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('BZ'))">
<GameName>BelowZero</GameName>
<DataFolder>SubnauticaZero_Data</DataFolder>
<SMLHelperFolder>SMLHelper_BZ</SMLHelperFolder>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('SN1'))">
<GameName>Subnautica</GameName>
<DataFolder>Subnautica_Data</DataFolder>
<SMLHelperFolder>Modding Helper</SMLHelperFolder>
</PropertyGroup>
<PropertyGroup>
<OutputPath>$(SolutionDir)Qmods\$(Configuration)\$(AssemblyName)</OutputPath>
<Dependencies>$(SolutionDir)Dependencies\$(Configuration)</Dependencies>
<ManagedDir>$(GameDir)/$(DataFolder)/Managed</ManagedDir>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<LangVersion>latest</LangVersion>
<ReferencePath>
$(Dependencies);$(SolutionDir)Libs\$(Configuration)
</ReferencePath>
</PropertyGroup>
</Project>