Files
GitHub-Archive/SelfTrackerWithGifs/SelfTracker/Directory.Build.props
T
2026-06-20 10:48:55 -06:00

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>