-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (18 loc) · 904 Bytes
/
Directory.Build.props
File metadata and controls
25 lines (18 loc) · 904 Bytes
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
<Project>
<!-- Mainly meant to be used when viewing this project as a submodule of the LiveSplit repository. -->
<!-- Imports `Directory.Build.props` from the above directory, if it exists. -->
<!-- If it does not, the properties `LsSrcPath`, `LsLibPath`, and `ComponentsPath` must be provided via the command line. -->
<!-- Example: `dotnet build -p:LsSrcPath=path/to/LiveSplit/src` -->
<Import Project="$(MSBuildThisFileDirectory)/../Directory.Build.props"
Condition="Exists('$(MSBuildThisFileDirectory)/../Directory.Build.props')" />
<PropertyGroup>
<RootPath>$(MSBuildThisFileDirectory)</RootPath>
<SrcPath>$(RootPath)/src</SrcPath>
<TestPath>$(RootPath)/test</TestPath>
</PropertyGroup>
<PropertyGroup>
<LangVersion>14</LangVersion>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Nullable>disable</Nullable>
</PropertyGroup>
</Project>