Skip to content

Commit f2a6954

Browse files
committed
fix package descriptions
1 parent f40c77a commit f2a6954

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

src/GraphQL.Client.Abstractions.Websocket/GraphQL.Client.Abstractions.Websocket.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<Import Project="../src.props" />
33

44
<PropertyGroup>
5-
<TargetFramework>netstandard2.0</TargetFramework>
5+
<Description>Abstractions for the Websocket transport used in GraphQL.Client</Description>
6+
<TargetFramework>netstandard2.0</TargetFramework>
67
<LangVersion>8.0</LangVersion>
78
</PropertyGroup>
89

src/GraphQL.Client.Abstractions/GraphQL.Client.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="../src.props" />
44

55
<PropertyGroup>
6-
<Description>A GraphQL Client</Description>
6+
<Description>Abstractions for GraphQL.Client</Description>
77
<RootNamespace>GraphQL.Client.Abstractions</RootNamespace>
88
<TargetFrameworks>netstandard2.0</TargetFrameworks>
99
</PropertyGroup>

src/GraphQL.Client.LocalExecution/GraphQL.Client.LocalExecution.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="../src.props" />
44

55
<PropertyGroup>
6-
<Description>A GraphQL Client which executes the queries directly on a provided C# schema</Description>
6+
<Description>A GraphQL Client which executes the queries directly on a provided GraphQL schema using graphql-dotnet</Description>
77
<TargetFramework>netstandard2.0</TargetFramework>
88
</PropertyGroup>
99

src/GraphQL.Client.Serializer.Newtonsoft/GraphQL.Client.Serializer.Newtonsoft.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Import Project="../src.props" />
33

44
<PropertyGroup>
5+
<Description>A serializer implementation for GraphQL.Client using Newtonsoft.Json as underlying JSON library</Description>
56
<TargetFrameworks>netstandard2.0</TargetFrameworks>
67
<LangVersion>8.0</LangVersion>
78
</PropertyGroup>

src/GraphQL.Client.Serializer.SystemTextJson/GraphQL.Client.Serializer.SystemTextJson.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Import Project="../src.props" />
33

44
<PropertyGroup>
5+
<Description>A serializer implementation for GraphQL.Client using System.Text.Json as underlying JSON library</Description>
56
<TargetFrameworks>netstandard2.0;netcoreapp3.1</TargetFrameworks>
67
<LangVersion>8.0</LangVersion>
78
</PropertyGroup>

0 commit comments

Comments
 (0)