aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/Directory.Build.props
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-05-03 17:00:34 -0700
committerRob Mensching <rob@firegiant.com>2021-05-03 17:00:34 -0700
commit592c6e2f7407c291a7bf9ef4c8ce50da9798cc68 (patch)
treeaf42d0518b91cdc31590884006a2624bf7cdf4ed /src/ext/UI/Directory.Build.props
parent0e7fa93306858a9adde5b64ede920492632ba9e6 (diff)
downloadwix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.tar.gz
wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.tar.bz2
wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.zip
Move UI.wixext into ext
Diffstat (limited to 'src/ext/UI/Directory.Build.props')
-rw-r--r--src/ext/UI/Directory.Build.props27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ext/UI/Directory.Build.props b/src/ext/UI/Directory.Build.props
new file mode 100644
index 00000000..b3c6287c
--- /dev/null
+++ b/src/ext/UI/Directory.Build.props
@@ -0,0 +1,27 @@
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 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>
8 <PropertyGroup>
9 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
10 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink>
11 <MSBuildWarningsAsMessages>MSB3246</MSBuildWarningsAsMessages>
12
13 <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName>
14 <BaseOutputPath>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</BaseOutputPath>
15 <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(ProjectName)\</BaseIntermediateOutputPath>
16 <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
17
18 <Authors>WiX Toolset Team</Authors>
19 <Company>WiX Toolset</Company>
20 <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright>
21 <PackageLicenseExpression>MS-RL</PackageLicenseExpression>
22 <Product>WiX Toolset</Product>
23 </PropertyGroup>
24
25 <Import Project="Directory$(MSBuildProjectExtension).props" Condition=" Exists('Directory$(MSBuildProjectExtension).props') " />
26 <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " />
27</Project>