You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the version of the Orchard Core NuGet packages you use, or the commit hash if you can reproduce this with the source code.
use 2.0.2
To Reproduce
Steps to reproduce the behavior:
create new aliyun sms module use orchardcore.sms 2.0.2
in Startup.cs add new WorkflowsStartup
`
[RequireFeatures("OrchardCore.Workflows")]
public sealed class WorkflowsStartup : StartupBase
{
public override void ConfigureServices(IServiceCollection services)
{
services.AddActivity<AliyunSmsTask, AliyunSmsTaskDisplayDriver>();
}
}
`
4. When the breakpoint is tracked, the inside does not take effect。
services.AddActivity<AliyunSmsTask, AliyunSmsTaskDisplayDriver>();
I don't know what this is? When I put services.AddActivity<AliyunSmsTask, AliyunSmsTaskDisplayDriver>(); on
`
public override void ConfigureServices(IServiceCollection services)
{
Thank you for submitting your first issue, awesome! 🚀 We're thrilled to receive your input. If you haven't completed the template yet, please take a moment to do so. This ensures that we fully understand your feature request or bug report. On what happens next, see the docs.
If you like Orchard Core, please star our repo and join our community channels.
Describe the bug
Orchard Core version
Add the version of the Orchard Core NuGet packages you use, or the commit hash if you can reproduce this with the source code.
use 2.0.2
To Reproduce
Steps to reproduce the behavior:
`
[RequireFeatures("OrchardCore.Workflows")]
public sealed class WorkflowsStartup : StartupBase
{
public override void ConfigureServices(IServiceCollection services)
{
services.AddActivity<AliyunSmsTask, AliyunSmsTaskDisplayDriver>();
}
}
`
4. When the breakpoint is tracked, the inside does not take effect。
services.AddActivity<AliyunSmsTask, AliyunSmsTaskDisplayDriver>();
I don't know what this is? When I put
services.AddActivity<AliyunSmsTask, AliyunSmsTaskDisplayDriver>();
on`
public override void ConfigureServices(IServiceCollection services)
{
}
`
it is ok
Expected behavior
A clear and concise description of what you expected to happen.
Logs and screenshots
If applicable, add log files, browser console logs, and screenshots (or screen recording videos) to help explain your problem.
The text was updated successfully, but these errors were encountered: