TargetFrameworkAttribute.FrameworkName Property

Definition

Gets the name of the .NET version against which a particular assembly was compiled.

public:
 property System::String ^ FrameworkName { System::String ^ get(); };
public string FrameworkName { get; }
member this.FrameworkName : string
Public ReadOnly Property FrameworkName As String

Property Value

The name of the .NET version with which the assembly was compiled.

Remarks

The FrameworkName property maps to the frameworkName parameter of the TargetFrameworkAttribute constructor. It represents the .NET version in a compact form and typically corresponds to the string that is returned by the FrameworkName.ToString method.

Applies to

See also