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