43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<!--
|
|
|
|
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.1.8' ">
|
|
<PackagesInPatch>
|
|
Microsoft.AspNetCore.Authentication.Google;
|
|
</PackagesInPatch>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.1.9' ">
|
|
<PackagesInPatch>
|
|
</PackagesInPatch>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.1.10' ">
|
|
<PackagesInPatch>
|
|
</PackagesInPatch>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.1.11' ">
|
|
<PackagesInPatch>
|
|
Microsoft.AspNetCore.Identity.UI;
|
|
Microsoft.AspNetCore.Mvc.Core;
|
|
Microsoft.AspNetCore.Mvc.RazorPages;
|
|
Microsoft.AspNetCore.SignalR.Protocols.MessagePack;
|
|
Microsoft.AspNetCore.SignalR.Redis;
|
|
</PackagesInPatch>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.1.12' ">
|
|
<PackagesInPatch>
|
|
</PackagesInPatch>
|
|
</PropertyGroup>
|
|
</Project>
|