Hello,
I have used ILMerge tool to merge the multiple dlls into one. The dlls were merged successfully and the out file was also dll.
But when i am using this dll with other application, it is giving me error with Resources.
The resources are there in same assembly, with build action None.
Like :
The resource file is Expression.xml in Resources folder with build action None.
Then after merging the dlls, with new dll I am getting exception with the line
TextReader reader = new StringReader(Pr operties.Resour ces.Expression) ;
So the application is not able to find the resource Expression, but if I check the dll in the Reflector, the resource is there.
Can anyone tell me what to do with this problem?
Regards
Abhishek
I have used ILMerge tool to merge the multiple dlls into one. The dlls were merged successfully and the out file was also dll.
But when i am using this dll with other application, it is giving me error with Resources.
The resources are there in same assembly, with build action None.
Like :
The resource file is Expression.xml in Resources folder with build action None.
Then after merging the dlls, with new dll I am getting exception with the line
TextReader reader = new StringReader(Pr operties.Resour ces.Expression) ;
So the application is not able to find the resource Expression, but if I check the dll in the Reflector, the resource is there.
Can anyone tell me what to do with this problem?
Regards
Abhishek
Comment