-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
19 lines (19 loc) · 938 Bytes
/
Directory.Build.props
File metadata and controls
19 lines (19 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--
Copy this file to Directory.Build.props and adjust paths for your system.
The correct OS path is automatically selected via MSBuild conditions.
-->
<Project>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<!-- Path to the Windows game root directory (the one containing the BepInEx subdirectory) -->
<GameDir>D:\SteamLibrary\steamapps\common\Kingdom Two Crowns\</GameDir>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<!-- Path to the Linux/macOS game root directory (the one containing the BepInEx subdirectory) -->
<GameDir>/mnt/d/SteamLibrary/steamapps/common/Kingdom Two Crowns/</GameDir>
</PropertyGroup>
<PropertyGroup>
<BepInExConfigPath>$(GameDir)BepInEx\config\</BepInExConfigPath>
<BepInExPluginsPath>$(GameDir)BepInEx\plugins\</BepInExPluginsPath>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
</PropertyGroup>
</Project>