Skip to content

Commit

Permalink
Add dotnet-tools-ci.json manifest and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonGraal committed Jan 11, 2025
1 parent 209f5de commit 8d20694
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .config/dotnet-tools-ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-coverage": {
"version": "17.12.4",
"commands": ["dotnet-coverage"],
"rollForward": false
},
"dotnet-reportgenerator-globaltool": {
"version": "5.3.9",
"commands": ["reportgenerator"],
"rollForward": false
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore tools
run: |
dotnet tool restore
dotnet tool restore --tool-manifest .\.config\dotnet-tools-ci.json
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
1 change: 1 addition & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MD033: false
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"liveServer.settings.port": 5661,
"cSpell.words": ["gqlp"]
"cSpell.words": [
"gqlp",
"Pico"
]
}
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GraphQL+

Defining a successor to GraphQL <img src="images/GraphQL_Logo.svg" width="50">
Defining a successor to GraphQL <img src="images/GraphQL_Logo.svg" width="50" alt="GraphQL Logo">

## Dotnet Parser, Merging Verifier and Modeller

Expand All @@ -15,8 +15,14 @@ Defining a successor to GraphQL <img src="images/GraphQL_Logo.svg" width="50">
- [Verify](https://github.com/VerifyTests/Verify) [fuget](https://www.fuget.org/packages/Verify.Xunit/24.2.0)
- [Fluid](https://github.com/sebastienros/fluid?tab=readme-ov-file#readme) [fuget](https://www.fuget.org/packages/Fluid.Core/2.9.0)

## Dotnet tools

- [Coverage](https://learn.microsoft.com/en-us/dotnet/core/additional-tools/dotnet-coverage) [nuget](https://www.nuget.org/packages/dotnet-coverage)
- [Report Generator](https://github.com/danielpalme/ReportGenerator) [nuget](https://www.nuget.org/packages/dotnet-reportgenerator-globaltool)
- [Live Reload Server](https://github.com/RickStrahl/LiveReloadServer) [nuget](https://www.nuget.org/packages/LiveReloadServer)

### Other references

- [Liquid](https://shopify.github.io/liquid/)
- [PicoCss](https://picocss.com/)
- [Pico Css](https://picocss.com/)
- [Mermaid](https://mermaid.js.org/syntax/flowchart.html)
3 changes: 3 additions & 0 deletions update.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
dotnet outdated .\ -vl minor -u
dotnet outdated .\

dotnet tool update --tool-manifest .\.config\dotnet-tools-ci.json --all
dotnet tool update --all

dotnet tools-outdated

0 comments on commit 8d20694

Please sign in to comment.