forked from KyleTheScientist/Bark
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDirectory.Build.props
24 lines (21 loc) · 962 Bytes
/
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
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<PropertyGroup>
<OculusPath>C:\Program Files\Steam\steamapps\common\Gorilla Tag</OculusPath>
<OculusPluginsPath>$(OculusPath)\BepInEx\plugins</OculusPluginsPath>
<SteamPath>C:\Program Files\Steam\steamapps\common\Gorilla Tag</SteamPath>
<SteamPluginsPath>$(SteamPath)\BepInEx\plugins</SteamPluginsPath>
<GameAssemblyPath>$(SteamPath)\Gorilla Tag_Data\Managed</GameAssemblyPath>
<BepInExAssemblyPath>$(SteamPath)\BepInEx\core</BepInExAssemblyPath>
</PropertyGroup>
<PropertyGroup Condition="'$(CI)'=='TRUE'">
<GameAssemblyPath>.\Libs</GameAssemblyPath>
<BepInExAssemblyPath>.\Libs</BepInExAssemblyPath>
<OculusPluginsPath>.\Libs</OculusPluginsPath>
<SteamPluginsPath>.\Libs</SteamPluginsPath>
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);**\WithCI\**</DefaultItemExcludes>
</PropertyGroup>
</Project>