-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathcommon.props
29 lines (29 loc) · 1.42 KB
/
common.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)'=='SN.STABLE'">
<GameDir>C:\Program Files (x86)\Steam\steamapps\common\Subnautica</GameDir>
<ManagedDir>$(GameDir)\Subnautica_Data\Managed</ManagedDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='BZ.STABLE'">
<GameDir>C:\Program Files (x86)\Steam\steamapps\common\SubnauticaZero</GameDir>
<ManagedDir>$(GameDir)\SubnauticaZero_Data\Managed</ManagedDir>
</PropertyGroup>
<!-- using Contains so VS won't auto add this configs to all projects -->
<PropertyGroup Condition="$(Configuration.Contains('SN.EXP'))">
<GameDir>C:\Program Files (x86)\Steam\steamapps\common\Subnautica</GameDir>
<ManagedDir>$(GameDir)\Subnautica_Data\Managed</ManagedDir>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('BZ.EXP'))">
<GameDir>C:\Program Files (x86)\Steam\steamapps\common\SubnauticaZero</GameDir>
<ManagedDir>$(GameDir)\SubnauticaZero_Data\Managed</ManagedDir>
</PropertyGroup>
<PropertyGroup>
<Dependencies>$(SolutionDir)Dependencies</Dependencies>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<LangVersion>latest</LangVersion>
<ReferencePath>
$(Dependencies);$(Dependencies)\$(Configuration)\Assemblies;$(Dependencies)\$(Configuration);
</ReferencePath>
</PropertyGroup>
</Project>