| 1234567891011121314151617181920212223242526272829 |
- <!--
- This file contains a list of the package IDs which are patching in a given release.
- CAUTION: due to limitations in MSBuild, the format of the PackagesInPatch property is picky.
- When adding a new package, make sure the new line ends with a semicolon and starts with a space.
- Later on, this will be checked using this condition:
- <IsPackageInThisPatch>$(PackagesInPatch.Contains(' $(PackageId);'))</IsPackageInThisPatch>
- -->
- <Project>
- <PropertyGroup>
- <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.1' ">
- <PackagesInPatch>
- Microsoft.AspNetCore.AspNetCoreModule;
- Microsoft.AspNetCore.AspNetCoreModuleV2;
- Microsoft.AspNetCore.Server.IIS;
- Microsoft.AspNetCore.Server.IISIntegration;
- Microsoft.AspNetCore.Server.IntegrationTesting.IIS;
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets;
- Microsoft.AspNetCore.WebSockets;
- Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore;
- </PackagesInPatch>
- </PropertyGroup>
- </Project>
|