Skip to content

Commit 6ddae48

Browse files
committed
优化各项目csproj元数据及描述信息
本次提交统一并完善了各项目的 AssemblyTitle 和 Description 字段,明确各模块功能定位,补充缺失元数据,提升项目可读性和专业性,为后续管理和发布提供更清晰的基础。
1 parent 2fdc5a0 commit 6ddae48

10 files changed

Lines changed: 25 additions & 19 deletions

File tree

Benchmark/NewLife.Remoting.Benchmarks.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net10.0</TargetFramework>
6+
<AssemblyTitle>通信性能基准测试</AssemblyTitle>
7+
<Description>用于评估Remoting核心链路吞吐、延迟与分配</Description>
68
<OutputPath>..\Bin\Benchmark</OutputPath>
79
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
810
<ImplicitUsings>enable</ImplicitUsings>

NewLife.Remoting.Extensions/NewLife.Remoting.Extensions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<OutputType>Library</OutputType>
55
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
6-
<AssemblyTitle>协议通信扩展库</AssemblyTitle>
7-
<Description>提供WebApi应用级服务端</Description>
6+
<AssemblyTitle>远程通信服务扩展</AssemblyTitle>
7+
<Description>提供设备接入控制器、令牌服务与会话管理扩展</Description>
88
<Company>新生命开发团队</Company>
99
<Copyright>©2002-2026 NewLife</Copyright>
1010
<VersionPrefix>3.7</VersionPrefix>

NewLife.Remoting/NewLife.Remoting.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net45;net461;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
4-
<AssemblyTitle>协议通信库</AssemblyTitle>
5-
<Description>提供高性能RPC客户端服务端,提供Http/WebSocket客户端服务端,提供应用级客户端</Description>
4+
<AssemblyTitle>统一远程通信框架</AssemblyTitle>
5+
<Description>提供RPC、HTTP、WebSocket与SRMP统一通信能力</Description>
66
<Company>新生命开发团队</Company>
77
<Copyright>©2002-2026 新生命开发团队</Copyright>
88
<VersionPrefix>3.7</VersionPrefix>

Samples/Demo/Demo.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net10.0</TargetFramework>
6-
<AssemblyTitle>RPC例程</AssemblyTitle>
7-
<Description>RPC通信例程</Description>
6+
<AssemblyTitle>RPC通信示例</AssemblyTitle>
7+
<Description>演示客户端与服务端的基础调用与消息交互</Description>
88
<Company>新生命开发团队</Company>
99
<Copyright>©2002-2026 NewLife</Copyright>
1010
<VersionPrefix>1.0</VersionPrefix>

Samples/IoTZero/IoTZero.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<PropertyGroup>
44
<TargetFramework>net10.0</TargetFramework>
5-
<AssemblyTitle>物联网服务平台</AssemblyTitle>
6-
<Description>IoT服务平台</Description>
5+
<AssemblyTitle>物联网接入平台</AssemblyTitle>
6+
<Description>基于Remoting与Cube构建设备接入与管理平台</Description>
77
<Company>新生命开发团队</Company>
88
<Copyright>©2002-2026 NewLife</Copyright>
99
<VersionPrefix>1.0</VersionPrefix>

Samples/Zero.Desktop/Zero.Desktop.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
55
<TargetFramework>net10.0-windows</TargetFramework>
6-
<AssemblyTitle>客户端桌面应用</AssemblyTitle>
7-
<Description>CS架构的客户端桌面应用,给用户提供便捷操作,可对接硬件</Description>
6+
<AssemblyTitle>零代桌面客户端</AssemblyTitle>
7+
<Description>提供设备运维、指令交互与业务操作的桌面入口</Description>
88
<Company>新生命开发团队</Company>
99
<Copyright>©2002-2026 NewLife</Copyright>
1010
<VersionPrefix>1.0</VersionPrefix>

Samples/Zero.RpcServer/Zero.RpcServer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net10.0</TargetFramework>
6-
<AssemblyTitle>RPC服务端</AssemblyTitle>
7-
<Description>高性能,长连接,数据接口</Description>
6+
<AssemblyTitle>高性能RPC服务</AssemblyTitle>
7+
<Description>提供长连接高吞吐接口服务与远程调用能力</Description>
88
<Company>新生命开发团队</Company>
99
<Copyright>©2002-2026 NewLife</Copyright>
1010
<VersionPrefix>1.0</VersionPrefix>

Samples/ZeroServer/ZeroServer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<PropertyGroup>
44
<TargetFramework>net10.0</TargetFramework>
5-
<AssemblyTitle>零代服务平台</AssemblyTitle>
6-
<Description>CS架构服务端平台</Description>
5+
<AssemblyTitle>零代Web服务平台</AssemblyTitle>
6+
<Description>提供管理后台、设备接口与服务治理能力</Description>
77
<Company>新生命开发团队</Company>
88
<Copyright>©2002-2026 NewLife</Copyright>
99
<VersionPrefix>1.0</VersionPrefix>

Test/Test.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net10.0</TargetFramework>
6+
<AssemblyTitle>通信功能测试台</AssemblyTitle>
7+
<Description>用于手工验证协议通信、连接管理与调用流程</Description>
68
<OutputPath>..\Bin\Test</OutputPath>
79
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
810
<ImplicitUsings>enable</ImplicitUsings>

XUnitTest/XUnitTest.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net10.0</TargetFramework>
5+
<AssemblyTitle>通信单元测试集</AssemblyTitle>
6+
<Description>覆盖Remoting核心组件行为与兼容性回归验证</Description>
57
<OutputPath>..\Bin\UnitTest</OutputPath>
68
<SignAssembly>True</SignAssembly>
79
<AssemblyOriginatorKeyFile>..\Doc\newlife.snk</AssemblyOriginatorKeyFile>

0 commit comments

Comments
 (0)