2 instantiations of ProjectLaunchProfile
Microsoft.DotNet.ProjectTools (2)
_generated\2\LaunchProfileJsonSerializerContext.ProjectLaunchProfile.g.cs (1)
31ObjectCreator = () => new global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile(),
LaunchSettings\ProjectLaunchProfileParser.cs (1)
26return LaunchProfileParseResult.Success(new ProjectLaunchProfile
36 references to ProjectLaunchProfile
dotnet (4)
Commands\Run\RunCommand.cs (3)
241ProjectLaunchProfile projectSettings => GetTargetCommandForProject(projectSettings, projectFactory, cachedRunProperties, logger), 416if (launchSettings is ProjectLaunchProfile projectSettings) 564private ICommand GetTargetCommandForProject(ProjectLaunchProfile? launchSettings, Func<ProjectCollection, ProjectInstance>? projectFactory, RunProperties? cachedRunProperties, FacadeLogger? logger)
Commands\Test\MTP\TestApplication.cs (1)
142if (Module.LaunchSettings is ProjectLaunchProfile)
Microsoft.DotNet.ProjectTools (32)
_generated\2\LaunchProfileJsonSerializerContext.ProjectLaunchProfile.g.cs (29)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile>? _ProjectLaunchProfile; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile> ProjectLaunchProfile 22get => _ProjectLaunchProfile ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile>)Options.GetTypeInfo(typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile> Create_ProjectLaunchProfile(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile), 58Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj).LaunchBrowser, 59Setter = static (obj, value) => __set_ProjectLaunchProfile_LaunchBrowser((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj, value!), 66AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile).GetProperty("LaunchBrowser", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null), 76DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile), 78Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj).LaunchUrl, 79Setter = static (obj, value) => __set_ProjectLaunchProfile_LaunchUrl((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj, value!), 86AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile).GetProperty("LaunchUrl", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 96DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile), 98Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj).ApplicationUrl, 99Setter = static (obj, value) => __set_ProjectLaunchProfile_ApplicationUrl((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj, value!), 106AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile).GetProperty("ApplicationUrl", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 198private void ProjectLaunchProfileSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile? value) 208writer.WriteBoolean(PropName_launchBrowser, ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)value).LaunchBrowser); 209writer.WriteString(PropName_launchUrl, ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)value).LaunchUrl); 210writer.WriteString(PropName_applicationUrl, ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)value).ApplicationUrl); 220private static extern void __set_ProjectLaunchProfile_LaunchBrowser(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile obj, bool value); 222private static extern void __set_ProjectLaunchProfile_LaunchUrl(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile obj, string value); 224private static extern void __set_ProjectLaunchProfile_ApplicationUrl(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile obj, string value);
_generated\6\LaunchProfileJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
30if (type == typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile))
LaunchSettings\LaunchProfileJsonSerializerContext.cs (1)
8[JsonSerializable(typeof(ProjectLaunchProfile))]
LaunchSettings\ProjectLaunchProfileParser.cs (1)
20var profile = JsonSerializer.Deserialize(json, LaunchProfileJsonSerializerContext.Default.ProjectLaunchProfile);