diff --git a/.vscode/launch.json b/.vscode/launch.json index 1ba20c25..f1d0eb6d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,9 +10,9 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/MPF/bin/Debug/net6.0-windows/MPF.dll", + "program": "${workspaceFolder}/MPF.Check/bin/Debug/net6.0/MPF.Check.dll", "args": [], - "cwd": "${workspaceFolder}/MPF", + "cwd": "${workspaceFolder}/MPF.Check", // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console "console": "internalConsole", "stopAtEntry": false diff --git a/.vscode/tasks.json b/.vscode/tasks.json index c61b17ef..b7be0ccd 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -3,25 +3,22 @@ "tasks": [ { "label": "build", - "command": "dotnet", + "command": "msbuild", "type": "process", "args": [ - "build", "${workspaceFolder}/MPF.sln", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" + "-property:RuntimeIdentifiers=win7-x64" ], "problemMatcher": "$msCompile" }, { "label": "publish", - "command": "dotnet", + "command": "msbuild", "type": "process", "args": [ - "publish", "${workspaceFolder}/MPF/MPF.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" + "-target:Publish", + "-property:RuntimeIdentifiers=win7-x64" ], "problemMatcher": "$msCompile" }, diff --git a/CHANGELIST.md b/CHANGELIST.md index c0916c50..cfe09605 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -64,6 +64,7 @@ - Add placeholder and TODOs for Redumper - Add TODO with notes to Redumper - Fix 2-layer DVD support in Redumper +- Fix VSCode build ### 2.5 (2023-03-12) diff --git a/MPF.Check/MPF.Check.csproj b/MPF.Check/MPF.Check.csproj index 2c894108..6ee23a22 100644 --- a/MPF.Check/MPF.Check.csproj +++ b/MPF.Check/MPF.Check.csproj @@ -42,6 +42,7 @@ +