forked from microsoft/PowerToys
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
microsoft#15247 Powertoys Run | VSCodeWorkspaces- add support for vsc…
…ode 1.64 new workspace.json file
- Loading branch information
1 parent
167ec5a
commit 6fad85d
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...nity.PowerToys.Run.Plugin.VSCodeWorkspaces/WorkspacesHelper/VSCodeStorageWorkspaceFile.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) Microsoft Corporation | ||
// The Microsoft Corporation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System.Collections.Generic; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Community.PowerToys.Run.Plugin.VSCodeWorkspaces.WorkspacesHelper | ||
{ | ||
// v1.64 uses AppData\Roaming\Code\Backups\workspaces | ||
public class VSCodeStorageWorkspaceFile | ||
{ | ||
[JsonPropertyName("folderWorkspaceInfos")] | ||
public List<VSCodeWorkspaceEntry> FolderWorkspaceInfos { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters