OBSOLETE
This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.
ConfigurationHelper
Contains functions which allow to read and write config files.
Functions and values
Function or value | Description | ||
applyXslOnConfig xsl fileName
Signature: xsl:string -> fileName:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Applies a Xsl Stylesheet to a config file and writes it back. Parameters
Sample
|
||
readConfig(fileName)
Signature: fileName:string -> XmlDocument
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Reads a config file into an XmlDocument. Parameters
|
||
updateApplicationSetting(...)
Signature: fileName:string -> settingName:string -> value:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Reads a config file from the given file name, replaces the Application Setting (as opposed to AppSetting) value and writes it back. Parameters
Sample
|
||
updateAppSetting key value fileName
Signature: key:string -> value:string -> fileName:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Reads a config file from the given file name, replaces the app setting value and writes it back. Parameters
Sample
|
||
updateConfig(...)
Signature: xpath:string -> attribute:string -> value:string -> config:XmlDocument -> XmlDocument
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Reads a config file from the given file name, replaces an attribute using the given xPath and writes it back. Parameters
|
||
updateConfigSetting(...)
Signature: fileName:string -> xpath:string -> attribute:string -> value:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Reads a config file from the given file name, replaces an attribute using the given xPath and writes it back. Parameters
|
||
updateConnectionString(...)
Signature: connectionStringKey:string -> value:string -> fileName:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Reads a config file from the given file name, replaces the connection string value and writes it back. Parameters
|
||
writeConfig fileName config
Signature: fileName:string -> config:XmlDocument -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Writes an XmlDocument to a config file. Parameters
|