blob: 40fe69a01baecb7eb14de1ebfdcb475d2bab2405 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Project>
<PropertyGroup>
<BaseOutputPath
>$(MSBuildThisFileDirectory).Temp\$(MSBuildProjectName)\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
<BaseIntermediateOutputPath
>$(MSBuildThisFileDirectory).Temp\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<IntermediateOutputPath
>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
<BaseOutputPath
Condition="!HasTrailingSlash('$(BaseOutputPath)')"
>$(BaseOutputPath)\</BaseOutputPath>
<BaseIntermediateOutputPath
Condition="!HasTrailingSlash('$(BaseIntermediateOutputPath)')"
>$(BaseIntermediateOutputPath)\</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>
|