0

I have a project that is mainly Java, but also uses some C, which is built into a DLL, using ant for the whole build. I want to add versioning, so that the same version is embedded in the jar files, and also in the dll files. For the jars it was simple, but how can I do this for the dlls?

I know you can embed different resources like a manifest using mt.exe, but I'm not sure how to do this with a version number.

Andrei Vajna II
  • 4,364
  • 5
  • 36
  • 37

1 Answers1

1

Try this: How do I set the version information for an existing .exe, .dll?

Community
  • 1
  • 1
Jeremy Stein
  • 18,264
  • 16
  • 66
  • 81