Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Commit 57050a8

Browse files
committed
Upgrade tasks version; incl MSTest SDK in tests
1 parent 66a6c6e commit 57050a8

3 files changed

Lines changed: 27 additions & 24 deletions

File tree

.vscode/launch.json

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

.vscode/tasks.json

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,35 @@
11
{
22
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
5-
"command": "dotnet",
6-
"isShellCommand": true,
7-
"args": [],
4+
"version": "2.0.0",
85
"tasks": [
96
{
10-
"taskName": "build",
11-
"args": [ "AMT.LinqExtensions" ],
12-
"isBuildCommand": true,
13-
"showOutput": "silent",
7+
"label": "build",
8+
"command": "dotnet",
9+
"type": "shell",
10+
"args": [
11+
"build",
12+
"/property:GenerateFullPaths=true",
13+
"/consoleloggerparameters:NoSummary"
14+
],
15+
"group": "build",
16+
"presentation": {
17+
"reveal": "silent"
18+
},
1419
"problemMatcher": "$msCompile"
20+
},
21+
{
22+
"label": "test",
23+
"command": "dotnet",
24+
"type": "shell",
25+
"args": [
26+
"test"
27+
],
28+
"group": {
29+
"kind": "test",
30+
"isDefault": true
31+
},
32+
"problemMatcher": []
1533
}
1634
]
1735
}

test/test.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
</ItemGroup>
2525

2626
<ItemGroup>
27+
<PackageReference Include="Microsoft.NET.Test.SDK" Version="16.*" />
2728
<PackageReference Include="xunit.runner.visualstudio" Version="*" />
2829
<PackageReference Include="xunit" Version="*" />
2930
<PackageReference Include="FluentAssertions" Version="*" />

0 commit comments

Comments
 (0)