Is it possible to set the OriginalFilename property for a .Net assembly with Visual Studio?

后端 未结 3 1098
醉梦人生
醉梦人生 2020-12-19 17:42

My understanding (which may well be faulty) is that it is easy to set the OriginalFilename property for a C++ DLL or EXE by including a VERSIONINFO resource file in the Visu

3条回答
  •  北海茫月
    2020-12-19 18:03

    Yes it is possible to set it, -> right-click on the project or assembly name in visual studio -> select properties -> select Application tab -> change the assembly name as you want.

    Please refer the link to view property window, in which assembly name option is there

    After changing the name compile the project,(to verify the change) right click your compiled DLL file and select properties and click on 'Details' tab, in which you can see the 'original filename' is now changed.

提交回复
热议问题