FAKE - F# Make


AssemblyInfoFile

Contains tasks to generate AssemblyInfo files for C# and F#. There is also a tutorial about the AssemblyInfo tasks available.

Nested types and modules

TypeDescription
AssemblyInfoFileConfig

Represents options for configuring the emission of AssemblyInfo

Attribute

Represents AssemblyInfo attributes

Functions and values

Function or valueDescription
CreateCSharpAssemblyInfo (...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> unit

Creates a C# AssemblyInfo file with the given attributes. The generated AssemblyInfo file contains an AssemblyVersionInformation class which can be used to retrieve the current version no. from inside of an assembly.

CreateCSharpAssemblyInfoWithConfig (...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> config:AssemblyInfoFileConfig -> unit

Creates a C# AssemblyInfo file with the given attributes and configuration. The generated AssemblyInfo file contains an AssemblyVersionInformation class which can be used to retrieve the current version no. from inside of an assembly.

CreateFSharpAssemblyInfo (...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> unit

Creates a F# AssemblyInfo file with the given attributes. The generated AssemblyInfo file contains an AssemblyVersionInformation class which can be used to retrieve the current version no. from inside of an assembly.

CreateFSharpAssemblyInfoWithConfig (...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> config:AssemblyInfoFileConfig -> unit

Creates a F# AssemblyInfo file with the given attributes and configuration. The generated AssemblyInfo file contains an AssemblyVersionInformation class which can be used to retrieve the current version no. from inside of an assembly.

CreateVisualBasicAssemblyInfo (...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> unit

Creates a VB AssemblyInfo file with the given attributes. The generated AssemblyInfo file contains an AssemblyVersionInformation class which can be used to retrieve the current version no. from inside of an assembly.

CreateVisualBasicAssemblyInfoWithConfig (...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> config:AssemblyInfoFileConfig -> unit

Creates a VB AssemblyInfo file with the given attributes and configuration. The generated AssemblyInfo file contains an AssemblyVersionInformation class which can be used to retrieve the current version no. from inside of an assembly.

Fork me on GitHub