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" };
5 references to ProcessExecutionResult
Microsoft.DotNet.Build.Tasks.Feed (3)
src\common\GeneralUtils.cs (1)
266
public static async Task<
ProcessExecutionResult
> RunProcessAndGetOutputsAsync(string path, string arguments)
src\PublishArtifactsInManifestBase.cs (2)
1373
Func<string, string, Task<
ProcessExecutionResult
>> RunProcessAndGetOutputsCallBack = null
1379
ProcessExecutionResult
nugetResult = 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" };