SubscribeAttribute should only be used on method with the MessageHandler signature.
using DefaultEcs;
namespace DummyNamespace
{
class DummyClass
{
[Subscribe]
bool DummyMethod() => true;
}
}
Remove SubscribeAttribute from the method or change the method signature.