16 lines
610 B
XML
16 lines
610 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Project>
|
|
<PropertyGroup>
|
|
<GamePath>C:\Program Files (x86)\Steam\steamapps\common\Gorilla Tag</GamePath>
|
|
<GameAssemblyPath>$(GamePath)\Gorilla Tag_Data\Managed</GameAssemblyPath>
|
|
<BepInExAssemblyPath>$(GamePath)\BepInEx\core</BepInExAssemblyPath>
|
|
<PluginsPath>$(GamePath)\BepInEx\plugins</PluginsPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(CI)'=='TRUE'">
|
|
<GameAssemblyPath>.\Libs</GameAssemblyPath>
|
|
<BepInExAssemblyPath>.\Libs</BepInExAssemblyPath>
|
|
<PluginsPath>.\Libs</PluginsPath>
|
|
<WarningLevel>0</WarningLevel>
|
|
</PropertyGroup>
|
|
</Project>
|