You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by aa...@apache.org on 2023/03/16 11:50:46 UTC

[rocketmq-clients] branch master updated: Pack the pdb file into nupkg

This is an automated email from the ASF dual-hosted git repository.

aaronai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git


The following commit(s) were added to refs/heads/master by this push:
     new b85b9b11 Pack the pdb file into nupkg
b85b9b11 is described below

commit b85b9b11c1b7b6a7d822a447fe1ab3c2ea220bfe
Author: Aaron Ai <ya...@gmail.com>
AuthorDate: Thu Mar 16 19:02:39 2023 +0800

    Pack the pdb file into nupkg
---
 csharp/README-CN.md                                         | 2 +-
 csharp/README.md                                            | 2 +-
 csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj | 7 +++++--
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/csharp/README-CN.md b/csharp/README-CN.md
index 86bde40f..faab401b 100644
--- a/csharp/README-CN.md
+++ b/csharp/README-CN.md
@@ -49,7 +49,7 @@ dotnet test -l "console;verbosity=detailed"
 
 我们使用 [NLog](https://nlog-project.org/) 作为日志实现,与 Java 客户端类似,我们允许使用环境来自定义日志相关的配置。
 
-* `rocketmq_log_level`:日志输出级别,默认为INFO。
+* `rocketmq_log_level`:日志输出级别,默认为 INFO。
 * `rocketmq_log_root`
   :日志输出的根目录。默认路径为 `$HOME/logs/rocketmq`,因此完整路径为 `$HOME/logs/rocketmq/rocketmq-client.log`。
 * `rocketmq_log_file_maxIndex`:要保留的日志文件的最大数量。默认值为 10,单个日志文件的大小限制为 64 MB。暂不支持调整。
diff --git a/csharp/README.md b/csharp/README.md
index 1deea55c..925ff433 100644
--- a/csharp/README.md
+++ b/csharp/README.md
@@ -1,6 +1,6 @@
 # The .NET Implementation of Apache RocketMQ Client
 
-English | [简体中文](README-CN.md) | [RocketMQ Website](https://rocketmq.apache.org/)
+English | [简体中文](https://github.com/apache/rocketmq-clients/blob/master/csharp/README-CN.md) | [RocketMQ Website](https://rocketmq.apache.org/)
 
 ## Supported .NET Versions
 
diff --git a/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj b/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj
index f7036d4b..ef2a0ff8 100644
--- a/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj
+++ b/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj
@@ -1,7 +1,7 @@
 <Project Sdk="Microsoft.NET.Sdk">
     <PropertyGroup>
         <PackageId>RocketMQ.Client</PackageId>
-        <PackageVersion>0.0.15-SNAPSHOT</PackageVersion>
+        <PackageVersion>0.0.17-SNAPSHOT</PackageVersion>
         <Version>$(PackageVersion)</Version>
 
         <Authors>RocketMQ Authors</Authors>
@@ -15,6 +15,9 @@
         <PackageProjectUrl>https://github.com/apache/rocketmq-clients</PackageProjectUrl>
         <RepositoryUrl>https://github.com/apache/rocketmq-clients</RepositoryUrl>
         <PackageIcon>logo.png</PackageIcon>
+
+        <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
+
     </PropertyGroup>
 
     <ItemGroup>
@@ -40,6 +43,6 @@
             <Link>Protos\google\rpc\status.proto</Link>
             <Link>Protos\google\rpc\error_details.proto</Link>
         </Protobuf>
-        <None Include="logo.png" Pack="true" PackagePath=""/>
+        <None Include="logo.png" Pack="true" PackagePath="" />
     </ItemGroup>
 </Project>