最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Unable to open Azure logic Apps standard in Designer mode in VSCode - Stack Overflow

programmeradmin3浏览0评论

I am unable to open Logic Apps Standard in designer mode in VS Code, I see the following in the output window

"No job functions found. Try making your job classes and methods public. If you're using binding extensions (e.g. Azure Storage, ServiceBus, Timers, etc.) make sure you've called the registration method for the extension(s) in your startup code (e.g. builder.AddAzureStorage(), builder.AddServiceBus(), builder.AddTimers(), etc.)

Followed the steps mentioned in github to resolve but it does not work:

1. Changed the host.json file in workflow-designtime folder
2. changed local.settings.json
3. Added workflow-designtime.csproj

But I still see the same issue

I am unable to open Logic Apps Standard in designer mode in VS Code, I see the following in the output window

"No job functions found. Try making your job classes and methods public. If you're using binding extensions (e.g. Azure Storage, ServiceBus, Timers, etc.) make sure you've called the registration method for the extension(s) in your startup code (e.g. builder.AddAzureStorage(), builder.AddServiceBus(), builder.AddTimers(), etc.)

Followed the steps mentioned in github to resolve but it does not work: https://github.com/Azure/logicapps/issues/655#issuecomment-1286911972

1. Changed the host.json file in workflow-designtime folder
2. changed local.settings.json
3. Added workflow-designtime.csproj

But I still see the same issue

Share Improve this question edited Feb 7 at 15:06 S N G asked Feb 7 at 14:28 S N G S N G 274 bronze badges 1
  • Did you set anything else? – RithwikBojja Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 0

Designer is working for me and below are my settings:

Structure:

host.json :

{
  "version": "2.0",
  "logging": {
    "applicationInsights": {
      "samplingSettings": {
        "isEnabled": true,
        "excludedTypes": "Request"
      }
    }
  },
  "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
    "version": "[1.*, 2.0.0)"
  }
}

local.settings.json:

{
  "IsEncrypted": false,
  "Values": {
    "AzureWebJobsStorage": "UseDevelopmentStorage=true",
    "APP_KIND": "workflowapp",
    "ProjectDirectoryPath": "c:\\Users\\rithwik\\Desktop\\VSF\\New folder (4)",
    "FUNCTIONS_WORKER_RUNTIME": "node",
    "WORKFLOWS_SUBSCRIPTION_ID": ""
  }
}

In workflow-designtime:

local.settings.json:

{
  "IsEncrypted": false,
  "Values": {
    "APP_KIND": "workflowapp",
    "FUNCTIONS_WORKER_RUNTIME": "node",
    "ProjectDirectoryPath": "c:\\Users\\rithwik\\Desktop\\VSF\\New folder (4)",
    "AzureWebJobsSecretStorageType": "Files"
  }
}

Make sure to use above settings and also update function core tools and logic apps extension to make it work, as it works for me.

发布评论

评论列表(0)

  1. 暂无评论