Managed resources
-
Wednesday, January 06, 2010 1:47 PMIn visual studio 2005 when I compile my project cli/c++ project, I use to have a resource file under the $(ConfigurationName)\fr\$(ProjectName).resources.dll. Now with Visual Studio 2010 Beta2 I do not have those resources file anymore. Anyone have a Idea of where or how I could generate them, for translation purpose.
All Replies
-
Wednesday, January 06, 2010 11:02 PM
In VS2010, the resource file name is changed to $(Projectname).<the name of the resource file>.dll, However the Resource Logical name (the name that will be passed to linker /ASSEMBLYRESOURCE switch is still $(ProjectName).Resources.dll unless you change the property Managed Resources -> General -> Resource Logical Name.
Li Shao, MSFT
Li Shao -
Sunday, June 20, 2010 11:04 AM
In VS2010, the resource file name is changed to $(Projectname).<the name of the resource file>.dll, However the Resource Logical name (the name that will be passed to linker /ASSEMBLYRESOURCE switch is still $(ProjectName).Resources.dll unless you change the total property Managed Resources -> General -> Resource Logical Name.
Li Shao, MSFT
Li Shao
Oh, I see. I did change the property as you mentioned. Do you mean I can use both the names ? -
Wednesday, June 23, 2010 2:29 AM
Resource Logical name is used by linker and it is name used for loading the resources. Resource name is the output of the resource name. You can take a look of this MSDN link: http://msdn.microsoft.com/en-us/library/zk4x065k.aspx. Hope this wlll help.
Li Shao, MSFT
Li Shao

