7 implementations of StateFilePath
Aspire.Hosting (1)
Pipelines\Internal\DeploymentStateManagerBase.cs (1)
51
public abstract string?
StateFilePath
{ get; }
Aspire.Hosting.Azure.Tests (3)
AzureBicepProvisionerTests.cs (1)
225
public string?
StateFilePath
=> null;
AzureDeployerTests.cs (1)
1234
public string?
StateFilePath
=> null;
ProvisioningTestHelpers.cs (1)
612
public string?
StateFilePath
=> null;
Aspire.Hosting.Tests (3)
Orchestrator\ApplicationOrchestratorTests.cs (1)
507
public string?
StateFilePath
=> null;
Orchestrator\ParameterProcessorTests.cs (2)
1158
public string?
StateFilePath
=> null;
1596
public string?
StateFilePath
=> null;
5 references to StateFilePath
Aspire.Hosting (1)
Pipelines\DistributedApplicationPipeline.cs (1)
75
if (deploymentStateManager.
StateFilePath
is string stateFilePath && File.Exists(stateFilePath))
Aspire.Hosting.Azure.Tests (4)
AzureDeployerTests.cs (4)
1297
var deploymentStatePath = deploymentStateManager.
StateFilePath
;
1386
var deploymentStatePath = deploymentStateManager.
StateFilePath
;
1418
var stagingStatePath = deploymentStateManager.
StateFilePath
;
1481
deploymentStatePath = deploymentStateManager.
StateFilePath
;