diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 03e64bf..fb72f4e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,16 +1,18 @@ { - "version": "0.1.0", - "command": "dotnet", - "isShellCommand": true, - "args": [], - "tasks": [ - { - "taskName": "build", - "args": [ - "${workspaceRoot}/ElectronNET.CLI/ElectronNET.CLI.csproj" - ], - "isBuildCommand": true, - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file + "version": "2.0.0", + "command": "dotnet", + "args": [], + "tasks": [ + { + "label": "build", + "type": "shell", + "command": "dotnet", + "args": ["build", "${workspaceRoot}/ElectronNET.CLI/ElectronNET.CLI.csproj"], + "problemMatcher": "$msCompile", + "group": { + "_id": "build", + "isDefault": false + } + } + ] +} diff --git a/Changelog.md b/Changelog.md index 3a2349f..a65220b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,22 @@ # Not released +# 23.6.2 + +# Released + +# 23.6.1 + +ElectronNET.CLI: + +* New Feature: Upgrade to .NET 6 support + +ElectronNET.API: + +* New Feature: Native Electron 23.2.0 support, but not all new API features included (we search contributors) +* New Feature: Upgrade to .NET 6 support +* New Feature: Changed Web-Socket .NET Library to [SocketIOClient](https://github.com/doghappy/socket.io-client-csharp) +* Breaking Changes: We removed deprecated API events/methods from ElectronNET.API [(More Details)](https://www.electronjs.org/docs/latest/breaking-changes) + # 13.5.1 ElectronNET.CLI: @@ -25,9 +42,6 @@ ElectronNET.API: * Fixed bug: Fix splash screen interaction causing crashes, ghost dragging, and resizable behavior #540 (thanks [MiniguyBrendan](https://github.com/MiniguyBrendan)) [\#540](https://github.com/ElectronNET/Electron.NET/pull/540) * Fixed bug: Vibrancy serialization fix (thanks [tantumalice](https://github.com/tantumalice)) [\#573](https://github.com/ElectronNET/Electron.NET/pull/573) - -# Released - # 11.5.1 ElectronNET.CLI: