6 implementations of StateFilePath
Aspire.Hosting (1)
Publishing\Internal\DeploymentStateManagerBase.cs (1)
50public abstract string? StateFilePath { get; }
Aspire.Hosting.Azure.Tests (3)
AzureBicepProvisionerTests.cs (1)
223public string? StateFilePath => null;
AzureDeployerTests.cs (1)
936public string? StateFilePath => null;
ProvisioningTestHelpers.cs (1)
600public string? StateFilePath => null;
Aspire.Hosting.Tests (2)
Orchestrator\ApplicationOrchestratorTests.cs (1)
492public string? StateFilePath => null;
Orchestrator\ParameterProcessorTests.cs (1)
789public string? StateFilePath => null;
4 references to StateFilePath
Aspire.Hosting (1)
Pipelines\DistributedApplicationPipeline.cs (1)
57if (deploymentStateManager.StateFilePath is string stateFilePath && File.Exists(stateFilePath))
Aspire.Hosting.Azure.Tests (3)
AzureDeployerTests.cs (3)
997var deploymentStatePath = deploymentStateManager.StateFilePath; 1086var deploymentStatePath = deploymentStateManager.StateFilePath; 1118var stagingStatePath = deploymentStateManager.StateFilePath;