📄 msbuild.community.tasks.xml
字号:
</summary>
<returns>
Returns <c>true</c> if the task successfully executed; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:MSBuild.Community.Tasks.Xslt.Inputs">
<summary>
Gets or sets the xml input files.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.Xslt.RootTag">
<summary>
Gets or sets the xml tag name
of the root tag wrapped
around the merged xml input files.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.Xslt.RootAttributes">
<summary>
Gets or sets the list of
semicolon-delimited name/value pairs
of the <see cref="P:MSBuild.Community.Tasks.Xslt.RootTag"/>.
For example: <code>RootAttributes="foo=bar;date=$(buildDate)"</code>
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.Xslt.Xsl">
<summary>
Gets or sets the path of the
xsl transformation file to apply.
</summary>
<remarks>
The property can be given any number of metadata,
which will be handed to the xsl transformation
as parameters.
</remarks>
</member>
<member name="P:MSBuild.Community.Tasks.Xslt.Output">
<summary>
Gets or sets the path of the output file.
</summary>
</member>
<member name="T:MSBuild.Community.Tasks.FileUpdate">
<summary>
Replace text in file(s) using a Regular Expression.
</summary>
<example>Search for a version number and update the revision.
<code><![CDATA[
<FileUpdate Files="version.txt"
Regex="(\d+)\.(\d+)\.(\d+)\.(\d+)"
ReplacementText="$1.$2.$3.123" />
]]></code>
</example>
</member>
<member name="M:MSBuild.Community.Tasks.FileUpdate.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FileUpdate"/> class.
</summary>
</member>
<member name="M:MSBuild.Community.Tasks.FileUpdate.Execute">
<summary>
When overridden in a derived class, executes the task.
</summary>
<returns>
true if the task successfully executed; otherwise, false.
</returns>
</member>
<member name="P:MSBuild.Community.Tasks.FileUpdate.Files">
<summary>
Gets or sets the files to update.
</summary>
<value>The files.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FileUpdate.Regex">
<summary>
Gets or sets the regex.
</summary>
<value>The regex.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FileUpdate.IgnoreCase">
<summary>
Gets or sets a value specifies case-insensitive matching. .
</summary>
<value><c>true</c> if [ignore case]; otherwise, <c>false</c>.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FileUpdate.Multiline">
<summary>
Gets or sets a value changing the meaning of ^ and $ so they match at the beginning and end,
respectively, of any line, and not just the beginning and end of the entire string.
</summary>
<value><c>true</c> if multiline; otherwise, <c>false</c>.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FileUpdate.Singleline">
<summary>
Gets or sets a value changing the meaning of the dot (.) so it matches
every character (instead of every character except \n).
</summary>
<value><c>true</c> if singleline; otherwise, <c>false</c>.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FileUpdate.ReplacementCount">
<summary>
Gets or sets the maximum number of times the replacement can occur.
</summary>
<value>The replacement count.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FileUpdate.ReplacementText">
<summary>
Gets or sets the replacement text.
</summary>
<value>The replacement text.</value>
</member>
<member name="T:MSBuild.Community.Tasks.FxCop">
<summary>
Uses FxCop to analyse managed code assemblies and reports on
their design best-practice compliance.
</summary>
<example>
<para>Shows how to analyse an assembly and use an XSLT stylesheet
to present the report as an HTML file. If the static anlysis fails,
the build does not stop - this is controlled with the <c>FailOnError</c>
parameter.</para>
<code><![CDATA[
<FxCop
TargetAssemblies="$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.dll"
RuleLibraries="@(FxCopRuleAssemblies)"
AnalysisReportFileName="Test.html"
DependencyDirectories="$(MSBuildCommunityTasksPath)"
FailOnError="False"
ApplyOutXsl="True"
OutputXslFileName="C:\Program Files\Microsoft FxCop 1.32\Xml\FxCopReport.xsl"
/>
]]></code>
</example>
<remarks>If you include the <c>MSBuild.Community.Tasks.Targets</c> file
in you build project, the ItemGroup <c>@(FxCopRuleAssemblies)</c> is defined
with the standard FxCop Rules Assemblies.</remarks>
</member>
<member name="M:MSBuild.Community.Tasks.FxCop.Execute">
<summary>
Executes the task.
</summary>
<returns><see langword="true"/> if the task ran successfully;
otherwise <see langword="false"/>.</returns>
</member>
<member name="M:MSBuild.Community.Tasks.FxCop.GenerateFullPathToTool">
<summary>
Returns the fully qualified path to the executable file.
</summary>
<returns>
The fully qualified path to the executable file.
</returns>
</member>
<member name="M:MSBuild.Community.Tasks.FxCop.GenerateCommandLineCommands">
<summary>
Returns a string value containing the command line arguments
to pass directly to the executable file.
</summary>
<returns>
A string value containing the command line arguments to pass
directly to the executable file.
</returns>
</member>
<member name="M:MSBuild.Community.Tasks.FxCop.GetWorkingDirectory">
<summary>
Returns the directory in which to run the executable file.
</summary>
<returns>
The directory in which to run the executable file,
or a null reference (Nothing in Visual Basic) if the executable file
should be run in the current directory.
</returns>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.ApplyOutXsl">
<summary>
Applies the XSL transformation specified in /outXsl to the
analysis report before saving the file.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.DirectOutputToConsole">
<summary>
Directs analysis output to the console or to the
Output window in Visual Studio .NET. By default,
the XSL file FxCopConsoleOutput.xsl is applied to the
output before it is displayed.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.DependencyDirectories">
<summary>
Specifies additional directories to search for assembly dependencies.
FxCopCmd always searches the target assembly directory and the current
working directory.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.TargetAssemblies">
<summary>
Specifies the target assembly to analyze.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.ConsoleXslFileName">
<summary>
Specifies the XSL or XSLT file that contains a transformation to
be applied to the analysis output before it is displayed in the console.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.ImportFiles">
<summary>
Specifies the name of an analysis report or project file to import.
Any messages in the imported file that are marked as excluded are not
included in the analysis results.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.RuleLibraries">
<summary>
Specifies the filename(s) of FxCop project file(s).
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.AnalysisReportFileName">
<summary>
Specifies the file name for the analysis report.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.OutputXslFileName">
<summary>
Specifies the XSL or XSLT file that is referenced by the
xml-stylesheet processing instruction in the analysis report.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.PlatformDirectory">
<summary>
Specifies the location of the version of Mscorlib.dll
that was used when building the target assemblies if this
version is not installed on the computer running FxCopCmd.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.ProjectFile">
<summary>
Specifies the filename of FxCop project file.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.IncludeSummaryReport">
<summary>
Includes a summary report with the informational
messages returned by FxCopCmd.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.TypeList">
<summary>
Comma-separated list of type names to analyze. This option disables
analysis of assemblies, namespaces, and resources; only the specified
types and their members are included in the analysis.
Use the wildcard character '*' at the end of the name to select multiple types.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.SaveResults">
<summary>
Saves the results of the analysis in the project file.
</summary>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.WorkingDirectory">
<summary>
Gets or sets the working directory.
</summary>
<value>The working directory.</value>
<returns>
The directory in which to run the executable file, or a null reference (Nothing in Visual Basic) if the executable file should be run in the current directory.
</returns>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.Verbose">
<summary>
Gets or sets a value indicating whether the output is verbose.
</summary>
<value><c>true</c> if verbose; otherwise, <c>false</c>.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.FailOnError">
<summary>
Gets or sets a value indicating whether the build should
fail if static code analysis reports errors. Defaults to
<c>true</c>.
</summary>
<value><c>true</c> if verbose; otherwise, <c>false</c>.</value>
</member>
<member name="P:MSBuild.Community.Tasks.FxCop.ToolName">
<summary>
Gets the name of the executable file to run.
</summary>
<value></value>
<returns>The name of the executable file to run.</returns>
</member>
<member name="T:MSBuild.Community.Tasks.IIS.WebBase">
<summary>
Base task for any IIS-related task
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -