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
commit 9bac6db68fedd5311d3dc4d67c7e95352a94f4ce Author: 凌楚 <[email protected]> AuthorDate: Thu Mar 2 10:03:28 2023 +0800 Bump to 0.0.3-SNAPSHOT --- csharp/rocketmq-client-csharp/SendReceipt.cs | 4 ++-- csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/csharp/rocketmq-client-csharp/SendReceipt.cs b/csharp/rocketmq-client-csharp/SendReceipt.cs index 13e86ec4..6e7610c3 100644 --- a/csharp/rocketmq-client-csharp/SendReceipt.cs +++ b/csharp/rocketmq-client-csharp/SendReceipt.cs @@ -23,7 +23,7 @@ namespace Org.Apache.Rocketmq { public sealed class SendReceipt : ISendReceipt { - public SendReceipt(string messageId, string transactionId, MessageQueue messageQueue) + private SendReceipt(string messageId, string transactionId, MessageQueue messageQueue) { MessageId = messageId; TransactionId = transactionId; @@ -34,7 +34,7 @@ namespace Org.Apache.Rocketmq public string TransactionId { get; } - public MessageQueue MessageQueue { get; } + private MessageQueue MessageQueue { get; } public Endpoints Endpoints => MessageQueue.Broker.Endpoints; diff --git a/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj b/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj index 93095c65..ab50f685 100644 --- a/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj +++ b/csharp/rocketmq-client-csharp/rocketmq-client-csharp.csproj @@ -14,10 +14,11 @@ <Description>.NET Client for Apache RocketMQ</Description> <PackageProjectUrl>https://github.com/apache/rocketmq-clients</PackageProjectUrl> <RepositoryUrl>https://github.com/apache/rocketmq-clients</RepositoryUrl> + <PackageVersion>0.0.3-SNAPSHOT</PackageVersion> </PropertyGroup> <ItemGroup> - <None Include="..\README.md" Pack="true" PackagePath="\"/> + <None Include="..\README.md" Pack="true" PackagePath="\" /> <PackageReference Include="Crc32.NET" Version="1.2.0" /> <PackageReference Include="Google.Protobuf" Version="3.19.4" /> <PackageReference Include="Grpc.Net.Client" Version="2.43.0" />
