ExecuteDotnet() public method

public ExecuteDotnet ( string arguments, string workDir, string>.IDictionary environmentVariables = null ) : Process
arguments string
workDir string
environmentVariables string>.IDictionary
return System.Diagnostics.Process
Ejemplo n.º 1
0
        protected void RunDotNetWatch(string arguments, string workingFolder)
        {
            IDictionary <string, string> envVariables = null;

            if (UsePollingWatcher)
            {
                envVariables = new Dictionary <string, string>()
                {
                    ["DOTNET_USE_POLLING_FILE_WATCHER"] = "true"
                };
            }

            WatcherProcess = _scenario.ExecuteDotnet("watch " + arguments, workingFolder, envVariables);
        }