-
Notifications
You must be signed in to change notification settings - Fork 921
Expand file tree
/
Copy pathSurging.Core.Caching.csproj
More file actions
50 lines (44 loc) · 2.38 KB
/
Copy pathSurging.Core.Caching.csproj
File metadata and controls
50 lines (44 loc) · 2.38 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<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>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<PackageReleaseNotes>1.multiple register center cluster
2. fix bug</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="4.9.4" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.2.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.2.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="StackExchange.Redis" Version="2.0.505" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Surging.Core.CPlatform\Surging.Core.CPlatform.csproj" />
<ProjectReference Include="..\Surging.Core.ProxyGenerator\Surging.Core.ProxyGenerator.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="CachingResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>CachingResources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="CachingResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>CachingResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>