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)
Syntax
声明
Public Overridable Property ToolFileSearchPaths As String
用法
Dim instance As VCProjectEngineObjectClass
Dim value As String
value = instance.ToolFileSearchPaths
instance.ToolFileSearchPaths = value
public virtual string ToolFileSearchPaths { get; set; }
public:
virtual property String^ ToolFileSearchPaths {
String^ get ();
void set (String^ value);
}
public function get ToolFileSearchPaths () : String
public function set ToolFileSearchPaths (value : String)
Property Value
Type: System.String
A semi-colon delimited list of strings containing the paths to tool files.
Implements
VCProjectEngine.ToolFileSearchPaths
Remarks
Tool files contain custom build rules.
Do not instantiate VCProjectEngineObjectClass. Instantiate VCProjectEngineObject instead, as shown below:
Dim Engine As VCProjectEngine
Engine = New VCProjectEngineObject()
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
VCProjectEngineObjectClass Class