Skip to content

Commit 0460bc3

Browse files
jkotalikJohn Luo
authored and
John Luo
committed
Always include ANCM in build output (#11198)
1 parent 9517e37 commit 0460bc3

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Directory.Build.targets

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
<!-- Always include framework metapackages in patch updates. -->
1212
<IsPackageInThisPatch Condition="'$(IsFrameworkMetapackage)' == 'true' OR '$(IsSharedSourcePackage)' == 'true' ">true</IsPackageInThisPatch>
1313
<IsPackageInThisPatch Condition="'$(IsPackageInThisPatch)' == ''">$(PackagesInPatch.Contains(' $(PackageId);'))</IsPackageInThisPatch>
14+
15+
<!-- ANCM always builds every patch as we don't push temporary nuget packages anymore and that ANCM itself is a global singleton -->
16+
<IsPackageInThisPatch Condition="'$(IsANCMPackage)' == 'true'">true</IsPackageInThisPatch>
1417
</PropertyGroup>
1518

1619
<PropertyGroup Condition=" '$(IsPackable)' != 'false' AND '$(IsServicingBuild)' == 'true' ">

src/Servers/IIS/AspNetCoreModuleV1/Microsoft.AspNetCore.AspNetCoreModule/Microsoft.AspNetCore.AspNetCoreModule.pkgproj

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<NoPackageAnalysis>true</NoPackageAnalysis>
1212
<PackageDescription>ASP.NET Core Module</PackageDescription>
1313
<IsPackable Condition="'$(OS)' != 'Windows_NT'">false</IsPackable>
14+
<IsANCMPackage>true</IsANCMPackage>
1415
</PropertyGroup>
1516

1617
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">

src/Servers/IIS/AspNetCoreModuleV2/Microsoft.AspNetCore.AspNetCoreModuleV2/Microsoft.AspNetCore.AspNetCoreModuleV2.pkgproj

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<NoPackageAnalysis>true</NoPackageAnalysis>
1212
<PackageDescription>ASP.NET Core Module</PackageDescription>
1313
<IsPackable Condition="'$(OS)' != 'Windows_NT'">false</IsPackable>
14+
<IsANCMPackage>true</IsANCMPackage>
1415
</PropertyGroup>
1516

1617
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">

0 commit comments

Comments
 (0)