PatchConfig.props 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <!--
  2. This file contains a list of the package IDs which are patching in a given release.
  3. CAUTION: due to limitations in MSBuild, the format of the PackagesInPatch property is picky.
  4. When adding a new package, make sure the new line ends with a semicolon and starts with a space.
  5. Later on, this will be checked using this condition:
  6. <IsPackageInThisPatch>$(PackagesInPatch.Contains(' $(PackageId);'))</IsPackageInThisPatch>
  7. -->
  8. <Project>
  9. <PropertyGroup>
  10. <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.1' ">
  13. <PackagesInPatch>
  14. Microsoft.AspNetCore.AspNetCoreModule;
  15. Microsoft.AspNetCore.AspNetCoreModuleV2;
  16. Microsoft.AspNetCore.Server.IIS;
  17. Microsoft.AspNetCore.Server.IISIntegration;
  18. Microsoft.AspNetCore.Server.IntegrationTesting.IIS;
  19. Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets;
  20. Microsoft.AspNetCore.WebSockets;
  21. Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore;
  22. </PackagesInPatch>
  23. </PropertyGroup>
  24. </Project>