| 12345678910111213141516171819202122232425262728 |
- <!--
- 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.
- Directory.Build.props checks this property using the following condition:
- <IsPackageInThisPatch>$(PackagesInPatch.Contains(' $(PackageId);'))</IsPackageInThisPatch>
- -->
- <Project>
- <PropertyGroup>
- <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(VersionPrefix)' == '3.0.1' ">
- <PackagesInPatch>
- Microsoft.Net.Http.Headers;
- Microsoft.AspNetCore.CookiePolicy;
- Microsoft.AspNetCore.DataProtection.EntityFrameworkCore;
- @microsoft/signalr;
- Microsoft.Net.Http.Headers;
- Microsoft.AspNetCore.Http.Abstractions;
- Microsoft.AspNetCore.Http.Features;
- Microsoft.AspNetCore.CookiePolicy;
- </PackagesInPatch>
- </PropertyGroup>
- </Project>
|