-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
56 lines (48 loc) · 2.1 KB
/
Copy pathDirectory.Build.props
File metadata and controls
56 lines (48 loc) · 2.1 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project>
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<ModVersion>1.0.1</ModVersion>
<ModAuthor>nolswit</ModAuthor>
<ModId>SessionRecap</ModId>
<ModName>Session Recap</ModName>
<LangVersion>9.0</LangVersion>
<Configurations>Debug_1_40;Release_1_40;Debug_1_44;Release_1_44</Configurations>
<DebugType>portable</DebugType>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AssemblyVersion>$(ModVersion).0</AssemblyVersion>
<FileVersion>$(ModVersion).0</FileVersion>
<Version>$(ModVersion)</Version>
<Company>$(ModAuthor)</Company>
<NoWarn>$(NoWarn);MSB3277;CS1701;CS1702</NoWarn>
</PropertyGroup>
<Import Project="$(RepoRoot)BeatSaberDir.user.props" Condition="Exists('$(RepoRoot)BeatSaberDir.user.props')" />
<PropertyGroup Condition="$(Configuration.EndsWith('_1_40'))">
<CompatGroup>1_40</CompatGroup>
<AdapterGroup>G1_40</AdapterGroup>
<BSGameVersion>1.40.8</BSGameVersion>
<BSCompatSymbol>BS_1_40</BSCompatSymbol>
<BeatSaberDir>$(BeatSaberDir_1_40)</BeatSaberDir>
</PropertyGroup>
<!-- 1.44.1 exposes the same level/pause/beatmap API as 1.40.x, so both share the G1_40 adapter. -->
<PropertyGroup Condition="$(Configuration.EndsWith('_1_44'))">
<CompatGroup>1_44</CompatGroup>
<AdapterGroup>G1_40</AdapterGroup>
<BSGameVersion>1.44.1</BSGameVersion>
<BSCompatSymbol>BS_1_44</BSCompatSymbol>
<BeatSaberDir>$(BeatSaberDir_1_44)</BeatSaberDir>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Debug'))">
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Release'))">
<DebugSymbols>true</DebugSymbols>
<Optimize>true</Optimize>
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);$(BSCompatSymbol)</DefineConstants>
<BaseOutputPath>$(RepoRoot)build\$(MSBuildProjectName)\</BaseOutputPath>
</PropertyGroup>
</Project>