2 instantiations of ProcessExecutionResult
Microsoft.DotNet.Build.Tasks.Feed (1)
src\common\GeneralUtils.cs (1)
329return new ProcessExecutionResult()
Microsoft.DotNet.Build.Tasks.Feed.Tests (1)
PublishArtifactsInManifestTests.cs (1)
124ProcessExecutionResult result = new ProcessExecutionResult() { StandardError = "fake stderr", StandardOut = "fake stdout" };
5 references to ProcessExecutionResult
Microsoft.DotNet.Build.Tasks.Feed (3)
src\common\GeneralUtils.cs (1)
266public static async Task<ProcessExecutionResult> RunProcessAndGetOutputsAsync(string path, string arguments)
src\PublishArtifactsInManifestBase.cs (2)
1373Func<string, string, Task<ProcessExecutionResult>> RunProcessAndGetOutputsCallBack = null 1379ProcessExecutionResult nugetResult = null;
Microsoft.DotNet.Build.Tasks.Feed.Tests (2)
PublishArtifactsInManifestTests.cs (2)
120Func<string, string, Task<ProcessExecutionResult>> testRunAndLogProcess = (string fakeExePath, string fakeExeArgs) => 124ProcessExecutionResult result = new ProcessExecutionResult() { StandardError = "fake stderr", StandardOut = "fake stdout" };