diff options
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> | ||