# PipelineConfigurationContext Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [PipelineConfigurationContext](/reference/api/csharp/aspire.hosting/pipelineconfigurationcontext.md)
- Kind: `Properties`
- Members: `3`

Provides contextual information for pipeline configuration callbacks.

## Model

- Name: `Model`
- Modifiers: `get; init`
- Returns: [DistributedApplicationModel](/reference/api/csharp/aspire.hosting/distributedapplicationmodel.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineConfigurationContext.cs)

Gets the distributed application model containing all resources.

```csharp
public DistributedApplicationModel Model { get; init; }
```

## Services

- Name: `Services`
- Modifiers: `get; init`
- Returns: `IServiceProvider`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineConfigurationContext.cs)

Gets the service provider for dependency resolution.

```csharp
public IServiceProvider Services { get; init; }
```

## Steps

- Name: `Steps`
- Modifiers: `get; init`
- Returns: [IReadOnlyList<PipelineStep>](/reference/api/csharp/aspire.hosting/pipelinestep.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineConfigurationContext.cs)

Gets the list of pipeline steps collected during the first pass.

```csharp
public IReadOnlyList<PipelineStep> Steps { get; init; }
```
