Skip to content

Commit

Permalink
[PORT #6111] cleaned up NuGet package descriptions (#6114)
Browse files Browse the repository at this point in the history
* cleaned up NuGet package descriptions (#6111)

Co-authored-by: Gregorius Soedharmo <arkatufus@yahoo.com>
(cherry picked from commit 256235b)

* Fix merge errors

Co-authored-by: Aaron Stannard <aaron@petabridge.com>
  • Loading branch information
Arkatufus and Aaronontheweb committed Sep 23, 2022
1 parent 6f298a6 commit cc84ca5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<AssemblyTitle>Akka.Cluster.Sharding</AssemblyTitle>
<Description>Sharded actors with managed lifecycle for Akka.NET cluster</Description>
<Description>Sharded actors with managed lifecycle for Akka.NET cluster. Used to distribute state in a fault-tolerant, consistent fashion over an Akka.NET cluster.</Description>
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);network;cluster;sharding</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka.Cluster/Akka.Cluster.csproj
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<AssemblyTitle>Akka.Cluster</AssemblyTitle>
<Description>Cluster support for Akka.NET</Description>
<Description>Clustering support for Akka.NET actors. Used to build highly-available, distributed applications.</Description>
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);network;cluster</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka.Persistence/Akka.Persistence.csproj
Expand Up @@ -2,8 +2,8 @@
<Import Project="..\..\common.props" />
<PropertyGroup>
<AssemblyTitle>Akka.Persistence</AssemblyTitle>
<Description>Persistence actor support for Akka.NET</Description>
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks>
<Description>Persistence for Akka.NET actors. Allows actors to persist and recover their state in a database-agnostic fashion.</Description>
<PackageTags>$(AkkaPackageTags);persistence;eventsource</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka.Remote/Akka.Remote.csproj
Expand Up @@ -2,7 +2,7 @@
<Import Project="..\..\common.props"/>
<PropertyGroup>
<AssemblyTitle>Akka.Remote</AssemblyTitle>
<Description>Remote actor support for Akka.NET</Description>
<Description>Remoting support for Akka.NET. Allows actors to communicate over the network.</Description>
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);network</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
3 changes: 2 additions & 1 deletion src/core/Akka.Streams/Akka.Streams.csproj
Expand Up @@ -2,7 +2,8 @@
<Import Project="..\..\common.props" />
<PropertyGroup>
<AssemblyTitle>Akka.Streams</AssemblyTitle>
<Description>Reactive stream support for Akka.NET</Description>
<Description>Streaming support for Akka.NET. Introduces a LINQ-like interface for writing asynchronous,
back-pressure-aware streams built on top of Akka.NET actors.</Description>
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);reactive;stream</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka/Akka.csproj
Expand Up @@ -3,8 +3,8 @@

<PropertyGroup>
<AssemblyTitle>Akka</AssemblyTitle>
<Description>Akka.NET is a port of the popular Java/Scala framework Akka to .NET</Description>
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks>
<Description>Canonical actor model implementation for .NET with local + distributed actors in C# and F#.</Description>
<PackageTags>$(AkkaPackageTags)</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>8.0</LangVersion>
Expand Down

0 comments on commit cc84ca5

Please sign in to comment.