ClientBuildManagerParameter Constructor

Definition

Initializes a new instance of the ClientBuildManagerParameter class.

public:
 ClientBuildManagerParameter();
public ClientBuildManagerParameter ();
Public Sub New ()

Examples

The following code example is part of a code example found in the ClientBuildManager class overview. In the example, a ClientBuildManagerParameter object is created and its values set. The resulting assembly will have a strong name based on the provided key file and will precompile according to the provided PrecompilationFlags values.

_cbmParameter = new ClientBuildManagerParameter();
_cbmParameter.PrecompilationFlags = _flags;
_cbmParameter.StrongNameKeyFile = _keyFile;

builder = new
        ClientBuildManager(_vPath, _pPath, _tPath, _cbmParameter);
_cbmParameter = New ClientBuildManagerParameter()
_cbmParameter.PrecompilationFlags = _flags
_cbmParameter.StrongNameKeyFile = _keyFile

builder = New ClientBuildManager(_vPath, _pPath, _tPath, _cbmParameter)

Remarks

This constructor does not initialize any property values. Those values must be set through the StrongNameKeyContainer, StrongNameKeyFile, and PrecompilationFlags properties after the object has been created.

Applies to