-
Notifications
You must be signed in to change notification settings - Fork 922
Expand file tree
/
Copy pathSurging.Core.Codec.MessagePack.csproj
More file actions
28 lines (24 loc) · 1.33 KB
/
Surging.Core.Codec.MessagePack.csproj
File metadata and controls
28 lines (24 loc) · 1.33 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
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Version>1.1.0.0</Version>
<Authors>fanly</Authors>
<Product>surging Micro Service Framework</Product>
<Company />
<Description>surging is a distributed micro service framework that provides high-performance RPC remote service calls, using Zookeeper, Consul as the registration center for surging services, integrating hash, random, polling as a load balancing algorithm, RPC integration using the netty framework, Using asynchronous transmission. Use json.net, protobuf, messagepack for serialization Codec</Description>
<Copyright>Copyright © fanly All Rights Reserved.</Copyright>
<PackageLicenseUrl>https://github.com/dotnetcore/surging/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/dotnetcore/surging</PackageProjectUrl>
<PackageTags>MicroService surging</PackageTags>
<PackageReleaseNotes>1.multiple register center cluster
2. fix bug</PackageReleaseNotes>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MessagePack" Version="1.9.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Surging.Core.CPlatform\Surging.Core.CPlatform.csproj" />
</ItemGroup>
</Project>