|
-
January 30th, 2007, 11:21 PM
#1
Manifest file in VS2005
Hi All,
I has just finished the conversion of a VC6 project to VS2005, I would like to know which is the goal of a file manifest.
Can I disable this file without problems?
Thanks in advance
-
January 31st, 2007, 12:47 AM
#2
Re: Manifest file in VS2005
Select [Project] - [Properties...] - [Configuration Properties] - [Linker] - [Manifest File], set [Generate Manifest] to No.
Best Api Monitor tool.
Trace the target program automatically and monitor the parameters of all API and COM interfaces.
Auto Debug for Windows 4.0
Auto Debug for .Net
http://www.autodebug.com/
-
January 31st, 2007, 01:03 AM
#3
Re: Manifest file in VS2005
The manifest contains all the metadata that describes an assembly and its modules. The following is the information contained in the manifest file.
Contents
contains information about the external types and resources exposed by the assembly in two metadata tables: ExportedType and ManifestResource.
Custom attributes
contained in the CustomAttribute metadata table, this has information that compilers use.
Dependencies
contained in three metadata tables: AssemblyRef, File and ModuleRef
Assemblies referenced by this assembly
Modules contained within this assembly
Identity
contains the following information about the assembly in two metadata tables: Module and Assembly
Name
Version number
Culture (optional) if the assembly contains localized resources
Language
Processor architecture
Public key (optional) if the assembly is strongly named
Type
Requested permissions
contains information about the permissions for the assembly. If specific permissions exist for classes and methods within the assembly, this information is also contained here, in the metadata table DeclSecurity.
-
January 31st, 2007, 02:08 AM
#4
Re: Manifest file in VS2005
 Originally Posted by albastroiu
Hi All,
I has just finished the conversion of a VC6 project to VS2005, I would like to know which is the goal of a file manifest.
Can I disable this file without problems?
Thanks in advance
Here is an FAQ about manifests.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|