-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathAustinHarris.JsonRpc.csproj
More file actions
27 lines (22 loc) · 1.14 KB
/
AustinHarris.JsonRpc.csproj
File metadata and controls
27 lines (22 loc) · 1.14 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Company>Austin Harris</Company>
<Product>Json-Rpc.Net Core</Product>
<Description>Core functionality for JsonRpc.Net</Description>
<VersionPrefix>1.2.3</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Copyright>Austin Harris</Copyright>
<PackageProjectUrl>https://github.com/Astn/JSON-RPC.NET</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/Astn/JSON-RPC.NET/master/LICENSE</PackageLicenseUrl>
<PackageReleaseNotes>
Improves support for optional parameters - @HoMS1987 https://github.com/HoMS1987
Fixes protocol validation of the ID property - @pedrolcl https://github.com/pedrolcl
DotNet Core support - @astn https://github.com/astn
</PackageReleaseNotes>
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>