The namespace '<global namespace>' already contains a definition for 'Workflow'
Asked Answered
B

3

10

I'm working on a Custom workflow activity. I've created my own helper.cs (Early Bound Entity Classes) with the Code Generation Tool (CrmSvcUtil.exe)

When I try to compile the code, it returns the following error:

The namespace '' already contains a definition for 'Workflow'

From the Helper.cs file.

Does anyone know what this means?

Blackthorn answered 7/3, 2013 at 9:52 Comment(2)
yes, "don't use generic names already taken by CRM". However, Dragos' solution would also work.Retharethink
Try this solution " Restart Omnisharp" #48527894Slacken
K
5

I suggest you put all the early bound classes in a namespace, so it won't mess up with your other classes. You can specify the namespace with the "/namespace:" parameter for CrmSvcUtil. I usually put the early bound classes in my DataAccess namespace, together with the crm connection classes (Service/ServiceContext wrappers).

That being said, naming your custom workflow step "Workflow" is not really the best thing to do (if that's what you did, at least so I understood). Try capturing the essence of what the step does into the name - like a title.

Kendrick answered 7/3, 2013 at 11:5 Comment(2)
I am also having this same issue although i have explicitly specified the namespace but still having this problem. What could be the possible reason in this case?Yeo
And you are 100% positive it's not in the same namespace? What's the conflicting class name?Kendrick
F
5

I had two separate resource files in a same solution. Deleting one of them did the trick :P

Floriculture answered 2/12, 2013 at 6:34 Comment(0)
P
2

Just got this because I thought it would be a great idea to copy all the contents of App_Code into App_Code\bkup before deploying a change. Erm, no.

Pepsin answered 12/4, 2016 at 7:23 Comment(1)
Thanks, this fixed my problem! I guess it doesn't like new folders in certain spots.Hymnology

© 2022 - 2024 — McMap. All rights reserved.