How can I send a BlockKit attachment from a Bot Framework Composer Bot using the C# slack-adapter?
I'm trying to use this in the .lg but the only message that gets to the slack client is: Value cannot be null. (Parameter 'uriString')
# SendSlackResponse()
[Activity
Attachments = ${json(SlackMessage())}
]
# SlackMessage()
- ```
{
"type": "application/json",
"name": "blocks",
"content": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Hello, Assistant to the Regional Manager Dwight! *Michael Scott* wants to know where yo``u'd like to take the Paper Company investors to dinner tonight.\n\n *Please select a restaurant:*"
}
}
]
}
```