views:

34

answers:

1

In c# default behaviour of embedded resorce name is like this

<default namespace.><extended namespace.><filename>

Without changing the defaultname space of project can i control the name of embedded resource?

+1  A: 

The way to do this is quite simple, but you will have to edit the Visual Studio Project (csproj or vbproj) file in a text editor. See this msdn blog post.

Justin Dearing
thanks worked like charm!
Kuldip Saini