forked from microsoft/TSS.MSR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
14 lines (14 loc) · 1.05 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Project>
<PropertyGroup>
<BinRoot>..\bin</BinRoot>
<DefaultDest>$(MSBuildProjectName)\$(Configuration)</DefaultDest>
<PlatformDest>$(MSBuildProjectName)\$(PlatformName)\$(Configuration)</PlatformDest>
<OutputPath Condition=" '$(PlatformName)' == 'AnyCPU' ">$(BinRoot)\$(DefaultDest)</OutputPath>
<OutputPath Condition=" '$(PlatformName)' != 'AnyCPU' ">$(BinRoot)\$(PlatformDest)</OutputPath>
<EnableBaseIntermediateOutputPathMismatchWarning>false</EnableBaseIntermediateOutputPathMismatchWarning>
<BaseIntermediateOutputPath>$(BinRoot)\obj</BaseIntermediateOutputPath>
<IntermediateOutputPath Condition=" '$(PlatformName)' == 'AnyCPU' ">$(BaseIntermediateOutputPath)\$(DefaultDest)</IntermediateOutputPath>
<IntermediateOutputPath Condition=" '$(PlatformName)' != 'AnyCPU' ">$(BaseIntermediateOutputPath)\$(PlatformDest)</IntermediateOutputPath>
<MSBuildProjectExtensionsPath>$(BaseIntermediateOutputPath)\ext\$(MSBuildProjectName)</MSBuildProjectExtensionsPath>
</PropertyGroup>
</Project>