diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-04 11:41:55 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-04 11:41:55 -0700 |
commit | 337124bed6a57b40fca11c5c2f5b554f570522a6 (patch) | |
tree | 06e8552b11852309a2275e4bd63ee61320061876 /src/ext/ComPlus/Wix.Build.props | |
parent | eab57c2ddebc3dc8cebc22f5337f50062f415c0d (diff) | |
download | wix-337124bed6a57b40fca11c5c2f5b554f570522a6.tar.gz wix-337124bed6a57b40fca11c5c2f5b554f570522a6.tar.bz2 wix-337124bed6a57b40fca11c5c2f5b554f570522a6.zip |
Move ComPlus.wixext into ext
Diffstat (limited to 'src/ext/ComPlus/Wix.Build.props')
-rw-r--r-- | src/ext/ComPlus/Wix.Build.props | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/ext/ComPlus/Wix.Build.props b/src/ext/ComPlus/Wix.Build.props new file mode 100644 index 00000000..a81c9615 --- /dev/null +++ b/src/ext/ComPlus/Wix.Build.props | |||
@@ -0,0 +1,31 @@ | |||
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 | <DefineConstants>$(DefineConstants);CompanyName=$(Company)</DefineConstants> | ||
7 | <OutputPath_x86>$(OutputPath)x86\</OutputPath_x86> | ||
8 | <OutputPath_x64>$(OutputPath)x64\</OutputPath_x64> | ||
9 | <OutputPath_arm>$(OutputPath)ARM\</OutputPath_arm> | ||
10 | <OutputPath_arm64>$(OutputPath)ARM64\</OutputPath_arm64> | ||
11 | <OutputPath_win32>$(OutputPath)Win32\</OutputPath_win32> | ||
12 | </PropertyGroup> | ||
13 | |||
14 | <ItemGroup> | ||
15 | <BindInputPaths Include="$(OutputPath_x86)"> | ||
16 | <BindName>x86</BindName> | ||
17 | </BindInputPaths> | ||
18 | <BindInputPaths Include="$(OutputPath_x64)"> | ||
19 | <BindName>x64</BindName> | ||
20 | </BindInputPaths> | ||
21 | <BindInputPaths Include="$(OutputPath_arm)"> | ||
22 | <BindName>arm</BindName> | ||
23 | </BindInputPaths> | ||
24 | <BindInputPaths Include="$(OutputPath_arm64)"> | ||
25 | <BindName>arm64</BindName> | ||
26 | </BindInputPaths> | ||
27 | <BindInputPaths Include="$(OutputPath_win32)"> | ||
28 | <BindName>win32</BindName> | ||
29 | </BindInputPaths> | ||
30 | </ItemGroup> | ||
31 | </Project> | ||