# ProjectResourceOptions

- Module: [Aspire.Hosting](/reference/api/typescript/aspire.hosting.md)
- Version: `13.4.0`
- Kind: `handle`
- Source: [GitHub](https://github.com/microsoft/aspire)

Various properties to modify the behavior of the project resource.

## Definition

```typescript
interface ProjectResourceOptions {
  excludeKestrelEndpoints: boolean;
  excludeLaunchProfile: boolean;
  launchProfileName: string;
}
```

## Properties

- `excludeKestrelEndpoints`: `boolean` `get - set` -- If set, ignore endpoints coming from Kestrel configuration.
- `excludeLaunchProfile`: `boolean` `get - set` -- If set, no launch profile will be used, and LaunchProfileName will be ignored.
- `launchProfileName`: `string` `get - set` -- The launch profile to use. If `null` then the default launch profile will be used.
