-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
19 lines (16 loc) · 783 Bytes
/
Directory.Build.props
File metadata and controls
19 lines (16 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<PropertyGroup>
<!-- Repo root -->
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<!-- Shared roots -->
<ReferenceAssembliesRoot>$(RepoRoot)ReferenceAssemblies\</ReferenceAssembliesRoot>
<BuildOutputRoot>$(RepoRoot)Build\</BuildOutputRoot>
<!-- Shared defaults -->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<Platform Condition="'$(Platform)' == ''">x86</Platform>
<!-- Optional: centralize output folders -->
<BaseOutputPath Condition="'$(BaseOutputPath)' == ''">$(BuildOutputRoot)</BaseOutputPath>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)' == ''">obj\</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>