diff options
author | Rob Mensching <rob@firegiant.com> | 2022-10-14 22:58:30 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-10-15 11:45:54 -0700 |
commit | e550b63845a90e1a9452060b50a00ca5d9ee8c67 (patch) | |
tree | e1ca7fef941d704c682c29eece292adc350a6f37 /src/ext | |
parent | 9d631dd64891936738077e4b2e1153c3d84b5f86 (diff) | |
download | wix-e550b63845a90e1a9452060b50a00ca5d9ee8c67.tar.gz wix-e550b63845a90e1a9452060b50a00ca5d9ee8c67.tar.bz2 wix-e550b63845a90e1a9452060b50a00ca5d9ee8c67.zip |
Name the bind path item group "BindPath" in MSBuild
Closes 6959
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/Bal/test/examples/Directory.wixproj.targets | 2 | ||||
-rw-r--r-- | src/ext/Bal/test/examples/EarliestCoreBundleSCD/EarliestCoreBundleSCD.wixproj | 2 | ||||
-rw-r--r-- | src/ext/Bal/wixlib/bal.wixproj | 12 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/ext/Bal/test/examples/Directory.wixproj.targets b/src/ext/Bal/test/examples/Directory.wixproj.targets index 7e6fe9f2..f126c632 100644 --- a/src/ext/Bal/test/examples/Directory.wixproj.targets +++ b/src/ext/Bal/test/examples/Directory.wixproj.targets | |||
@@ -2,7 +2,7 @@ | |||
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 | <Project> | 3 | <Project> |
4 | <ItemGroup> | 4 | <ItemGroup> |
5 | <BindInputPaths Include="$(OutputPath)" /> | 5 | <BindPath Include="$(OutputPath)" /> |
6 | <WixExtension Include="$(OutputPath)..\netstandard2.0\WixToolset.Bal.wixext.dll" /> | 6 | <WixExtension Include="$(OutputPath)..\netstandard2.0\WixToolset.Bal.wixext.dll" /> |
7 | </ItemGroup> | 7 | </ItemGroup> |
8 | </Project> | 8 | </Project> |
diff --git a/src/ext/Bal/test/examples/EarliestCoreBundleSCD/EarliestCoreBundleSCD.wixproj b/src/ext/Bal/test/examples/EarliestCoreBundleSCD/EarliestCoreBundleSCD.wixproj index 3f81710e..1179bea7 100644 --- a/src/ext/Bal/test/examples/EarliestCoreBundleSCD/EarliestCoreBundleSCD.wixproj +++ b/src/ext/Bal/test/examples/EarliestCoreBundleSCD/EarliestCoreBundleSCD.wixproj | |||
@@ -1,7 +1,7 @@ | |||
1 | <!-- 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. --> | 1 | <!-- 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 | <Project Sdk="WixToolset.Sdk"> | 2 | <Project Sdk="WixToolset.Sdk"> |
3 | <ItemGroup> | 3 | <ItemGroup> |
4 | <BindInputPaths Include="$(OutputPath)publish\Example.EarliestCoreMBA\scd" /> | 4 | <BindPath Include="$(OutputPath)publish\Example.EarliestCoreMBA\scd" /> |
5 | <HarvestDirectory Include="$(OutputPath)publish\Example.EarliestCoreMBA\scd"> | 5 | <HarvestDirectory Include="$(OutputPath)publish\Example.EarliestCoreMBA\scd"> |
6 | <DirectoryRefId>publish.Example.EarliestCoreMBA.scd</DirectoryRefId> | 6 | <DirectoryRefId>publish.Example.EarliestCoreMBA.scd</DirectoryRefId> |
7 | <Transforms>ba.xslt</Transforms> | 7 | <Transforms>ba.xslt</Transforms> |
diff --git a/src/ext/Bal/wixlib/bal.wixproj b/src/ext/Bal/wixlib/bal.wixproj index b350dbce..64552f1a 100644 --- a/src/ext/Bal/wixlib/bal.wixproj +++ b/src/ext/Bal/wixlib/bal.wixproj | |||
@@ -7,12 +7,12 @@ | |||
7 | </PropertyGroup> | 7 | </PropertyGroup> |
8 | 8 | ||
9 | <ItemGroup> | 9 | <ItemGroup> |
10 | <BindInputPaths Include="..\wixstdba\Resources\" /> | 10 | <BindPath Include="..\wixstdba\Resources\" /> |
11 | <BindInputPaths Include="$(OutputPath)net6.0" /> | 11 | <BindPath Include="$(OutputPath)net6.0" /> |
12 | <BindInputPaths Include="$(OutputPath)net20" /> | 12 | <BindPath Include="$(OutputPath)net20" /> |
13 | <BindInputPaths Include="$(OutputPath)x86" BindName="x86" /> | 13 | <BindPath Include="$(OutputPath)x86" BindName="x86" /> |
14 | <BindInputPaths Include="$(OutputPath)x64" BindName="x64" /> | 14 | <BindPath Include="$(OutputPath)x64" BindName="x64" /> |
15 | <BindInputPaths Include="$(OutputPath)arm64" BindName="arm64" /> | 15 | <BindPath Include="$(OutputPath)arm64" BindName="arm64" /> |
16 | </ItemGroup> | 16 | </ItemGroup> |
17 | 17 | ||
18 | <ItemGroup> | 18 | <ItemGroup> |