diff options
Diffstat (limited to 'src/Directory.Build.props')
-rw-r--r-- | src/Directory.Build.props | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Directory.Build.props b/src/Directory.Build.props new file mode 100644 index 00000000..7cd6767f --- /dev/null +++ b/src/Directory.Build.props | |||
@@ -0,0 +1,22 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | <Project> | ||
5 | <PropertyGroup> | ||
6 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
7 | <BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\build\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | ||
8 | <BaseOutputPath>$(MSBuildThisFileDirectory)..\build\$(Configuration)\</BaseOutputPath> | ||
9 | <OutputPath>$(BaseOutputPath)</OutputPath> | ||
10 | |||
11 | <Authors>WiX Toolset Team</Authors> | ||
12 | <Company>WiX Toolset</Company> | ||
13 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> | ||
14 | <Product>WiX Toolset</Product> | ||
15 | </PropertyGroup> | ||
16 | |||
17 | <PropertyGroup> | ||
18 | <WixToolsetRootFolder>$(MSBuildThisFileDirectory)..\..\</WixToolsetRootFolder> | ||
19 | </PropertyGroup> | ||
20 | |||
21 | <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " /> | ||
22 | </Project> | ||