diff --git a/PluginsAndFeatures/azure-toolkit-for-intellij/resources/META-INF/platformPlugin.xml b/PluginsAndFeatures/azure-toolkit-for-intellij/resources/META-INF/platformPlugin.xml index f28f0e4e62..7b34236b9c 100644 --- a/PluginsAndFeatures/azure-toolkit-for-intellij/resources/META-INF/platformPlugin.xml +++ b/PluginsAndFeatures/azure-toolkit-for-intellij/resources/META-INF/platformPlugin.xml @@ -14,6 +14,7 @@
  • Azure Functions debugging support on Apple Silicon / M1 / Rosetta #526
  • Extend web app/function app publishing timeout #530 / RIDER-68824
  • Publishing web app does not set correct runtime version in Azure App Service #535
  • +
  • Azure gutter mark shouldn't be overlapped with formatting options or hammer icons #545 / RIDER-70842
  • ]]> diff --git a/PluginsAndFeatures/azure-toolkit-for-intellij/rider/ReSharper.Azure/src/Azure.Daemon/RunMarkers/FunctionAppRunMarkerGutterMark.cs b/PluginsAndFeatures/azure-toolkit-for-intellij/rider/ReSharper.Azure/src/Azure.Daemon/RunMarkers/FunctionAppRunMarkerGutterMark.cs index 8cd3bd546d..8abc4ee8bd 100644 --- a/PluginsAndFeatures/azure-toolkit-for-intellij/rider/ReSharper.Azure/src/Azure.Daemon/RunMarkers/FunctionAppRunMarkerGutterMark.cs +++ b/PluginsAndFeatures/azure-toolkit-for-intellij/rider/ReSharper.Azure/src/Azure.Daemon/RunMarkers/FunctionAppRunMarkerGutterMark.cs @@ -80,19 +80,19 @@ private IEnumerable GetRunMethodItems(ISolution solution, new ExecutableItem(() => { functionAppDaemonHost.RunFunctionApp(methodName, functionName, projectFilePath); }), new RichText(javaPropertiesLoader.GetLocalizedString("gutter.function_app.run", functionName)), RunMarkersThemedIcons.RunThis.Id, - BulbMenuAnchors.PermanentBackgroundItems); + BulbMenuAnchors.PermanentItem); yield return new BulbMenuItem( new ExecutableItem(() => { functionAppDaemonHost.DebugFunctionApp(methodName, functionName, projectFilePath); }), new RichText(javaPropertiesLoader.GetLocalizedString("gutter.function_app.debug", functionName)), RunMarkersThemedIcons.DebugThis.Id, - BulbMenuAnchors.PermanentBackgroundItems); + BulbMenuAnchors.PermanentItem); yield return new BulbMenuItem( new ExecutableItem(() => { functionAppDaemonHost.TriggerFunctionApp(methodName, functionName, projectFilePath); }), new RichText(javaPropertiesLoader.GetLocalizedString("gutter.function_app.trigger", functionName)), FunctionAppRunMarkersThemedIcons.Trigger.Id, - BulbMenuAnchors.PermanentBackgroundItems); + BulbMenuAnchors.PermanentItem); } } diff --git a/PluginsAndFeatures/azure-toolkit-for-intellij/rider/resources/META-INF/plugin.xml b/PluginsAndFeatures/azure-toolkit-for-intellij/rider/resources/META-INF/plugin.xml index ac3096ac5e..0777ddfbb3 100644 --- a/PluginsAndFeatures/azure-toolkit-for-intellij/rider/resources/META-INF/plugin.xml +++ b/PluginsAndFeatures/azure-toolkit-for-intellij/rider/resources/META-INF/plugin.xml @@ -33,6 +33,7 @@
  • Azure Functions debugging support on Apple Silicon / M1 / Rosetta #526
  • Extend web app/function app publishing timeout #530 / RIDER-68824
  • Publishing web app does not set correct runtime version in Azure App Service #535
  • +
  • Azure gutter mark shouldn't be overlapped with formatting options or hammer icons #545 / RIDER-70842
  • [3.50.1-2021.2]