2 instantiations of ExecutableLaunchProfile
Microsoft.DotNet.ProjectTools (2)
_generated\1\LaunchProfileJsonSerializerContext.ExecutableLaunchProfile.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile(){ ExecutablePath = (string)args[0] },
LaunchSettings\ExecutableLaunchProfileParser.cs (1)
32return LaunchProfileParseResult.Success(new ExecutableLaunchProfile
30 references to ExecutableLaunchProfile
dotnet (3)
Commands\Run\RunCommand.cs (3)
191else if (EntryPointFileFullPath is not null && launchProfileParseResult.Profile is not ExecutableLaunchProfile) 242ExecutableLaunchProfile executableSettings => GetTargetCommandForExecutable(executableSettings), 396private ICommand GetTargetCommandForExecutable(ExecutableLaunchProfile launchSettings)
Microsoft.DotNet.ProjectTools (27)
_generated\1\LaunchProfileJsonSerializerContext.ExecutableLaunchProfile.g.cs (23)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile>? _ExecutableLaunchProfile; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile> ExecutableLaunchProfile 22get => _ExecutableLaunchProfile ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile>)Options.GetTypeInfo(typeof(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile> Create_ExecutableLaunchProfile(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile).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.ExecutableLaunchProfile>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile), 58Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile)obj).ExecutablePath, 59Setter = static (obj, value) => __set_ExecutableLaunchProfile_ExecutablePath((global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile)obj, value!), 66AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile).GetProperty("ExecutablePath", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 79DeclaringType = typeof(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile), 81Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile)obj).WorkingDirectory, 82Setter = static (obj, value) => __set_ExecutableLaunchProfile_WorkingDirectory((global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile)obj, value!), 89AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile).GetProperty("WorkingDirectory", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 181private void ExecutableLaunchProfileSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile? value) 191writer.WriteString(PropName_executablePath, ((global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile)value).ExecutablePath); 192writer.WriteString(PropName_workingDirectory, ((global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile)value).WorkingDirectory); 214private static extern void __set_ExecutableLaunchProfile_ExecutablePath(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile obj, string value); 216private static extern void __set_ExecutableLaunchProfile_WorkingDirectory(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile obj, string value);
_generated\6\LaunchProfileJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
26if (type == typeof(global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile))
LaunchSettings\ExecutableLaunchProfileParser.cs (2)
21var profile = JsonSerializer.Deserialize(json, LaunchProfileJsonSerializerContext.Default.ExecutableLaunchProfile); 63error = string.Format(Resources.Path0SpecifiedIn1IsInvalid, expandedValue, ExecutableLaunchProfile.WorkingDirectoryPropertyName);
LaunchSettings\LaunchProfileJsonSerializerContext.cs (1)
9[JsonSerializable(typeof(ExecutableLaunchProfile))]