-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
19 lines (16 loc) · 978 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<BaseBuildFolder>$(MSBuildThisFileDirectory)\build\</BaseBuildFolder>
<BuildFolder>$(BaseBuildFolder)$(TargetFramework)\</BuildFolder>
<OutputPath>$(BuildFolder)$(MSBuildProjectName)\$(Configuration)\bin\</OutputPath>
<OutDirLib>$(BuildFolder)lib\$(Configuration)\</OutDirLib>
<IntermediateOutputPath>$(BuildFolder)$(MSBuildProjectName)\$(Configuration)\obj\</IntermediateOutputPath>
<BaseOutputPath>$(OutputPath)..\</BaseOutputPath>
<BaseIntermediateOutputPath>$(BaseBuildFolder)$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<OutDir>$(OutputPath)</OutDir>
<IntDir>$(IntermediateOutputPath)</IntDir>
<OutputDirectory>$(OutputPath)</OutputDirectory>
<IntermediateDirectory>$(IntermediateOutputPath)</IntermediateDirectory>
</PropertyGroup>
</Project>