20 references to BuildAbortedException
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (7)
806BuildResultBase buildResult = submission.CompleteResultsWithException(new BuildAbortedException()); 1349CompleteSubmissionWithException(submission, resolvedConfiguration!, new BuildAbortedException()); 1423var result = new GraphBuildResult(submission.SubmissionId, new BuildAbortedException()); 1821throw new BuildAbortedException(); 1886throw new BuildAbortedException(); 2507shutdownPacket.Exception ?? new BuildAbortedException())); 2570submission.CompleteResultsWithException(new BuildAbortedException());
BackEnd\Components\BuildRequestEngine\BuildRequestEngine.cs (1)
273BuildResult result = entry.Result ?? new BuildResult(entry.Request, new BuildAbortedException());
BackEnd\Components\BuildRequestEngine\BuildRequestEntry.cs (2)
434_outstandingResults[requestEntry.Key] = new BuildResult(requestEntry.Value, new BuildAbortedException()); 444_outstandingResults[request.NodeRequestId] = new BuildResult(request, new BuildAbortedException());
BackEnd\Components\RequestBuilder\RequestBuilder.cs (4)
422throw new BuildAbortedException(); 460throw new BuildAbortedException(); 527throw new BuildAbortedException(); 1019results[i] = new BuildResult(new BuildRequest(), new BuildAbortedException());
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
183throw new BuildAbortedException();
BackEnd\Components\Scheduler\Scheduler.cs (1)
1608_resultsCache.AddResult(new BuildResult(request.BuildRequest, new BuildAbortedException()));
Microsoft.Build.Engine.UnitTests (4)
BackEnd\BuildRequestEngine_Tests.cs (2)
115BuildResult res = new BuildResult(_entry.Request, new BuildAbortedException()); 128BuildResult res = new BuildResult(_entry.Request, new BuildAbortedException());
BackEnd\BuildResult_Tests.cs (1)
314BuildResult result = new BuildResult(request, new BuildAbortedException());
BackEnd\TargetResult_Tests.cs (1)
118TargetResult result = new TargetResult(new TaskItem[] { item }, BuildResultUtilities.GetStopWithErrorResult(new BuildAbortedException()));