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

Commit 8fb3b93

Browse files
committed
Merge branch 'netcore'
2 parents 363f849 + 89d8bb2 commit 8fb3b93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2097
-272
lines changed

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": ".NET Core Launch (console)",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build",
9+
"program": "${workspaceRoot}/tests/ServiceStack.Text.Tests/bin/Debug/netcoreapp1.0/ServiceStack.Text.Tests.dll",
10+
//"args": ["--test=ServiceStack.Text.Tests.AutoMappingTests.Can_create_Dictionary_default_value"],
11+
"cwd": "${workspaceRoot}",
12+
"stopAtEntry": false,
13+
"externalConsole": false
14+
}
15+
]
16+
}

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"command": "dotnet",
6+
"isShellCommand": true,
7+
"args": [],
8+
"tasks": [
9+
{
10+
"taskName": "build",
11+
"args": [ "tests/ServiceStack.Text.Tests" ],
12+
"isBuildCommand": true,
13+
"showOutput": "silent",
14+
"problemMatcher": "$msCompile"
15+
}
16+
]
17+
}
196 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)