Bari.Core.Tools.ManuallyInstallableExternalTool.ManuallyInstallableExternalTool C# (CSharp) Method

ManuallyInstallableExternalTool() public method

Defines the external tool
public ManuallyInstallableExternalTool ( string name, string defaultInstallLocation, string exeName, Uri manualUri, bool isDotNETProcess, IParameters parameters ) : System
name string Name of the tool
defaultInstallLocation string Default install location where the external tool can be found
exeName string Executable file name
manualUri System.Uri URI where the user can start solving the problem if the tool is missing
isDotNETProcess bool If true the process will be executed with mono when not running on MS CLR
parameters IParameters Application parameters
return System
        public ManuallyInstallableExternalTool(string name, string defaultInstallLocation, string exeName, Uri manualUri, bool isDotNETProcess, IParameters parameters)
            : base(name, parameters)
        {
            this.defaultInstallLocation = defaultInstallLocation;
            this.exeName = exeName;
            this.manualUri = manualUri;
            isDotNetProcess = isDotNETProcess;
        }