15 references to Unknown
Microsoft.NET.Sdk.Publish.Tasks (5)
Tasks\OneDeploy\DeploymentResponse.cs (2)
16
Status = DeploymentStatus.
Unknown
,
32
public DeploymentStatus? Status { get; set; } = DeploymentStatus.
Unknown
;
Tasks\OneDeploy\DeploymentStatus.cs (1)
44
|| status == DeploymentStatus.
Unknown
;
Tasks\OneDeploy\OneDeploy.cs (1)
150
deploymentResponse?.Status ?? DeploymentStatus.
Unknown
,
Tasks\OneDeploy\OneDeployStatusService.cs (1)
61
: DeploymentStatus.
Unknown
;
Microsoft.NET.Sdk.Publish.Tasks.Tests (10)
Tasks\OneDeploy\OneDeployStatusServiceTests.cs (8)
38
[InlineData(HttpStatusCode.OK, DeploymentStatus.
Unknown
)]
39
[InlineData(HttpStatusCode.Accepted, DeploymentStatus.
Unknown
)]
51
if (expectedDeploymentStatus != DeploymentStatus.
Unknown
)
83
taskLoggerMock.Setup(l => l.LogMessage(string.Format(Resources.DeploymentStatus, DeploymentStatus.
Unknown
)));
93
Assert.Equal(DeploymentStatus.
Unknown
, result.Status);
144
Assert.Equal(DeploymentStatus.
Unknown
, result.Status);
172
Assert.Equal(DeploymentStatus.
Unknown
, result.Status);
194
Assert.Equal(DeploymentStatus.
Unknown
, result.Status);
Tasks\OneDeploy\OneDeployTests.cs (2)
62
[InlineData(DeploymentStatus.
Unknown
, HttpStatusCode.OK, false)]
63
[InlineData(DeploymentStatus.
Unknown
, HttpStatusCode.Accepted, false)]