FAKE - F# Make


Attribute

Represents AssemblyInfo attributes

Constructors

ConstructorDescription
new(...)
Signature: (name:string * value:string * inNamespace:string * staticPropType:string) -> Attribute
new(...)
Signature: (name:string * value:string * inNamespace:string * staticPropName:string * staticPropType:string * staticPropValue:string) -> Attribute

Instance members

Instance memberDescription
Name
Signature: string
Namespace
Signature: string
StaticPropertyName
Signature: string
StaticPropertyType
Signature: string
StaticPropertyValue
Signature: string
Value
Signature: string

Static members

Static memberDescription
BoolAttribute(name, value, inNamespace)
Signature: (name:string * value:bool * inNamespace:string) -> Attribute

Creates a simple attribute with boolean values. Used as base for other attributes

CLSCompliant(value)
Signature: (value:bool option) -> Attribute

Creates an attribute which specifies if the assembly is CLS compliant

Company(value)
Signature: value:string -> Attribute

Creates an attribute which holds the company information

ComVisible(value)
Signature: (value:bool option) -> Attribute

Creates an attribute which specifies if the assembly is visible via COM

Configuration(value)
Signature: value:string -> Attribute

Creates an attribute which holds the assembly configuration

Copyright(value)
Signature: value:string -> Attribute

Creates an attribute which holds the copyright information

Culture(value)
Signature: value:string -> Attribute

Creates an attribute which holds the assembly culture information

DelaySign(value)
Signature: (value:bool option) -> Attribute

Creates an attribute which specifies if the assembly uses delayed signing

Description(value)
Signature: value:string -> Attribute

Creates an attribute which holds the product description

FileVersion(value)
Signature: value:string -> Attribute

Creates an attribute which holds the assembly file version

Guid(value)
Signature: value:string -> Attribute

Creates an attribute which holds the Guid

InformationalVersion(value)
Signature: value:string -> Attribute

Creates an attribute which holds an assembly information version

InternalsVisibleTo(value)
Signature: value:string -> Attribute

Creates an attribute which holds the "InternalVisibleTo" data

KeyFile(value)
Signature: value:string -> Attribute

Creates an attribute which holds the assembly key file

KeyName(value)
Signature: value:string -> Attribute

Creates an attribute which holds the assembly key name

Metadata(name, value)
Signature: (name:string * value:string) -> Attribute

Create an attribute which specifies metadata about the assembly

Product(value)
Signature: value:string -> Attribute

Creates an attribute which holds the product name

StringAttribute(...)
Signature: (name:string * value:string * inNamespace:string * staticName:string option * staticValue:string option) -> Attribute

Creates a simple attribute with string values. Used as base for other attributes

Title(value)
Signature: value:string -> Attribute

Creates an attribute which holds the product title

Trademark(value)
Signature: value:string -> Attribute

Creates an attribute which holds the trademark

Version(value)
Signature: value:string -> Attribute

Creates an attribute which holds the assembly version

Fork me on GitHub