Skip to content

FrameworkAssemblyInfo

Namespace: Dotsider.Core.Protocol

Assembly: Dotsider.Core.dll

Result of resolving an assembly from the system .NET shared framework. Includes the full path and the runtime pack that provided it.

public sealed record FrameworkAssemblyInfo : IEquatable<FrameworkAssemblyInfo>

ObjectFrameworkAssemblyInfo

Result of resolving an assembly from the system .NET shared framework. Includes the full path and the runtime pack that provided it.

Parameters:

  • Path (String): Full path to the resolved assembly file.
  • RuntimePack (String): The shared framework pack the assembly was found in (e.g. “Microsoft.NETCore.App”).
public FrameworkAssemblyInfo(string Path, string RuntimePack)

Full path to the resolved assembly file.

Returns: String

public string Path { get; init; }

The shared framework pack the assembly was found in (e.g. “Microsoft.NETCore.App”).

Returns: String

public string RuntimePack { get; init; }