Skip to content

Commit 55b0c46

Browse files
committed
upgrade to 2.5.1
1 parent dea892d commit 55b0c46

File tree

3 files changed

+61
-1
lines changed

3 files changed

+61
-1
lines changed

.vscode/launch.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": ".NET Core Launch (web)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
"program": "${workspaceFolder}/TodoListAPI/bin/Debug/netcoreapp2.0/TodoListAPI.dll",
13+
"args": [],
14+
"cwd": "${workspaceFolder}/TodoListAPI",
15+
"stopAtEntry": false,
16+
"internalConsoleOptions": "openOnSessionStart",
17+
"launchBrowser": {
18+
"enabled": true,
19+
"args": "${auto-detect-url}",
20+
"windows": {
21+
"command": "cmd.exe",
22+
"args": "/C start ${auto-detect-url}"
23+
},
24+
"osx": {
25+
"command": "open"
26+
},
27+
"linux": {
28+
"command": "xdg-open"
29+
}
30+
},
31+
"env": {
32+
"ASPNETCORE_ENVIRONMENT": "Development"
33+
},
34+
"sourceFileMap": {
35+
"/Views": "${workspaceFolder}/Views"
36+
}
37+
},
38+
{
39+
"name": ".NET Core Attach",
40+
"type": "coreclr",
41+
"request": "attach",
42+
"processId": "${command:pickProcess}"
43+
}
44+
]
45+
}

.vscode/tasks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/TodoListAPI/TodoListAPI.csproj"
11+
],
12+
"problemMatcher": "$msCompile"
13+
}
14+
]
15+
}

TodoListAPI/TodoListAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ItemGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="JsonApiDotNetCore" Version="2.5.0" />
12+
<PackageReference Include="JsonApiDotNetCore" Version="2.5.1" />
1313
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.0" />
1414
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.1.0" />
1515

0 commit comments

Comments
 (0)