BarRaider / streamdeck-tools

The Stream Deck Tools library wraps all the communication with the Stream Deck app, allowing you to focus on actually writing the Plugin's logic
https://barraider.com
MIT License
470 stars 70 forks source link

No plugin found that matches action #34

Closed IslandJohn closed 3 years ago

IslandJohn commented 3 years ago

I'm getting this error in the pluginlog: https://pastebin.com/GCCJx08p

Everything seems correct, but I'm sure it's something silly. Here's my manifest: https://pastebin.com/CcTbg6wQ

What am I missing here?

BarRaider commented 3 years ago

Do you have the following in your action cs file?

[PluginActionId("net.islandjohn.fsuipc.virtualbutton")]
public class MyPlugin : PluginBase
IslandJohn commented 3 years ago

That annotation is probably what I missed, thanks. I'll close this issue once I verify.