Skip to content

Commit 5126aab

Browse files
Release 1.3.2
1 parent 8267379 commit 5126aab

File tree

3 files changed

+42
-42
lines changed

3 files changed

+42
-42
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,4 +477,4 @@ A trace output providing details of a GraphQL query request and response time.
477477
```json
478478
{"id":"b1685ff0-6356-49eb-ab58-6ef32b9b4a61","method":"POST","uri":"https://graphql.4me.qa/","content":"{\"query\":\"query{node(id: \\\"KG1jIx\\\") {... on Person {id}}}\"}","account_id":"account-name"}
479479
{"id":"b1685ff0-6356-49eb-ab58-6ef32b9b4a61","response_time_in_ms":44}
480-
```
480+
```
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,82 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<OutputType>Library</OutputType>
4+
<OutputType>Library</OutputType>
55
<TargetFrameworks>netstandard2.0;net472;net6.0;net8.0</TargetFrameworks>
66
<LangVersion>9</LangVersion>
77
<RootNamespace>Sdk4me.GraphQL</RootNamespace>
8-
<ImplicitUsings>disable</ImplicitUsings>
9-
<Nullable>enable</Nullable>
10-
<GenerateDocumentationFile>True</GenerateDocumentationFile>
11-
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
12-
<Title>Sdk4me.GraphQL</Title>
13-
<Authors>Klaas Vandeweerdt</Authors>
14-
<Description>A .NET client for accessing the 4me GraphQL API</Description>
15-
<Copyright>Copyright © 2024 Vandeweerdt Klaas</Copyright>
16-
<PackageProjectUrl>https://developer.4me.com/graphql</PackageProjectUrl>
17-
<RepositoryUrl>https://github.com/code4me/4me-sdk-graphql-dotnet</RepositoryUrl>
18-
<RepositoryType>git</RepositoryType>
19-
<PackageTags>4me</PackageTags>
20-
<AssemblyVersion>1.3.1</AssemblyVersion>
21-
<FileVersion>1.3.1</FileVersion>
22-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
23-
<PackageIcon>LogoDark128x218.png</PackageIcon>
24-
<PackageReadmeFile>README.md</PackageReadmeFile>
25-
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
26-
<Version>1.3.1</Version>
8+
<ImplicitUsings>disable</ImplicitUsings>
9+
<Nullable>enable</Nullable>
10+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
11+
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
12+
<Title>Sdk4me.GraphQL</Title>
13+
<Authors>Klaas Vandeweerdt</Authors>
14+
<Description>A .NET client for accessing the 4me GraphQL API</Description>
15+
<Copyright>Copyright © 2024 Vandeweerdt Klaas</Copyright>
16+
<PackageProjectUrl>https://developer.4me.com/graphql</PackageProjectUrl>
17+
<RepositoryUrl>https://github.com/code4me/4me-sdk-graphql-dotnet</RepositoryUrl>
18+
<RepositoryType>git</RepositoryType>
19+
<PackageTags>4me;Sdk4me</PackageTags>
20+
<AssemblyVersion>1.3.2</AssemblyVersion>
21+
<FileVersion>1.3.2</FileVersion>
22+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
23+
<PackageIcon>LogoDark128x218.png</PackageIcon>
24+
<PackageReadmeFile>README.md</PackageReadmeFile>
25+
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
26+
<Version>1.3.2</Version>
2727
</PropertyGroup>
2828

2929
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
30-
<WarningLevel>7</WarningLevel>
30+
<WarningLevel>7</WarningLevel>
3131
</PropertyGroup>
3232

3333
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
34-
<WarningLevel>7</WarningLevel>
34+
<WarningLevel>7</WarningLevel>
3535
</PropertyGroup>
3636

3737
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
38-
<WarningLevel>6</WarningLevel>
38+
<WarningLevel>6</WarningLevel>
3939
</PropertyGroup>
4040

4141
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
42-
<WarningLevel>6</WarningLevel>
42+
<WarningLevel>6</WarningLevel>
4343
</PropertyGroup>
4444

4545
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net472|AnyCPU'">
46-
<WarningLevel>5</WarningLevel>
46+
<WarningLevel>5</WarningLevel>
4747
</PropertyGroup>
4848

4949
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net472|AnyCPU'">
50-
<WarningLevel>5</WarningLevel>
50+
<WarningLevel>5</WarningLevel>
5151
</PropertyGroup>
5252

5353
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
54-
<WarningLevel>5</WarningLevel>
54+
<WarningLevel>5</WarningLevel>
5555
</PropertyGroup>
5656

5757
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
58-
<WarningLevel>5</WarningLevel>
58+
<WarningLevel>5</WarningLevel>
5959
</PropertyGroup>
6060

6161
<ItemGroup>
62-
<None Include="..\..\Local\NuGet\LogoDark128x218.png">
63-
<Pack>True</Pack>
64-
<PackagePath>\</PackagePath>
65-
</None>
66-
<None Include="..\..\Local\NuGet\README.md">
67-
<Pack>True</Pack>
68-
<PackagePath>\</PackagePath>
69-
</None>
62+
<None Include="..\..\Local\NuGet\LogoDark128x218.png">
63+
<Pack>True</Pack>
64+
<PackagePath>\</PackagePath>
65+
</None>
66+
<None Include="..\..\Local\NuGet\README.md">
67+
<Pack>True</Pack>
68+
<PackagePath>\</PackagePath>
69+
</None>
7070
</ItemGroup>
7171

7272
<ItemGroup Condition="'$(TargetFramework)'=='net472' Or '$(TargetFramework)'=='netstandard2.0'">
73-
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
74-
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
75-
<PackageReference Include="System.Net.Http" Version="4.3.4" />
73+
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
74+
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
75+
<PackageReference Include="System.Net.Http" Version="4.3.4" />
7676
</ItemGroup>
7777

7878
<ItemGroup>
79-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
79+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
8080
</ItemGroup>
8181

8282
</Project>

0 commit comments

Comments
 (0)