6 implementations of StateFilePath
Aspire.Hosting (2)
Publishing\Internal\FileDeploymentStateManager.cs (1)
30
public string?
StateFilePath
=> GetDeploymentStatePath();
Publishing\Internal\UserSecretsDeploymentStateManager.cs (1)
25
public string?
StateFilePath
=> GetUserSecretsPath();
Aspire.Hosting.Azure.Tests (2)
AzureDeployerTests.cs (1)
888
public string?
StateFilePath
=> null;
ProvisioningTestHelpers.cs (1)
578
public string?
StateFilePath
=> null;
Aspire.Hosting.Tests (2)
Orchestrator\ApplicationOrchestratorTests.cs (1)
487
public string?
StateFilePath
=> null;
Orchestrator\ParameterProcessorTests.cs (1)
789
public string?
StateFilePath
=> null;
10 references to StateFilePath
Aspire.Hosting (7)
Publishing\Publisher.cs (7)
34
if (deploymentStateManager?.
StateFilePath
is not null && File.Exists(deploymentStateManager.
StateFilePath
))
62
logger.LogInformation("Deleting deployment state file at {Path} due to --clear-cache flag", deploymentStateManager.
StateFilePath
);
63
File.Delete(deploymentStateManager.
StateFilePath
);
114
if (deploymentStateManager?.
StateFilePath
is not null && File.Exists(deploymentStateManager.
StateFilePath
))
122
$"Deployment state will be loaded from: {deploymentStateManager.
StateFilePath
}",
Aspire.Hosting.Azure.Tests (3)
AzureDeployerTests.cs (3)
948
var deploymentStatePath = deploymentStateManager.
StateFilePath
;
1038
var deploymentStatePath = deploymentStateManager.
StateFilePath
;
1070
var stagingStatePath = deploymentStateManager.
StateFilePath
;