Class AssemblyNativeVersionAttribute
Defines the required native version required for an assembly. At deploy time this is used to check if the target device has the correct native version to support this assembly.
Inherited Members
Namespace: System.Reflection
Assembly: mscorlib.dll
Syntax
[AttributeUsage(AttributeTargets.Assembly|AttributeTargets.Class, Inherited = false)]
public sealed class AssemblyNativeVersionAttribute : Attribute
Remarks
This attribute is specific of nanoFramework.
Constructors
AssemblyNativeVersionAttribute(string)
Initializes a new instance of the AssemblyNativeVersionAttribute class.
Declaration
public AssemblyNativeVersionAttribute(string version)
Parameters
Type | Name | Description |
---|---|---|
string | version | The native version required for the assembly. |
Properties
NativeVersion
Gets the native version required for the assembly.
Declaration
public string NativeVersion { get; }
Property Value
Type | Description |
---|---|
string | A string containing the native version. |