Skip to content

Commit

Permalink
Updated dotnet tools (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-driscoll authored Aug 28, 2021
1 parent d3898cf commit 112f240
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 39 deletions.
78 changes: 46 additions & 32 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install GitReleaseManager
uses: gittools/actions/gitreleasemanager/[email protected]
with:
versionSpec: '0.11.x'
versionSpec: '0.12.x'

- name: Use GitVersion
id: gitversion
Expand Down
17 changes: 11 additions & 6 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
}
16 changes: 16 additions & 0 deletions .vscode/tasks.json.old
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit 112f240

Please sign in to comment.