File tree Expand file tree Collapse file tree 3 files changed +61
-1
lines changed
Expand file tree Collapse file tree 3 files changed +61
-1
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments