-
Notifications
You must be signed in to change notification settings - Fork 50
/
Root.Build.props
29 lines (25 loc) · 1.14 KB
/
Root.Build.props
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
<Project>
<Import Project=".\NetFxOnLinux.props" />
<PropertyGroup>
<Authors>Pusher</Authors>
<Company>Pusher</Company>
<Description>Pusher .NET library for interacting with the HTTP API</Description>
<Copyright>Copyright © 2021</Copyright>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/pusher/pusher-http-dotnet</PackageProjectUrl>
<PackageReleaseNotes>See https://github.com/pusher/pusher-http-dotnet/blob/master/CHANGELOG.md for full details</PackageReleaseNotes>
<PackageTags>pusher channels realtime websocket</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon-128.png</PackageIcon>
<Version>5.0.0</Version>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<FileVersion>5.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net472' ">
<Reference Include="System.Net.Http" />
<Reference Include="System.Runtime" />
</ItemGroup>
</Project>