Skip to content

Commit

Permalink
Provide missing package descriptions
Browse files Browse the repository at this point in the history
These are used in results listings
  • Loading branch information
kzu committed Jan 16, 2023
1 parent be89dff commit 5a203f0
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 18 deletions.
7 changes: 1 addition & 6 deletions src/TableStorage.Bson.Source/TableStorage.Bson.Source.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@
<IsPackable>true</IsPackable>
<PackBuildOutput>false</PackBuildOutput>
<PackCompile>true</PackCompile>
<Description>A source-only BSON binary serializer for use with document-based repositories.

Usage:

var repo = DocumentRepository.Create&lt;Product&gt;(storageAccount, serializer: BsonDocumentSerializer.Default);
</Description>
<Description>A source-only BSON binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/TableStorage.Bson/TableStorage.Bson.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<AssemblyName>Devlooped.TableStorage.Bson</AssemblyName>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<Description>A BSON binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<IsPackable>true</IsPackable>
<PackBuildOutput>false</PackBuildOutput>
<PackCompile>true</PackCompile>
<Description>A source-only MessagePack binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 1 addition & 6 deletions src/TableStorage.MessagePack/TableStorage.MessagePack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@
<AssemblyName>Devlooped.TableStorage.MessagePack</AssemblyName>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<Description>A MessagePack binary serializer for use with document-based repositories.

Usage:

var repo = DocumentRepository.Create&lt;Product&gt;(storageAccount, serializer: BsonDocumentSerializer.Default);
</Description>
<Description>A MessagePack binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@
<IsPackable>true</IsPackable>
<PackBuildOutput>false</PackBuildOutput>
<PackCompile>true</PackCompile>
<Description>A source-only Newtonsoft.Json-based serializer for use with document-based repositories.

Usage:

var repo = DocumentRepository.Create&lt;Product&gt;(storageAccount, serializer: JsonDocumentSerializer.Default);
</Description>
<Description>A source-only Newtonsoft.Json-based serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/TableStorage.Newtonsoft/TableStorage.Newtonsoft.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<AssemblyName>Devlooped.TableStorage.Newtonsoft</AssemblyName>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<Description>A Json.NET serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<IsPackable>true</IsPackable>
<PackBuildOutput>false</PackBuildOutput>
<PackCompile>true</PackCompile>
<Description>A source-only Protocol Buffers binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/TableStorage.Protobuf/TableStorage.Protobuf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<AssemblyName>Devlooped.TableStorage.Protobuf</AssemblyName>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<Description>A Protocol Buffers binary serializer for use with document-based repositories.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/TableStorage.Source/TableStorage.Source.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<IsPackable>true</IsPackable>
<PackBuildOutput>false</PackBuildOutput>
<PackCompile>true</PackCompile>
<Description>Source-only repository pattern with POCO object support for storing to Azure/CosmosDB Table Storage</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/TableStorage/TableStorage.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<AssemblyName>Devlooped.TableStorage</AssemblyName>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<Description>Repository pattern with POCO object support for storing to Azure/CosmosDB Table Storage</Description>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 5a203f0

Please sign in to comment.