Skip to content

Commit f74ca43

Browse files
jkotalikJohn Luo
authored and
John Luo
committed
Always include ANCM in build output (#11199)
1 parent d805ee1 commit f74ca43

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-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.AspNetCoreModuleV1/Microsoft.AspNetCore.AspNetCoreModuleV1.pkgproj

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<ContentTargetFolders>content</ContentTargetFolders>
1111
<NoPackageAnalysis>true</NoPackageAnalysis>
1212
<PackageDescription>ASP.NET Core Module</PackageDescription>
13+
<IsANCMPackage>true</IsANCMPackage>
1314
</PropertyGroup>
1415

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

0 commit comments

Comments
 (0)