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)
147if (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), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile>(options, objectInfo); 58DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile), 60Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj).LaunchBrowser, 61Setter = static (obj, value) => __set_ProjectLaunchProfile_LaunchBrowser((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj, value!), 68AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile).GetProperty("LaunchBrowser", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null), 78DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile), 80Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj).LaunchUrl, 81Setter = static (obj, value) => __set_ProjectLaunchProfile_LaunchUrl((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj, value!), 88AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile).GetProperty("LaunchUrl", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 98DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile), 100Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj).ApplicationUrl, 101Setter = static (obj, value) => __set_ProjectLaunchProfile_ApplicationUrl((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)obj, value!), 108AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile).GetProperty("ApplicationUrl", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 200private void ProjectLaunchProfileSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile? value) 210writer.WriteBoolean(PropName_launchBrowser, ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)value).LaunchBrowser); 211writer.WriteString(PropName_launchUrl, ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)value).LaunchUrl); 212writer.WriteString(PropName_applicationUrl, ((global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile)value).ApplicationUrl); 222private static extern void __set_ProjectLaunchProfile_LaunchBrowser(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile obj, bool value); 224private static extern void __set_ProjectLaunchProfile_LaunchUrl(global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile obj, string value); 226private 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);