OBSOLETE
FAKE0001 Use Fake.DotNet.AssemblyInfoFile instead
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
Type | Description |
AssemblyInfoFileConfig |
OBSOLETEFAKE0001 Use Fake.DotNet.AssemblyInfoFileConfig instead Represents options for configuring the emission of AssemblyInfo |
Attribute |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfo.___' instead Represents AssemblyInfo attributes |
Functions and values
Function or value | Description |
CreateCppCliAssemblyInfo(...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> unit
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCppCli' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCppCli' instead Creates a C++/CLI AssemblyInfo file with the given attributes. |
CreateCppCliAssemblyInfoWithConfig(...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> config:AssemblyInfoFileConfig -> unit
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCppCliWithConfig' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCppCliWithConfig' instead Creates a C++/CLI AssemblyInfo file with the given attributes and configuration. Does not generate an AssemblyVersionInformation class. |
CreateCSharpAssemblyInfo(...)
Signature: outputFileName:string -> attributes:seq<Attribute> -> unit
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCSharp' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCSharp' instead 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
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCSharpWithConfig' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createCSharpWithConfig' instead 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
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createFSharp' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createFSharp' instead 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
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createFSharpWithConfig' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createFSharpWithConfig' instead 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
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createVisualBasic' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createVisualBasic' instead 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
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createVisualBasicWithConfig' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.createVisualBasicWithConfig' instead 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. |
GetAttribute attrName assemblyInfoFile
Signature: attrName:string -> assemblyInfoFile:string -> Attribute option
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.getAttribute' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.getAttribute' instead Read a single attribute from an AssemblyInfo file. Parameters
|
GetAttributes(assemblyInfoFile)
Signature: assemblyInfoFile:string -> seq<Attribute>
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.getAttributes' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.getAttributes' instead Read attributes from an AssemblyInfo file and return as a sequence of Attribute. Parameters
|
GetAttributeValue(...)
Signature: attrName:string -> assemblyInfoFile:string -> string option
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.getAttributeValue' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.getAttributeValue' instead Read the value of a single attribute from an AssemblyInfo file. Note that string values are returned with surrounding "". Parameters
|
UpdateAttributes(...)
Signature: assemblyInfoFile:string -> attributes:seq<Attribute> -> unit
Attributes: [<Obsolete("FAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.updateAttributes' instead")>] |
OBSOLETEFAKE0001 Use 'open Fake.DotNet' and 'AssemblyInfoFile.updateAttributes' instead Update a set of attributes in an AssemblyInfo file. Fails if any attribute is not found. Parameters
|
Active patterns
Active pattern | Description |
( |Fsproj|Csproj|Vbproj|Shproj| )(...)
Signature: projFileName:string -> Choice<unit,unit,unit,unit>
Attributes: [<Obsolete("FAKE0001 Use Fake.DotNet.AssemblyInfoFile instead")>] |
OBSOLETEFAKE0001 Use Fake.DotNet.AssemblyInfoFile instead |