Skip to content

Commit 68871e0

Browse files
committed
Fix d.b.p/t
1 parent 3e19f3f commit 68871e0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/Installers/Windows/AspNetCoreModule-Setup/ANCMIISExpressV2/AncmIISExpressV2.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the MIT license. See License.txt in the project root for full license information. -->
22
<Project Sdk="Microsoft.WixToolset.Sdk">
3-
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Directory.Build.props))\Directory.Build.props" />
4-
53
<PropertyGroup>
64
<Name>AspNetCoreModuleV2IISExpress</Name>
75
<IsShipping>true</IsShipping>
@@ -15,6 +13,8 @@
1513
<TempPlatform Condition="'$(Platform)' == 'x86'">Win32</TempPlatform>
1614
<TempPlatform Condition="'$(Platform)' == 'arm64'">ARM64</TempPlatform>
1715
<ToolsetInstallerNuspecFile>$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuspec</ToolsetInstallerNuspecFile>
16+
<!-- We import D.B.T ourselves in this file -->
17+
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

src/Installers/Windows/AspNetCoreModule-Setup/ANCMV2/AncmV2.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the MIT license. See License.txt in the project root for full license information. -->
22
<Project Sdk="Microsoft.WixToolset.Sdk">
3-
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Directory.Build.props))\Directory.Build.props" />
4-
53
<PropertyGroup>
64
<Name>AspNetCoreModuleV2</Name>
75
<IsShipping>true</IsShipping>
@@ -12,6 +10,8 @@
1210
<SchemaVersion>2.0</SchemaVersion>
1311
<DisableGuidGeneration>true</DisableGuidGeneration>
1412
<ToolsetInstallerNuspecFile>$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuspec</ToolsetInstallerNuspecFile>
13+
<!-- We import D.B.T ourselves in this file -->
14+
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
1515
</PropertyGroup>
1616

1717
<ItemGroup>

src/Installers/Windows/HostOptions/HostOptions.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the MIT license. See License.txt in the project root for full license information. -->
22
<Project Sdk="Microsoft.WixToolset.Sdk">
3-
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Directory.Build.props))\Directory.Build.props" />
4-
53
<PropertyGroup>
64
<Name>$(HostOptionsName)</Name>
75
<OutputName>$(HostOptionsName)</OutputName>
@@ -12,6 +10,8 @@
1210
<ProjectGuid>20248cd1-c5aa-4f42-ad88-bc260d64deea</ProjectGuid>
1311
<IsShipping>true</IsShipping>
1412
<SchemaVersion>2.0</SchemaVersion>
13+
<!-- We import D.B.T ourselves in this file -->
14+
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
1515

1616
<!-- Namespace used to generate stable UUID3 GUIDs for MSI ProductCode, etc. DO NOT CHANGE THIS. -->
1717
<NamespaceGuid>$(HostingBundleNamespaceGuid)</NamespaceGuid>

src/Installers/Windows/WindowsHostingBundle/WindowsHostingBundle.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the MIT license. See License.txt in the project root for full license information. -->
22
<Project Sdk="Microsoft.WixToolset.Sdk">
3-
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Directory.Build.props))\Directory.Build.props" />
4-
53
<PropertyGroup>
64
<Name>WindowsServerHostingBundle</Name>
75
<OutputName>WindowsServerHostingBundle</OutputName>
@@ -10,6 +8,8 @@
108
<OutputType>Bundle</OutputType>
119
<Platform>x86</Platform>
1210
<SchemaVersion>2.0</SchemaVersion>
11+
<!-- We import D.B.T ourselves in this file -->
12+
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
1313

1414
<!-- Namespace used to generate stable UUID3 GUIDs for MSI ProductCode, etc. DO NOT CHANGE THIS. -->
1515
<NamespaceGuid>$(HostingBundleNamespaceGuid)</NamespaceGuid>

0 commit comments

Comments
 (0)