This repository was archived by the owner on Mar 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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 =" *" />
You can’t perform that action at this time.
0 commit comments