I have created the workflow solution in development. I need to pass the stage GUID's as arguments to the workflow. I added that into COnfigurationManager.appsettings but getting error as
Error 1 Could not create activity of type 'EngWorkflowSolution.Workflow1.Workflow1'. System.ArgumentNullException: Value cannot be null.
Parameter name: g
at System.Guid..ctor(String g)
at EngWorkflowSolution.Workflow1.Workflow1..ctor() C:\Project Server Workflow\EngWorkflowSolution\EngWorkflowSolution 1 1
Do I need to add these values in Microsoft.Office.Project.Server.Queuing.exe.config file. If yes, how can I do it?
In web.config file I added as
<add key="InitiationStageUid" value="24427350-81f5-4fe3-97d9-f72a4aecfbb2" />
In workflow solution I added it as
public Guid InitiationStageUid = new Guid(System.Configuration.ConfigurationManager.AppSettings["InitiationStageUid"]);
Else is there any other way to create workflow solution package environment free?
Right now I have to create the workflow solution package for each environment with respective GUIDs.