From a33730d6c0d98d7e4e4fa86284909d2154c11a6c Mon Sep 17 00:00:00 2001 From: Nate Bross Date: Tue, 9 Jan 2024 13:11:45 -0600 Subject: [PATCH] feat: upgrade to .net 8 (#51) --- .vscode/launch.json | 21 +++++++++++++++++---- SharpFM.App/SharpFM.App.csproj | 16 ++++++++-------- SharpFM.Core/SharpFM.Core.csproj | 2 +- 3 files changed, 26 insertions(+), 13 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7e1172d..d8c1932 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,11 +1,24 @@ { + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", "configurations": [ { - "name": "Launch SharpFM.App", - "type": "dotnet", + "name": ".NET Core Launch (console)", + "type": "coreclr", "request": "launch", - "projectPath": "${workspaceFolder}/SharpFM.App/SharpFM.App.csproj", - "launchConfigurationId": "TargetFramework=;SharpFM.App" + "preLaunchTask": "build", + "program": "${workspaceFolder}/SharpFM.App/bin/Debug/net8.0/win-x64/SharpFM.App.dll", + "args": [], + "cwd": "${workspaceFolder}/SharpFM.App", + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" } ] } \ No newline at end of file diff --git a/SharpFM.App/SharpFM.App.csproj b/SharpFM.App/SharpFM.App.csproj index 6cd0066..4875b03 100644 --- a/SharpFM.App/SharpFM.App.csproj +++ b/SharpFM.App/SharpFM.App.csproj @@ -1,7 +1,7 @@ WinExe - net6.0 + net8.0 enable latest true @@ -26,18 +26,18 @@ - - - - - + + + + + - + - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/SharpFM.Core/SharpFM.Core.csproj b/SharpFM.Core/SharpFM.Core.csproj index 95d8a2a..b856bba 100644 --- a/SharpFM.Core/SharpFM.Core.csproj +++ b/SharpFM.Core/SharpFM.Core.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 latest enable