I have created a custom activity with an InArgument like so:
public sealed class MyCodeActivity : CodeActivity{
[Input("Some name")]
[ReferenceEntity("contact")]
[Required]
public InArgument<EntityReference> InputContact{get;set;}
public override Execute(CodeActivityContext executionContext)
{
//do something
}
}
After registering this activity using the plugin registration tool, I created a new workflow and added this activity to the web workflow designer. But when i click “Set Properties” the InArgument does not show up.Am I missing something?
After you have registered workflow activity you need to restart the microsoft CRM dynamics in the IIS and Microsoft CRM asynchronous process service, then if you add it to the workflow changes will be there.