Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 Visual Studio build.

But I can't find any way of setting OriginalFilename for a C# build. It is apparently always set to the name of the output file being built.

I'd really like to be able to specify this if possible. Any ideas? Thanks.

share|improve this question

1 Answer

OK, no answers, and now I've found a workaround.

This article here at StackOverflow was very helpful: How do I set the version information for an existing .exe, .dll?

Which led me to this resource manipulation project written in C#: http://resourcelib.codeplex.com/

So what I'm going to do is to modify the DLLs after they've been built.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.