-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (23 loc) · 1.18 KB
/
Copy pathDirectory.Build.props
File metadata and controls
24 lines (23 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project>
<PropertyGroup>
<Version>1.0.0</Version>
<Authors>timercrack</Authors>
<Company>OstranautsTranslator</Company>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<Deterministic>true</Deterministic>
<SolutionDir Condition="'$(SolutionDir)' == ''">
$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))
</SolutionDir>
<GameRootPath Condition="'$(GameRootPath)' == ''">
G:\SteamLibrary\steamapps\common\Ostranauts</GameRootPath>
<ManagedPath Condition="'$(ManagedPath)' == '' and '$(GameRootPath)' != ''">
$(GameRootPath)\Ostranauts_Data\Managed</ManagedPath>
<BepInExCorePath Condition="'$(BepInExCorePath)' == '' and '$(GameRootPath)' != ''">
$(GameRootPath)\BepInEx\core</BepInExCorePath>
<CopyToBepInExPath Condition="'$(CopyToBepInExPath)' == '' and '$(GameRootPath)' != ''">
$(GameRootPath)\BepInEx</CopyToBepInExPath>
</PropertyGroup>
<Import Project="Directory.Build.props.user"
Condition="Exists('$(MSBuildThisFileDirectory)Directory.Build.props.user')" />
</Project>