Skip to content

Commit

Permalink
cleaned up NuGet package descriptions (akkadotnet#6111)
Browse files Browse the repository at this point in the history
Co-authored-by: Gregorius Soedharmo <[email protected]>
(cherry picked from commit 256235b)
  • Loading branch information
Aaronontheweb authored and Arkatufus committed Sep 23, 2022
1 parent 8fcaaa4 commit 03a6b78
Show file tree
Hide file tree
Showing 6 changed files with 111 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
<PackageTags>$(AkkaPackageTags);network;cluster;sharding</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Akka.Cluster.Sharding</AssemblyTitle>
<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)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);network;cluster;sharding</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<EmbeddedResource Include="reference.conf"/>
Expand Down
7 changes: 7 additions & 0 deletions src/core/Akka.Cluster/Akka.Cluster.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
<PackageTags>$(AkkaPackageTags);network;cluster</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Akka.Cluster</AssemblyTitle>
<Description>Clustering support for Akka.NET actors. Used to build highly-available, distributed applications.</Description>
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);network;cluster</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<EmbeddedResource Include="Configuration\Cluster.conf"/>
Expand Down
2 changes: 2 additions & 0 deletions src/core/Akka.Persistence/Akka.Persistence.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<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>
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);persistence;eventsource</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
Expand Down
22 changes: 22 additions & 0 deletions src/core/Akka.Remote/Akka.Remote.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,26 @@
<PropertyGroup>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<Import Project="..\..\common.props" />
<PropertyGroup>
<AssemblyTitle>Akka.Remote</AssemblyTitle>
<Description>Remoting support for Akka.NET. Allows actors to communicate over the network.</Description>
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);network</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Configuration\Remote.conf" />
<ProjectReference Include="..\Akka\Akka.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetty.Handlers" Version="0.6.0" />
<PackageReference Include="Google.Protobuf" Version="$(ProtobufVersion)" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
</Project>
71 changes: 71 additions & 0 deletions src/core/Akka.Streams/Akka.Streams.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,75 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<Import Project="..\..\common.props" />
<PropertyGroup>
<AssemblyTitle>Akka.Streams</AssemblyTitle>
<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)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags);reactive;stream</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="reference.conf" />
<ProjectReference Include="..\Akka\Akka.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == '$(NetStandardLibVersion)' ">
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<None Update="CodeGen\Dsl\GraphApply.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>GraphApply.cs</LastGenOutput>
</None>
<Compile Update="CodeGen\Dsl\GraphApply.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>GraphApply.tt</DependentUpon>
</Compile>
<None Update="CodeGen\Dsl\UnzipWith.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>UnzipWith.cs</LastGenOutput>
</None>
<Compile Update="CodeGen\Dsl\UnzipWith.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>UnzipWith.tt</DependentUpon>
</Compile>
<None Update="CodeGen\Dsl\ZipWith.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>ZipWith.cs</LastGenOutput>
</None>
<Compile Update="CodeGen\Dsl\ZipWith.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ZipWith.tt</DependentUpon>
</Compile>
<None Update="CodeGen\FanInShape.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>FanInShape.cs</LastGenOutput>
</None>
<Compile Update="CodeGen\FanInShape.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>FanInShape.tt</DependentUpon>
</Compile>
<None Update="CodeGen\FanOutShape.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>FanOutShape.cs</LastGenOutput>
</None>
<Compile Update="CodeGen\FanOutShape.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>FanOutShape.tt</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="$(ProtobufVersion)" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
<PackageReference Include="Reactive.Streams" Version="1.0.2" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
</Project>
2 changes: 2 additions & 0 deletions src/core/Akka/Akka.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<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>
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks>
<PackageTags>$(AkkaPackageTags)</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>8.0</LangVersion>
Expand Down

0 comments on commit 03a6b78

Please sign in to comment.