File: PythonAppLaunchConfiguration.cs | Web Access |
Project: src\src\Aspire.Hosting.Python\Aspire.Hosting.Python.csproj (Aspire.Hosting.Python) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Text.Json.Serialization; using Aspire.Hosting.Dcp.Model; namespace Aspire.Hosting.Python; internal sealed class PythonLaunchConfiguration() : ExecutableLaunchConfiguration("python") { [JsonPropertyName("program_path")] public string ProgramPath { get; set; } = string.Empty; } |