-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPaths.targets
More file actions
30 lines (25 loc) · 827 Bytes
/
Paths.targets
File metadata and controls
30 lines (25 loc) · 827 Bytes
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
<Project>
<!--
Installations | CONFIGURE YOUR INSTALLATION PATHS HERE
Expected to have Unturned and U3DS installed with DevkitServer in the modules folder for each one.
Configure the paths to your installations below.
-->
<PropertyGroup>
<ServerPath>C:/SteamCMD/steamapps/common/U3DS</ServerPath>
<ClientPath>C:/Program Files (x86)/Steam/steamapps/common/Unturned</ClientPath>
</PropertyGroup>
<Import Project="./Defines.targets"/>
<!-- Platform-Specific Installation Path -->
<Choose>
<When Condition="'$(IsServer)' == 'True'">
<PropertyGroup>
<SharedPath>$(ServerPath)</SharedPath>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<SharedPath>$(ClientPath)</SharedPath>
</PropertyGroup>
</Otherwise>
</Choose>
</Project>