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)
150
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)
1343
Func<string, string, Task<
ProcessExecutionResult
>> RunProcessAndGetOutputsCallBack = null
1349
ProcessExecutionResult
nugetResult = null;
Microsoft.DotNet.Build.Tasks.Feed.Tests (2)
PublishArtifactsInManifestTests.cs (2)
146
Func<string, string, Task<
ProcessExecutionResult
>> testRunAndLogProcess = (string fakeExePath, string fakeExeArgs) =>
150
ProcessExecutionResult
result = new ProcessExecutionResult() { StandardError = "fake stderr", StandardOut = "fake stdout" };