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