aboutsummaryrefslogtreecommitdiff
path: root/ports/microsoft-signalr/vcpkg.json
blob: 12e555add59c8759d7763c51f32649749d16709e (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
{
  "name": "microsoft-signalr",
  "version-string": "0.1.0-alpha3",
  "port-version": 1,
  "description": "C++ Client for ASP.NET Core SignalR.",
  "homepage": "https://github.com/aspnet/SignalR-Client-Cpp",
  "default-features": [
    "default-features"
  ],
  "features": {
    "cpprestsdk": {
      "description": "Add default Http and WebSocket implementations using CppRestSDK",
      "dependencies": [
        {
          "name": "cpprestsdk",
          "features": [
            "default-features",
            "websockets"
          ]
        }
      ]
    },
    "default-features": {
      "description": "Features installed by default",
      "dependencies": [
        {
          "name": "microsoft-signalr",
          "features": [
            "cpprestsdk"
          ],
          "platform": "!uwp"
        }
      ]
    },
    "messagepack": {
      "description": "Add support for the messagepack hub protocol, must enable in code still",
      "dependencies": [
        "msgpack"
      ]
    }
  }
}