11 references to Unknown
Microsoft.NET.Sdk.Publish.Tasks (5)
Tasks\ZipDeploy\ZipDeploy.cs (2)
122else if (deploymentResponse is null || deploymentResponse?.Status == DeployStatus.Failed || deploymentResponse?.Status == DeployStatus.Unknown) 126deploymentResponse?.Status ?? DeployStatus.Unknown,
Tasks\ZipDeploy\ZipDeploymentStatus.cs (3)
47&& deployStatus != DeployStatus.Unknown) 56: DeployStatus.Unknown; 71return deploymentResponse ?? new() { Status = DeployStatus.Unknown };
Microsoft.NET.Sdk.Publish.Tasks.Tests (6)
Tasks\ZipDeploy\ZipDeploymentStatusTests.cs (6)
22[InlineData(HttpStatusCode.Forbidden, DeployStatus.Unknown)] 23[InlineData(HttpStatusCode.NotFound, DeployStatus.Unknown)] 24[InlineData(HttpStatusCode.RequestTimeout, DeployStatus.Unknown)] 25[InlineData(HttpStatusCode.InternalServerError, DeployStatus.Unknown)] 59[InlineData(HttpStatusCode.OK, DeployStatus.Unknown)] 60[InlineData(HttpStatusCode.Accepted, DeployStatus.Unknown)]