Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PatchConfig.props « eng - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ba7babc5710b8dd08857ab1ec613aa27c1aa067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!--

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.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>
      Microsoft.AspNetCore.Server.HttpSys;
    </PackagesInPatch>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(VersionPrefix)' == '2.1.13' ">
    <PackagesInPatch>
      Microsoft.AspNetCore.DataProtection.AzureStorage;
      Microsoft.AspNetCore.SpaServices;
    </PackagesInPatch>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(VersionPrefix)' == '2.1.14' ">
    <PackagesInPatch>
      Microsoft.Net.Http.Headers;
      Microsoft.AspNetCore.CookiePolicy;
    </PackagesInPatch>
  </PropertyGroup>
</Project>