CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2006
    Posts
    78

    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

  2. #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/

  3. #3
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    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.

  4. #4
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: Manifest file in VS2005

    Quote 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.
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured