4 instantiations of RejectedBuildResponse
Microsoft.Build.Tasks.CodeAnalysis (4)
BuildProtocol.cs (1)
525return new RejectedBuildResponse(reason);
BuildServerConnection.cs (3)
268return new RejectedBuildResponse($"Error writing build request: {e.Message}"); 293response = new RejectedBuildResponse($"Error reading response: {e.Message}"); 299response = new RejectedBuildResponse($"Client disconnected");
4 references to RejectedBuildResponse
Microsoft.Build.Tasks.CodeAnalysis (4)
BuildProtocol.cs (2)
369return RejectedBuildResponse.Create(reader); 521public static RejectedBuildResponse Create(BinaryReader reader)
ManagedCompiler.cs (2)
685var rejectedResponse = (RejectedBuildResponse)response;