PatchConfig.props 1.0 KB

12345678910111213141516171819202122232425262728
  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. Directory.Build.props checks this property using the following condition:
  6. <IsPackageInThisPatch>$(PackagesInPatch.Contains(' $(PackageId);'))</IsPackageInThisPatch>
  7. -->
  8. <Project>
  9. <PropertyGroup>
  10. <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(VersionPrefix)' == '3.0.1' ">
  13. <PackagesInPatch>
  14. Microsoft.Net.Http.Headers;
  15. Microsoft.AspNetCore.CookiePolicy;
  16. Microsoft.AspNetCore.DataProtection.EntityFrameworkCore;
  17. @microsoft/signalr;
  18. Microsoft.Net.Http.Headers;
  19. Microsoft.AspNetCore.Http.Abstractions;
  20. Microsoft.AspNetCore.Http.Features;
  21. Microsoft.AspNetCore.CookiePolicy;
  22. </PackagesInPatch>
  23. </PropertyGroup>
  24. </Project>