aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/Directory.Build.props
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Bal/Directory.Build.props')
-rw-r--r--src/ext/Bal/Directory.Build.props30
1 files changed, 9 insertions, 21 deletions
diff --git a/src/ext/Bal/Directory.Build.props b/src/ext/Bal/Directory.Build.props
index f83cc154..ee59ca34 100644
--- a/src/ext/Bal/Directory.Build.props
+++ b/src/ext/Bal/Directory.Build.props
@@ -1,29 +1,17 @@
1<?xml version="1.0" encoding="utf-8"?> 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. --> 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<!-- 3
4 Do NOT modify this file. Update the canonical version in Home\repo-template\src\Directory.Build.props
5 then update all of the repos.
6-->
7<Project> 4<Project>
8 <PropertyGroup> 5 <PropertyGroup>
9 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 6 <SegmentName>Bal.wixext</SegmentName>
10 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink> 7 </PropertyGroup>
11 <MSBuildWarningsAsMessages>MSB3246</MSBuildWarningsAsMessages>
12 8
13 <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> 9 <Import Project="..\..\Directory.Build.props" />
14 <BaseOutputPath>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</BaseOutputPath>
15 <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(ProjectName)\</BaseIntermediateOutputPath>
16 <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
17 10
18 <Authors>WiX Toolset Team</Authors> 11 <PropertyGroup Condition="$(ProjectName.StartsWith('Example.')) And '$(MSBuildProjectExtension)'=='.csproj' ">
19 <Company>WiX Toolset</Company> 12 <OutputPath>$(OutputPath)examples\$(ProjectName)\</OutputPath>
20 <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> 13 </PropertyGroup>
21 <PackageLicenseExpression>MS-RL</PackageLicenseExpression> 14 <PropertyGroup Condition="$(ProjectName.StartsWith('Example.')) And '$(MSBuildProjectExtension)'=='.vcxproj' ">
22 <Product>WiX Toolset</Product> 15 <OutDir>$(OutDir)examples\$(ProjectName)\</OutDir>
23 </PropertyGroup> 16 </PropertyGroup>
24
25 <Import Project="CSharp.Build.props" Condition=" '$(MSBuildProjectExtension)'=='.csproj' and Exists('CSharp.Build.props') " />
26 <Import Project="Cpp.Build.props" Condition=" Exists('Cpp.Build.props') And '$(MSBuildProjectExtension)'=='.vcxproj' " />
27 <Import Project="Wix.Build.props" Condition=" Exists('Wix.Build.props') And '$(MSBuildProjectExtension)'=='.wixproj' " />
28 <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " />
29</Project> 17</Project>