Skip to content

Commit 112f240

Browse files
Updated dotnet tools (#646)
1 parent d3898cf commit 112f240

File tree

4 files changed

+74
-39
lines changed

4 files changed

+74
-39
lines changed

Diff for: .config/dotnet-tools.json

+46-32
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,48 @@
11
{
2-
"version": 1,
3-
"isRoot": true,
4-
"tools": {
5-
"cake.tool": {
6-
"version": "0.38.4",
7-
"commands": ["dotnet-cake"]
8-
},
9-
"gitversion.tool": {
10-
"version": "5.3.7",
11-
"commands": ["dotnet-gitversion"]
12-
},
13-
"dotnet-reportgenerator-globaltool": {
14-
"version": "4.6.4",
15-
"commands": ["reportgenerator"]
16-
},
17-
"codecov.tool": {
18-
"version": "1.12.1",
19-
"commands": ["codecov"]
20-
},
21-
"nuke.globaltool": {
22-
"version": "0.24.11",
23-
"commands": ["nuke"]
24-
},
25-
"nukeeper": {
26-
"version": "0.33.0",
27-
"commands": ["nukeeper"]
28-
},
29-
"jetbrains.resharper.globaltools": {
30-
"version": "2020.2.0-eap09",
31-
"commands": ["jb"]
32-
}
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"cake.tool": {
6+
"version": "1.1.0",
7+
"commands": [
8+
"dotnet-cake"
9+
]
10+
},
11+
"gitversion.tool": {
12+
"version": "5.7.0",
13+
"commands": [
14+
"dotnet-gitversion"
15+
]
16+
},
17+
"dotnet-reportgenerator-globaltool": {
18+
"version": "4.8.12",
19+
"commands": [
20+
"reportgenerator"
21+
]
22+
},
23+
"codecov.tool": {
24+
"version": "1.13.0",
25+
"commands": [
26+
"codecov"
27+
]
28+
},
29+
"nuke.globaltool": {
30+
"version": "5.3.0",
31+
"commands": [
32+
"nuke"
33+
]
34+
},
35+
"nukeeper": {
36+
"version": "0.34.0",
37+
"commands": [
38+
"nukeeper"
39+
]
40+
},
41+
"jetbrains.resharper.globaltools": {
42+
"version": "2021.2.1",
43+
"commands": [
44+
"jb"
45+
]
3346
}
34-
}
47+
}
48+
}

Diff for: .github/workflows/draft-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install GitReleaseManager
2626
uses: gittools/actions/gitreleasemanager/[email protected]
2727
with:
28-
versionSpec: '0.11.x'
28+
versionSpec: '0.12.x'
2929

3030
- name: Use GitVersion
3131
id: gitversion

Diff for: .vscode/tasks.json

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
2-
"version": "0.1.0",
2+
"version": "2.0.0",
33
"command": "dotnet",
4-
"isShellCommand": true,
54
"args": [],
65
"tasks": [
76
{
8-
"taskName": "build",
7+
"label": "build",
8+
"type": "shell",
9+
"command": "dotnet",
910
"args": [
11+
"build",
1012
"${workspaceRoot}/sample/SampleServer/SampleServer.csproj"
1113
],
12-
"isBuildCommand": true,
13-
"problemMatcher": "$msCompile"
14+
"problemMatcher": "$msCompile",
15+
"group": {
16+
"_id": "build",
17+
"isDefault": false
18+
}
1419
}
1520
]
16-
}
21+
}

Diff for: .vscode/tasks.json.old

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.1.0",
3+
"command": "dotnet",
4+
"isShellCommand": true,
5+
"args": [],
6+
"tasks": [
7+
{
8+
"taskName": "build",
9+
"args": [
10+
"${workspaceRoot}/sample/SampleServer/SampleServer.csproj"
11+
],
12+
"isBuildCommand": true,
13+
"problemMatcher": "$msCompile"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)