PatchConfig.props 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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)' == '3.0.1' ">
  13. <PackagesInPatch>
  14. </PackagesInPatch>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.2' ">
  17. <PackagesInPatch>
  18. @aspnet/signalr;
  19. Microsoft.AspNetCore.AspNetCoreModuleV2;
  20. Microsoft.AspNetCore.Authentication.Google;
  21. Microsoft.AspNetCore.Http;
  22. Microsoft.AspNetCore.Mvc.Core;
  23. Microsoft.AspNetCore.Routing;
  24. Microsoft.AspNetCore.Server.IIS;
  25. java:signalr;
  26. </PackagesInPatch>
  27. </PropertyGroup>
  28. </Project>