Skip to content

Commit 3759302

Browse files
nullable enable (#44) +semver: minor
1 parent fd6ca38 commit 3759302

32 files changed

+229
-240
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"isRoot": true,
44
"tools": {
55
"xmldoc2markdown": {
6-
"version": "3.1.0",
6+
"version": "4.0.0",
77
"commands": [
88
"xmldoc2md"
99
]
1010
},
1111
"dotnet-reportgenerator-globaltool": {
12-
"version": "5.1.24",
12+
"version": "5.3.8",
1313
"commands": [
1414
"reportgenerator"
1515
]

.vscode/extensions.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
22
"recommendations": [
3-
"ms-dotnettools.csharp",
43
"editorconfig.editorconfig",
5-
"k--kato.docomment",
6-
"formulahendry.dotnet-test-explorer",
4+
"ms-dotnettools.csdevkit",
75
"redhat.vscode-yaml"
86
]
97
}

.vscode/launch.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
2-
"omnisharp.enableRoslynAnalyzers": true,
32
"omnisharp.organizeImportsOnFormat": true,
4-
"omnisharp.useModernNet": true,
5-
"yaml.format.singleQuote": true
3+
"yaml.format.singleQuote": true,
4+
"sonarlint.connectedMode.project": {
5+
"connectionId": "charlesdevandiere",
6+
"projectKey": "charlesdevandiere_graphql-query-builder-dotnet"
7+
}
68
}

.vscode/tasks.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

GraphQL.Query.Builder.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Microsoft Visual Studio Solution File, Format Version 12.00
1+
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio Version 17
33
VisualStudioVersion = 17.1.32407.343
44
MinimumVisualStudioVersion = 15.0.26124.0
@@ -27,6 +27,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2727
logo.pdn = logo.pdn
2828
logo.png = logo.png
2929
README.md = README.md
30+
generate-documentation.sh = generate-documentation.sh
3031
EndProjectSection
3132
EndProject
3233
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{E5BDA139-5C76-4260-8FA8-60D306924304}"

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Charles de Vandière
3+
Copyright (c) 2024 Charles de Vandière
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/api/graphql.query.builder.querystringbuilder.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,17 @@ public void Clear()
6767
Formats query param.
6868

6969
Returns:
70-
- String: `"foo"`
71-
- Number: `10`
72-
- Boolean: `true` or `false`
73-
- Enum: `EnumValue`
74-
- DateTime: `"2022-06-15T13:45:30.0000000Z"`
75-
- Key value pair: `foo:"bar"` or `foo:10` ...
76-
- List: `["foo","bar"]` or `[1,2]` ...
77-
- Dictionary: `{foo:"bar",b:10}`
78-
- Object: `{foo:"bar",b:10}`
70+
71+
- **null** - `null`
72+
- **String** - `"foo"`
73+
- **Number** - `10`
74+
- **Boolean** - `true` or `false`
75+
- **Enum** - `EnumValue`
76+
- **DateTime** - `"2024-06-15T13:45:30.0000000Z"`
77+
- **Key value pair** - `foo:"bar"` or `foo:10` ...
78+
- **List** - `["foo","bar"]` or `[1,2]` ...
79+
- **Dictionary** - `{foo:"bar",b:10}`
80+
- **Object** - `{foo:"bar",b:10}`
7981

8082
```csharp
8183
protected internal string FormatQueryParam(object value)

generate-documentation.bash

Lines changed: 0 additions & 5 deletions
This file was deleted.

generate-documentation.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
dotnet tool restore
3-
dotnet build .\src\GraphQL.Query.Builder\GraphQL.Query.Builder.csproj -c Release
4-
dotnet tool run xmldoc2md .\src\GraphQL.Query.Builder\bin\Release\netstandard2.0\GraphQL.Query.Builder.dll .\docs\api --github-pages --back-button
3+
dotnet build .\src\GraphQL.Query.Builder\GraphQL.Query.Builder.csproj -c Release -o out\
4+
dotnet tool run xmldoc2md .\out\GraphQL.Query.Builder.dll .\docs\api --github-pages --back-button

0 commit comments

Comments
 (0)