no more submodule

This commit is contained in:
2024-09-15 22:40:48 +02:00
parent df3b8a3135
commit 0234b33671
5804 changed files with 943618 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Cake.FileHelpers</id>
<version>5.0.0</version>
<title>Cake.FileHelpers</title>
<authors>Redth</authors>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
<icon>icon.png</icon>
<projectUrl>https://github.com/cake-contrib/Cake.FileHelpers</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/cake-contrib/graphics/png/addin/cake-contrib-addin-medium.png</iconUrl>
<description>Cake Build addon to provide Aliases for common File operations (Reading, Writing, Replacing Text).</description>
<copyright>Copyright 2017-2021 - Cake Contributions</copyright>
<tags>cake script build cake-addin cake-build addin</tags>
<repository type="git" url="https://github.com/cake-contrib/Cake.FileHelpers.git" commit="78168ae4638ee64cf358737b800ecea677f1ea94" />
<dependencies>
<group targetFramework=".NETCoreApp3.1" />
<group targetFramework="net5.0" />
<group targetFramework="net6.0" />
</dependencies>
</metadata>
</package>

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,194 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Cake.FileHelpers</name>
</assembly>
<members>
<member name="T:Cake.FileHelpers.FileHelperAliases">
<summary>
File helper aliases.
A set of aliases for <see href="http://cakebuild.net">Cake Build</see> to help with simple File operations such as Reading, Writing and Replacing text.
</summary>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileReadText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Reads all text from a file
</summary>
<returns>The file's text.</returns>
<param name="context">The context.</param>
<param name="file">The file to read.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileReadLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Reads all lines from a file
</summary>
<returns>The file's text lines.</returns>
<param name="context">The context.</param>
<param name="file">The file to read.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileWriteText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String)">
<summary>
Writes all text to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to write to.</param>
<param name="text">The text to write.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileWriteLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String[])">
<summary>
Writes all text lines to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to write to.</param>
<param name="lines">The text lines to write.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileAppendText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String)">
<summary>
Appends all text to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to append text to.</param>
<param name="text">The text to append.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileAppendLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String[])">
<summary>
Appends all text lines to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to append text to.</param>
<param name="lines">The text lines to append.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileTouch(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Sets the last write time of a file to the current time
</summary>
<param name="context">The context.</param>
<param name="file">The file to touch</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceTextInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String)">
<summary>
Replaces the text in files matched by the given globber pattern
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="findText">The text to find.</param>
<param name="replaceText">The replacement text.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String)">
<summary>
Replaces the regex pattern in files matched by the given globber pattern.
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="replaceText">The replacement text.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Replaces the regex pattern in files matched by the given globber pattern.
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="replaceText">The replacement text.</param>
<param name="rxOptions">The regular expression options to use.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexInFiles(Cake.Core.ICakeContext,System.String,System.String)">
<summary>
Finds files with regular expression pattern in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds files with regular expression pattern in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="rxOptions">The regular expression options to use.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindTextInFiles(Cake.Core.ICakeContext,System.String,System.String)">
<summary>
Finds files with the given text in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to find text in.</param>
<param name="substring">The substring to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindTextInFiles(Cake.Core.ICakeContext,System.Collections.Generic.IEnumerable{Cake.Core.IO.FilePath},System.String)">
<summary>
Finds files with the given text in files matching the given collection of files.
</summary>
<returns>The files which match the regular expession in the files.</returns>
<param name="context">The context.</param>
<param name="files">The files to find text in.</param>
<param name="substring">The substring to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchesInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the regex matches in a text file.
</summary>
<returns>The regex matches in file.</returns>
<param name="context">Context.</param>
<param name="file">The text file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a textfile.
</summary>
<returns>The first regex match in the file.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchesGroupsInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds regex matches in a file and returns all match groups.
</summary>
<returns>The matches with their groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchGroupsInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a file and returns all match groups.
</summary>
<returns>The match groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchGroupInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Int32,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a file and returns a specific match group.
</summary>
<returns>The matches with their groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="groupIndex">The specific match group.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="T:Cake.FileHelpers.NamespaceDoc">
<summary>
This namespace contain types representing data used for common file operations,
such as reading, writing and replacing text.
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,194 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Cake.FileHelpers</name>
</assembly>
<members>
<member name="T:Cake.FileHelpers.FileHelperAliases">
<summary>
File helper aliases.
A set of aliases for <see href="http://cakebuild.net">Cake Build</see> to help with simple File operations such as Reading, Writing and Replacing text.
</summary>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileReadText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Reads all text from a file
</summary>
<returns>The file's text.</returns>
<param name="context">The context.</param>
<param name="file">The file to read.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileReadLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Reads all lines from a file
</summary>
<returns>The file's text lines.</returns>
<param name="context">The context.</param>
<param name="file">The file to read.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileWriteText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String)">
<summary>
Writes all text to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to write to.</param>
<param name="text">The text to write.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileWriteLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String[])">
<summary>
Writes all text lines to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to write to.</param>
<param name="lines">The text lines to write.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileAppendText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String)">
<summary>
Appends all text to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to append text to.</param>
<param name="text">The text to append.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileAppendLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String[])">
<summary>
Appends all text lines to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to append text to.</param>
<param name="lines">The text lines to append.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileTouch(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Sets the last write time of a file to the current time
</summary>
<param name="context">The context.</param>
<param name="file">The file to touch</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceTextInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String)">
<summary>
Replaces the text in files matched by the given globber pattern
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="findText">The text to find.</param>
<param name="replaceText">The replacement text.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String)">
<summary>
Replaces the regex pattern in files matched by the given globber pattern.
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="replaceText">The replacement text.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Replaces the regex pattern in files matched by the given globber pattern.
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="replaceText">The replacement text.</param>
<param name="rxOptions">The regular expression options to use.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexInFiles(Cake.Core.ICakeContext,System.String,System.String)">
<summary>
Finds files with regular expression pattern in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds files with regular expression pattern in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="rxOptions">The regular expression options to use.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindTextInFiles(Cake.Core.ICakeContext,System.String,System.String)">
<summary>
Finds files with the given text in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to find text in.</param>
<param name="substring">The substring to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindTextInFiles(Cake.Core.ICakeContext,System.Collections.Generic.IEnumerable{Cake.Core.IO.FilePath},System.String)">
<summary>
Finds files with the given text in files matching the given collection of files.
</summary>
<returns>The files which match the regular expession in the files.</returns>
<param name="context">The context.</param>
<param name="files">The files to find text in.</param>
<param name="substring">The substring to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchesInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the regex matches in a text file.
</summary>
<returns>The regex matches in file.</returns>
<param name="context">Context.</param>
<param name="file">The text file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a textfile.
</summary>
<returns>The first regex match in the file.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchesGroupsInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds regex matches in a file and returns all match groups.
</summary>
<returns>The matches with their groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchGroupsInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a file and returns all match groups.
</summary>
<returns>The match groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchGroupInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Int32,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a file and returns a specific match group.
</summary>
<returns>The matches with their groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="groupIndex">The specific match group.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="T:Cake.FileHelpers.NamespaceDoc">
<summary>
This namespace contain types representing data used for common file operations,
such as reading, writing and replacing text.
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,194 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Cake.FileHelpers</name>
</assembly>
<members>
<member name="T:Cake.FileHelpers.FileHelperAliases">
<summary>
File helper aliases.
A set of aliases for <see href="http://cakebuild.net">Cake Build</see> to help with simple File operations such as Reading, Writing and Replacing text.
</summary>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileReadText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Reads all text from a file
</summary>
<returns>The file's text.</returns>
<param name="context">The context.</param>
<param name="file">The file to read.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileReadLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Reads all lines from a file
</summary>
<returns>The file's text lines.</returns>
<param name="context">The context.</param>
<param name="file">The file to read.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileWriteText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String)">
<summary>
Writes all text to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to write to.</param>
<param name="text">The text to write.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileWriteLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String[])">
<summary>
Writes all text lines to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to write to.</param>
<param name="lines">The text lines to write.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileAppendText(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String)">
<summary>
Appends all text to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to append text to.</param>
<param name="text">The text to append.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileAppendLines(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String[])">
<summary>
Appends all text lines to a file
</summary>
<param name="context">The context.</param>
<param name="file">The file to append text to.</param>
<param name="lines">The text lines to append.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FileTouch(Cake.Core.ICakeContext,Cake.Core.IO.FilePath)">
<summary>
Sets the last write time of a file to the current time
</summary>
<param name="context">The context.</param>
<param name="file">The file to touch</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceTextInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String)">
<summary>
Replaces the text in files matched by the given globber pattern
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="findText">The text to find.</param>
<param name="replaceText">The replacement text.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String)">
<summary>
Replaces the regex pattern in files matched by the given globber pattern.
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="replaceText">The replacement text.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.ReplaceRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Replaces the regex pattern in files matched by the given globber pattern.
</summary>
<returns>The files that had text replaced in them.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="replaceText">The replacement text.</param>
<param name="rxOptions">The regular expression options to use.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexInFiles(Cake.Core.ICakeContext,System.String,System.String)">
<summary>
Finds files with regular expression pattern in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexInFiles(Cake.Core.ICakeContext,System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds files with regular expression pattern in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to replace text in.</param>
<param name="rxFindPattern">The regular expression to find.</param>
<param name="rxOptions">The regular expression options to use.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindTextInFiles(Cake.Core.ICakeContext,System.String,System.String)">
<summary>
Finds files with the given text in files matching the given globber pattern.
</summary>
<returns>The files which match the regular expression and globber pattern.</returns>
<param name="context">The context.</param>
<param name="globberPattern">The globber pattern to match files to find text in.</param>
<param name="substring">The substring to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindTextInFiles(Cake.Core.ICakeContext,System.Collections.Generic.IEnumerable{Cake.Core.IO.FilePath},System.String)">
<summary>
Finds files with the given text in files matching the given collection of files.
</summary>
<returns>The files which match the regular expession in the files.</returns>
<param name="context">The context.</param>
<param name="files">The files to find text in.</param>
<param name="substring">The substring to find.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchesInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the regex matches in a text file.
</summary>
<returns>The regex matches in file.</returns>
<param name="context">Context.</param>
<param name="file">The text file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a textfile.
</summary>
<returns>The first regex match in the file.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchesGroupsInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds regex matches in a file and returns all match groups.
</summary>
<returns>The matches with their groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchGroupsInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a file and returns all match groups.
</summary>
<returns>The match groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="M:Cake.FileHelpers.FileHelperAliases.FindRegexMatchGroupInFile(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,System.String,System.Int32,System.Text.RegularExpressions.RegexOptions)">
<summary>
Finds the first regex match in a file and returns a specific match group.
</summary>
<returns>The matches with their groups.</returns>
<param name="context">The context.</param>
<param name="file">The file.</param>
<param name="rxFindPattern">The regex pattern to search for.</param>
<param name="groupIndex">The specific match group.</param>
<param name="rxOptions">The regex options.</param>
</member>
<member name="T:Cake.FileHelpers.NamespaceDoc">
<summary>
This namespace contain types representing data used for common file operations,
such as reading, writing and replacing text.
</summary>
</member>
</members>
</doc>