From 112f24001e9d7c7929c60fd92dcaa3ca2025ba1e Mon Sep 17 00:00:00 2001 From: David Driscoll Date: Sat, 28 Aug 2021 10:54:02 -0400 Subject: [PATCH] Updated dotnet tools (#646) --- .config/dotnet-tools.json | 78 +++++++++++++++++------------ .github/workflows/draft-release.yml | 2 +- .vscode/tasks.json | 17 ++++--- .vscode/tasks.json.old | 16 ++++++ 4 files changed, 74 insertions(+), 39 deletions(-) create mode 100644 .vscode/tasks.json.old diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 23dd823b5..19029998d 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -1,34 +1,48 @@ { - "version": 1, - "isRoot": true, - "tools": { - "cake.tool": { - "version": "0.38.4", - "commands": ["dotnet-cake"] - }, - "gitversion.tool": { - "version": "5.3.7", - "commands": ["dotnet-gitversion"] - }, - "dotnet-reportgenerator-globaltool": { - "version": "4.6.4", - "commands": ["reportgenerator"] - }, - "codecov.tool": { - "version": "1.12.1", - "commands": ["codecov"] - }, - "nuke.globaltool": { - "version": "0.24.11", - "commands": ["nuke"] - }, - "nukeeper": { - "version": "0.33.0", - "commands": ["nukeeper"] - }, - "jetbrains.resharper.globaltools": { - "version": "2020.2.0-eap09", - "commands": ["jb"] - } + "version": 1, + "isRoot": true, + "tools": { + "cake.tool": { + "version": "1.1.0", + "commands": [ + "dotnet-cake" + ] + }, + "gitversion.tool": { + "version": "5.7.0", + "commands": [ + "dotnet-gitversion" + ] + }, + "dotnet-reportgenerator-globaltool": { + "version": "4.8.12", + "commands": [ + "reportgenerator" + ] + }, + "codecov.tool": { + "version": "1.13.0", + "commands": [ + "codecov" + ] + }, + "nuke.globaltool": { + "version": "5.3.0", + "commands": [ + "nuke" + ] + }, + "nukeeper": { + "version": "0.34.0", + "commands": [ + "nukeeper" + ] + }, + "jetbrains.resharper.globaltools": { + "version": "2021.2.1", + "commands": [ + "jb" + ] } -} + } +} \ No newline at end of file diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index bf4430144..315e6f01b 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -25,7 +25,7 @@ jobs: - name: Install GitReleaseManager uses: gittools/actions/gitreleasemanager/setup@v0.9.10 with: - versionSpec: '0.11.x' + versionSpec: '0.12.x' - name: Use GitVersion id: gitversion diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 24a22a8c6..7b49a73a6 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,16 +1,21 @@ { - "version": "0.1.0", + "version": "2.0.0", "command": "dotnet", - "isShellCommand": true, "args": [], "tasks": [ { - "taskName": "build", + "label": "build", + "type": "shell", + "command": "dotnet", "args": [ + "build", "${workspaceRoot}/sample/SampleServer/SampleServer.csproj" ], - "isBuildCommand": true, - "problemMatcher": "$msCompile" + "problemMatcher": "$msCompile", + "group": { + "_id": "build", + "isDefault": false + } } ] -} \ No newline at end of file +} diff --git a/.vscode/tasks.json.old b/.vscode/tasks.json.old new file mode 100644 index 000000000..24a22a8c6 --- /dev/null +++ b/.vscode/tasks.json.old @@ -0,0 +1,16 @@ +{ + "version": "0.1.0", + "command": "dotnet", + "isShellCommand": true, + "args": [], + "tasks": [ + { + "taskName": "build", + "args": [ + "${workspaceRoot}/sample/SampleServer/SampleServer.csproj" + ], + "isBuildCommand": true, + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file