From 7a14014b629e4a912abbc7dedb3133859f2ccfc6 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Mon, 15 Mar 2021 12:59:08 +1100 Subject: [PATCH 1/3] Update property specification docs This PR has a sibling PR in CPS that makes this API change, so that link action handlers have access to the project context in which they are invoked. --- docs/repo/property-pages/property-specification.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/repo/property-pages/property-specification.md b/docs/repo/property-pages/property-specification.md index 2fb775e8599..f80f10cc32b 100644 --- a/docs/repo/property-pages/property-specification.md +++ b/docs/repo/property-pages/property-specification.md @@ -226,7 +226,7 @@ The click handler is exported via: [ExportMetadata("CommandName", "MyCommandName")] internal sealed class MyCommandActionHandler : ILinkActionHandler { - public void Handle(IReadOnlyDictionary editorMetadata) + public void Handle(ProjectContext projectContext, IReadOnlyDictionary editorMetadata) { // Handle command invocation } From 8d8b2d03594f27ee9c1f4973b78605ee991ab628 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 19 Mar 2021 21:54:48 +1100 Subject: [PATCH 2/3] Allow opening Launch Profiles from the Debug page Reinstates the "Debug" page with a single link action that invokes the `OpenLaunchProfilesEditor` command in CPS to open the launch profile editor window. --- .../OpenLaunchProfilesEditorValueProvider.cs | 9 ++++++++ .../PropertyPages/DebugPropertyPage.xaml | 21 ++++++++++++------- .../xlf/DebugPropertyPage.xaml.cs.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.de.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.es.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.fr.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.it.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.ja.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.ko.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.pl.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.pt-BR.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.ru.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.tr.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.zh-Hans.xlf | 9 ++++++-- .../xlf/DebugPropertyPage.xaml.zh-Hant.xlf | 9 ++++++-- 15 files changed, 114 insertions(+), 33 deletions(-) create mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Properties/InterceptedProjectProperties/DebugPropertyPage/OpenLaunchProfilesEditorValueProvider.cs diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Properties/InterceptedProjectProperties/DebugPropertyPage/OpenLaunchProfilesEditorValueProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Properties/InterceptedProjectProperties/DebugPropertyPage/OpenLaunchProfilesEditorValueProvider.cs new file mode 100644 index 00000000000..b1df7597192 --- /dev/null +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Properties/InterceptedProjectProperties/DebugPropertyPage/OpenLaunchProfilesEditorValueProvider.cs @@ -0,0 +1,9 @@ +// Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information. + +namespace Microsoft.VisualStudio.ProjectSystem.Properties +{ + [ExportInterceptingPropertyValueProvider("OpenLaunchProfilesEditor", ExportInterceptingPropertyValueProviderFile.ProjectFile)] + internal sealed class OpenLaunchProfilesEditorValueProvider : NoOpInterceptingPropertyValueProvider + { + } +} diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml index 35b2bc89b2a..786047bf9fe 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml @@ -10,22 +10,29 @@ xmlns="http://schemas.microsoft.com/build/2009/properties"> - - - - + Description="The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below."> + + + + + + + + + + + diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf index 4b5efb93368..ae0d91b53d6 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf index 9738944d2b3..3ace4235b44 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf index 1ed673bf8b7..9ea469bbc0b 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf index fec84ae1f2d..f4176a855bf 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf index 2d8c7d2485b..2bd209e7c89 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf index 5068622f42e..a7362d8f663 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf index 6da3b17ee57..ca12df01ba9 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf index 12bc7c67fb3..ed11bf01573 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf index decf3b45cd2..fbe2ce2134c 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf index 71565d4b81b..1a32780b762 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf index 1e3da6fd622..a978515b9e0 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf index 536e5ac467e..f6285ac065c 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf index 8ef5e3243ee..4e873074477 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf @@ -13,8 +13,8 @@ - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. - The new Project Properties UI is under development, and the ability to edit launch profiles has not yet been completed. Please either edit the launchProfiles.json file manually, or revert to the previous Property Pages as described in the banner at the top of this page. We will be adding this feature very soon. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. @@ -22,6 +22,11 @@ Ignored + + Open debug launch profiles UI + Open debug launch profiles UI + + \ No newline at end of file From 07a2797067225fc495f67bcd5a3da0e211eea0a0 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 2 Apr 2021 08:55:33 +1100 Subject: [PATCH 3/3] Remove incorrect explanatory text The new launch profile editor has not yet been integrated into the parts of VS that this text suggested was the case. Remove the suggestion for now. We can re-add it once that integration occurs. --- .../ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml | 2 +- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf | 4 ++-- .../Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf | 4 ++-- .../PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf | 4 ++-- .../PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf | 4 ++-- 14 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml index 786047bf9fe..b84fcd25f1e 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/DebugPropertyPage.xaml @@ -17,7 +17,7 @@ + Description="The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below."> diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf index ae0d91b53d6..a62fb3b6255 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.cs.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf index 3ace4235b44..8cc8263b92a 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.de.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf index 9ea469bbc0b..2f67ddc4408 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.es.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf index f4176a855bf..b40e45c791f 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.fr.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf index 2bd209e7c89..9693cc902bc 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.it.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf index a7362d8f663..ad7a95480a8 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ja.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf index ca12df01ba9..e7fcdfe2d6e 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ko.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf index ed11bf01573..37f1eb0974c 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pl.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf index fbe2ce2134c..d5737738f55 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.pt-BR.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf index 1a32780b762..93a7ccce099 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.ru.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf index a978515b9e0..6756ca642f6 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.tr.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf index f6285ac065c..54bebb4bd2d 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hans.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf index 4e873074477..d03f4c17734 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/PropertyPages/xlf/DebugPropertyPage.xaml.zh-Hant.xlf @@ -13,8 +13,8 @@ - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. - The management of launch profiles has moved to a dedicated dialog. It may be accessed directly from the Debug menu, or via the Start button the tool bar. Alternatively, click the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below. + The management of launch profiles has moved to a dedicated dialog. It may be accessed via the link below.