UtilityIdentifierAndVersionFromTargetFramework Method
This is used to determine the target framework identifier and version from the given target framework
value.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.12.21.0
public static (string TargetFrameworkIdentifier, string Version) IdentifierAndVersionFromTargetFramework(
this string targetFramework
)
<ExtensionAttribute>
Public Shared Function IdentifierAndVersionFromTargetFramework (
targetFramework As String
) As (TargetFrameworkIdentifier As String, Version As String)
public:
[ExtensionAttribute]
static ValueTuple<String^, String^> IdentifierAndVersionFromTargetFramework(
String^ targetFramework
)
[<ExtensionAttribute>]
static member IdentifierAndVersionFromTargetFramework :
targetFramework : string -> ValueTuple<string, string>
- targetFramework String
- The target framework value for which to identify the target framework
identifier and version.
ValueTupleString,
StringA tuple containing the target framework identifier and version if it could be determined
or two empty strings if not.In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).