Note: Forums will be making significant UX changes to address key usability improvements surrounding search, discoverability and navigation. To learn more about these changes please visit the announcement which can be found HERE.

Locked Managed resources

  • Wednesday, January 06, 2010 1:47 PM
     
     
    In 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