# ExecutableLaunchMode

- Kind: `class`
- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Version: `13.5.3`
- Namespace: `Aspire.Hosting.ApplicationModel`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting/ApplicationModel/ExecutableLaunchMode.cs)

Well-known launch modes that can be requested when an IDE or extension host launches a resource.

## Definition

```csharp
namespace Aspire.Hosting.ApplicationModel;

public static class ExecutableLaunchMode
{
    // ...
}
```

## Remarks

The value is serialized as the `mode` field of a launch configuration and is interpreted by the IDE (Visual Studio, VS Code) that owns the debug session.

## Fields

- [Debug](/reference/api/csharp/aspire.hosting/executablelaunchmode/fields.md#debug) : `string` `static` -- Launch the resource under the debugger.
- [NoDebug](/reference/api/csharp/aspire.hosting/executablelaunchmode/fields.md#nodebug) : `string` `static` -- Launch the resource without debugging.
