Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit b601129

Browse files
committed
Linkable heading
1 parent 1ba40ef commit b601129

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.vscode/tasks.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
{
22
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"command": "dotnet",
6-
"isShellCommand": true,
76
"args": [],
87
"tasks": [
98
{
10-
"taskName": "build",
11-
"args": [ "tests/ServiceStack.OrmLite.Tests"],
12-
"isBuildCommand": true,
13-
"showOutput": "silent",
14-
"problemMatcher": "$msCompile"
9+
"label": "build",
10+
"type": "shell",
11+
"command": "dotnet",
12+
"args": [
13+
"build",
14+
"tests/ServiceStack.OrmLite.Tests"
15+
],
16+
"problemMatcher": "$msCompile",
17+
"group": "build"
1518
}
1619
]
1720
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ The `.Core` packages contains only **.NET Standard 2.0** versions which can be u
6565
- [ServiceStack.OrmLite.MySql.Core](http://nuget.org/List/Packages/ServiceStack.OrmLite.MySql.Core)
6666
- [ServiceStack.OrmLite.Sqlite.Core](http://nuget.org/packages/ServiceStack.OrmLite.Sqlite.Core)
6767

68+
#### Community Providers
69+
6870
Unofficial Releases maintained by ServiceStack Community:
6971

7072
- [ServiceStack.OrmLite.Oracle](http://nuget.org/packages/ServiceStack.OrmLite.Oracle)

0 commit comments

Comments
 (0)