| 123456789101112131415161718192021222324252627282930313233 |
- <!--
- 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)' == '3.0.1' ">
- <PackagesInPatch>
- </PackagesInPatch>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.2' ">
- <PackagesInPatch>
- @aspnet/signalr;
- Microsoft.AspNetCore.AspNetCoreModuleV2;
- Microsoft.AspNetCore.Authentication.Google;
- Microsoft.AspNetCore.Http;
- Microsoft.AspNetCore.Mvc.Core;
- Microsoft.AspNetCore.Routing;
- Microsoft.AspNetCore.Server.IIS;
- java:signalr;
- </PackagesInPatch>
- </PropertyGroup>
- </Project>
|