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: 8f636df7822a7b0336697e0bbf8baf4d872e6dee (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
48
49
50
51
52
<!--

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.2.1' ">
    <PackagesInPatch>
      Microsoft.AspNetCore.AspNetCoreModule;
      Microsoft.AspNetCore.AspNetCoreModuleV2;
      Microsoft.AspNetCore.Server.IIS;
      Microsoft.AspNetCore.Server.IISIntegration;
      Microsoft.AspNetCore.Server.IntegrationTesting.IIS;
      Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets;
      Microsoft.AspNetCore.WebSockets;
      Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore;
    </PackagesInPatch>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.2' ">
    <PackagesInPatch>
      @aspnet/signalr;
      Microsoft.AspNetCore.AspNetCoreModuleV2;
      Microsoft.AspNetCore.Authentication.Google;
      Microsoft.AspNetCore.AzureAppServicesIntegration;
      Microsoft.AspNetCore.AzureAppServices.HostingStartup;
      Microsoft.AspNetCore.Http;
      Microsoft.AspNetCore.Mvc.Core;
      Microsoft.AspNetCore.Routing;
      Microsoft.AspNetCore.Server.IIS;
      java:signalr;
    </PackagesInPatch>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.3' ">
    <PackagesInPatch>
    </PackagesInPatch>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.4' ">
    <PackagesInPatch>
      @aspnet/signalr;
      Microsoft.AspNetCore.AspNetCoreModuleV2;
    </PackagesInPatch>
  </PropertyGroup>
</Project>