Table of Contents

Class IsNetCore5UpMonikerResult

Namespace
SunamoDevCode.ToNetCore.Results
Assembly
SunamoDevCode.dll

Result class for .NET Core 5+ target framework moniker parsing. Reference: https://learn.microsoft.com/en-us/dotnet/standard/frameworks

public class IsNetCore5UpMonikerResult
Inheritance
IsNetCore5UpMonikerResult
Inherited Members
Extension Methods

Properties

PlatformTfm

Gets or sets the platform-specific target framework moniker (e.g., "-windows", "-android").

public string PlatformTfm { get; set; }

Property Value

string

TargetFramework

Gets or sets the target framework (e.g., "net5.0", "net6.0", "net7.0").

public string TargetFramework { get; set; }

Property Value

string

Methods

ToString()

Returns the combined target framework and platform TFM as a string.

public override string ToString()

Returns

string

Combined target framework moniker string.