forked from PJO2/tftpd64
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
15 lines (12 loc) · 934 Bytes
/
Directory.Build.props
File metadata and controls
15 lines (12 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Store intermediate outputs in a shared top-level obj/ directory -->
<PropertyGroup Condition=" '$(IntDir)' == '' AND '$(IntermediateOutputPath)' == '' ">
<IntDir Condition=" '$(Platform)' == 'Win32' ">$(SolutionDir)obj\x86\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<IntDir Condition=" '$(Platform)' != 'Win32' ">$(SolutionDir)obj\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
</PropertyGroup>
<!-- Store build outputs in a shared top-level bin/ directory -->
<PropertyGroup Condition=" '$(OutDir)' == '' AND '$(SolutionDir)' != '' ">
<OutDir Condition=" '$(Platform)' == 'Win32' ">$(SolutionDir)bin\x86\$(Configuration)\$(MSBuildProjectName)\</OutDir>
<OutDir Condition=" '$(Platform)' != 'Win32' ">$(SolutionDir)bin\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</OutDir>
</PropertyGroup>
</Project>