C# Class PeVerifyRunner, Patchwork

A helper class used to execute and provide PEVerify-related services.
Datei anzeigen Open project: GregRos/Patchwork Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
RunPeVerify ( AssemblyDefinition targetAssembly, PEVerifyInput input ) : PEVerifyOutput,

Executes the bundled PEVerify executable on the specified assembly by first serializing it to file. PEVerify is an unmanaged, Windows-only application.

Method Details

RunPeVerify() public static method

Executes the bundled PEVerify executable on the specified assembly by first serializing it to file. PEVerify is an unmanaged, Windows-only application.
public static RunPeVerify ( AssemblyDefinition targetAssembly, PEVerifyInput input ) : PEVerifyOutput,
targetAssembly AssemblyDefinition The assembly on which to run PEVerify.
input PEVerifyInput The arguments with which to run PEVerify and process its output.
return PEVerifyOutput,