Xarzu Posted January 15, 2008 Share Posted January 15, 2008 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? Link to comment Share on other sites More sharing options...
@\NightandtheShape/@ Posted January 15, 2008 Share Posted January 15, 2008 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 Link to comment Share on other sites More sharing options...
Adam Brennecke Posted January 18, 2008 Share Posted January 18, 2008 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 Link to comment Share on other sites More sharing options...
@\NightandtheShape/@ Posted January 18, 2008 Share Posted January 18, 2008 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 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now