diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b15a1a2 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,34 @@ +{ + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (web)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/ImageResizeWebApp/ImageResizeWebApp/bin/Debug/netcoreapp2.2/ImageResizeWebApp.dll", + "args": [], + "cwd": "${workspaceFolder}/ImageResizeWebApp/ImageResizeWebApp", + "stopAtEntry": false, + "launchBrowser": { + "enabled": true + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..128f149 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,36 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/ImageResizeWebApp/ImageResizeWebApp/ImageResizeWebApp.csproj" + ], + "problemMatcher": "$tsc" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/ImageResizeWebApp/ImageResizeWebApp/ImageResizeWebApp.csproj" + ], + "problemMatcher": "$tsc" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/ImageResizeWebApp/ImageResizeWebApp/ImageResizeWebApp.csproj" + ], + "problemMatcher": "$tsc" + } + ] +} \ No newline at end of file diff --git a/ImageResizeWebApp/ImageResizeWebApp/ImageResizeWebApp.csproj b/ImageResizeWebApp/ImageResizeWebApp/ImageResizeWebApp.csproj index f02d019..488cb95 100644 --- a/ImageResizeWebApp/ImageResizeWebApp/ImageResizeWebApp.csproj +++ b/ImageResizeWebApp/ImageResizeWebApp/ImageResizeWebApp.csproj @@ -1,11 +1,11 @@ - + Exe - netcoreapp2.0 + netcoreapp2.2 true Latest $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; @@ -14,20 +14,24 @@ exe + 2b2f86ba-c753-4100-87a7-5fa3b826c745 - - - - - - - - - - - + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + +