<<< Project Directory Structure | Index | Assembling and Linking From the Command Line >>> |
By default, Microsoft IDE instructs the linker to generate and embed a .NET manifest into our program.
(Manifest is a text file containing metadata about .NET assemblies, which have nothing to do with MASM Assembler!
Manifest describes the relationship and dependencies between .NET application components, versioning information, scope information, and the security permissions.)
We don't need any manifests in our executable!
To remove the manifest, click
Project menu -> M1 Properties -> Configuration Properties, then
-> Linker -> Manifest File -> Generate Manifest -> No.
-> Manifest Tool -> Input and Output -> Embed Manifest -> No.
Click OK.
Note that there are also Microsoft Macro Assembler property pages at the bottom of the Configuration Properties. Those options we can change later as necessary.
<<< Project Directory Structure | Index | Assembling and Linking From the Command Line >>> |