January 15, 200818 yr Does anyone know how to declare Manifest Files in the Visual Studio IDE for C#? I followed the steps outlined here for including a manifest file: http://support.microsoft.com/kb/944276 Does it matter if the manifest file is in the directory where the source code is or should it be in the directory where the executable code is?
January 15, 200818 yr Not that I can see why you'd want a manifest file ahem... You need to have it in your bin folder... Also depends upon your build type, but you can just force the file to copy by adding it to the solution and modifying the properties of the object. That's if my memory serve me correctly! "I'm a programmer at a games company... REET GOOD!" - Me
January 18, 200818 yr You can compile the manifest into the executable as a resource (the resource ID is recommended to be 1), or you can have it in the same directory as the executable. -Brennecke Follow me on twitter - @adam_brennecke
January 18, 200818 yr You can compile the manifest into the executable as a resource (the resource ID is recommended to be 1), or you can have it in the same directory as the executable. -Brennecke OOO Didn't know you could bang it in with the exe... :D learn something new everyday. "I'm a programmer at a games company... REET GOOD!" - Me
Create an account or sign in to comment