When set, the CLI assigns this environment variable a certificate bundle containing the ASP.NET Core development certificate before launching the AppHost in run mode. The variable is not set when publishing the AppHost. The runtime uses the bundle as additional trusted roots for the entire AppHost process, affecting all outbound TLS connections, including connections unrelated to Aspire-managed resources. For example:
Gets the extension capability required to launch this language via the VS Code extension. When set (e.g., "node"), the CLI will use the extension launcher if the extension reports this capability. When null, the CLI always uses the default process-based launcher.
Gets the commands to initialize the project environment (e.g., create a virtual environment and install dependencies). Runs once during scaffolding. Null if no initialization is needed.
Gets files that must exist in the project directory before execution. If a file in this dictionary is missing, the CLI will create it with the provided content. This supports upgrade scenarios where new runtime requirements are introduced.
Gets the commands to run before executing or publishing the AppHost. Null if no pre-execution validation is needed. Watch-mode validation should be part of RuntimeSpec.WatchExecute when needed.