VCProjectEngineObjectClass::ToolFileSearchPaths Property

 

Gets or sets the file path for the tool file locations.

Namespace:   Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

public:
property String^ ToolFileSearchPaths {
	virtual String^ get();
	virtual void set(String^ value);
}

Property Value

Type: System::String^

A semi-colon delimited list of strings containing the paths to tool files.

Tool files contain custom build rules.

Do not instantiate VCProjectEngineObjectClass. Instantiate VCProjectEngineObject instead, as shown below:

Dim Engine As VCProjectEngine
Engine = New VCProjectEngineObject()
Return to top
Show: