File: Commands\Run\LaunchSettings\ProjectLaunchSettingsModel.cs
Web Access
Project: ..\..\..\src\Cli\dotnet\dotnet.csproj (dotnet)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.DotNet.Cli.Commands.Run.LaunchSettings;
 
public class ProjectLaunchSettingsModel
{
    public string? LaunchProfileName { get; set; }
 
    public string? CommandLineArgs { get; set; }
 
    public bool LaunchBrowser { get; set; }
 
    public string? LaunchUrl { get; set; }
 
    public string? ApplicationUrl { get; set; }
 
    public string? DotNetRunMessages { get; set; }
 
    public Dictionary<string, string> EnvironmentVariables { get; } = new Dictionary<string, string>(StringComparer.Ordinal);
}