/tools/nant/NAnt.Contrib.Tasks.xml
http://github.com/philiplaureano/LinFu · XML · 18933 lines · 18931 code · 2 blank · 0 comment · 0 complexity · 996c18b83e8fcfe897def53448d66db5 MD5 · raw file
Large files are truncated click here to view the full file
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>NAnt.Contrib.Tasks</name>
- </assembly>
- <members>
- <member name="T:NAnt.Contrib.Functions.FileSetFunctions">
- <summary>
- Provides methods for interrogating Filesets.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Functions.FileSetFunctions.GetFileCount(System.String)">
- <summary>
- Determines the number of files within a <see cref="T:NAnt.Core.Types.FileSet"/>.
- </summary>
- <param name="fileset">The id of the FileSet to scan.</param>
- <returns>The number of files included in the FileSet</returns>
- <exception cref="T:System.ArgumentException"><paramref name="fileset"/> is not a valid refid to a defined fileset.</exception>
- <example>
- <para>
- Define a fileset and check the number of files in it.
- </para>
- <code>
- <![CDATA[
- <fileset id="test.fileset">
- <include name="**/*.cs">
- </fileset>
- <echo message="FileSet contains ${fileset::get-file-count('test.fileset')} files." />
- ]]>
- </code>
- </example>
- </member>
- <member name="M:NAnt.Contrib.Functions.FileSetFunctions.HasFiles(System.String)">
- <summary>
- Determines whether <see cref="T:NAnt.Core.Types.FileSet"/> contains any files.
- </summary>
- <param name="fileset">The id of the fileset to check.</param>
- <returns><see langword="true"/> if the FileSet contains one or more files, otherwise <see langword="false"/>.</returns>
- <exception cref="T:System.ArgumentException"><paramref name="fileset"/> is not a valid refid to a defined fileset.</exception>
- <example>
- <para>
- Perform conditional processing on a fileset if it contains files.
- </para>
- <code>
- <![CDATA[
- <fileset id="test.fileset">
- <include name="**/*.cs">
- </fileset>
- <if test="${fileset::has-files('test.fileset')}">
- <dostuff... />
- </if>
- ]]>
- </code>
- </example>
- </member>
- <member name="M:NAnt.Contrib.Functions.FileSetFunctions.ToString(System.String,System.String)">
- <summary>
- Returns a delimited string of all the filenames within a <see cref="T:NAnt.Core.Types.FileSet"/> with each filename
- separated by the specified delimiter string.
- </summary>
- <param name="fileset">The id of the fileset to check.</param>
- <param name="delimiter">String to separate filenames with.</param>
- <returns>A delimited string of the filenames within the specified FileSet.</returns>
- <exception cref="T:System.ArgumentException"><paramref name="fileset"/> is not a valid refid to a defined fileset.</exception>
- <example>
- <para>
- Displays a space-pipe-space separated string fo the files within a defined FileSet.
- </para>
- <code>
- <![CDATA[
- <fileset id="test.fileset">
- <include name="**/*.cs">
- </fileset>
- <echo message="${fileset::to-string('test.fileset', ' | ')}">
- ]]>
- </code>
- </example>
- </member>
- <member name="T:NAnt.Contrib.Functions.ServiceFunctions">
- <summary>
- Allow information on a Windows service to be retrieved.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Functions.ServiceFunctions.IsInstalled(System.String,System.String)">
- <summary>
- Returns a value indicating whether the specified service is
- installed on a given machine.
- </summary>
- <param name="service">The short name that identifies the service to the system.</param>
- <param name="machineName">The computer on which the service resides.</param>
- <returns>
- <see langword="true"/> if the service is installed; otherwise,
- <see langword="false"/>.
- </returns>
- <remarks>
- For the machineName parameter, you can use "." or a zero-length
- <see cref="T:System.String"/> to represent the local computer.
- </remarks>
- <example>
- <para>
- The following example starts the "World Wide Web Publishing"
- service if it's installed on the local computer.
- </para>
- <code>
- <![CDATA[
- <if test="${service::is-installed('World Wide Web Publishing', '.')}">
- <servicecontroller action="Start" service="World Wide Web Publishing" />
- </if>
- ]]>
- </code>
- </example>
- </member>
- <member name="M:NAnt.Contrib.Functions.ServiceFunctions.IsRunning(System.String,System.String)">
- <summary>
- Returns a value indicating whether the specified service is running.
- </summary>
- <param name="service">The short name that identifies the service to the system.</param>
- <param name="machineName">The computer on which the service resides.</param>
- <returns>
- <see langword="true"/> if the service is running; otherwise,
- <see langword="false"/>.
- </returns>
- <remarks>
- For the machineName parameter, you can use "." or a zero-length
- <see cref="T:System.String"/> to represent the local computer.
- </remarks>
- </member>
- <member name="M:NAnt.Contrib.Functions.ServiceFunctions.IsStopped(System.String,System.String)">
- <summary>
- Returns a value indicating whether the specified service is stopped.
- </summary>
- <param name="service">The short name that identifies the service to the system.</param>
- <param name="machineName">The computer on which the service resides.</param>
- <returns>
- <see langword="true"/> if the service is stopped; otherwise,
- <see langword="false"/>.
- </returns>
- <remarks>
- For the machineName parameter, you can use "." or a zero-length
- <see cref="T:System.String"/> to represent the local computer.
- </remarks>
- </member>
- <member name="M:NAnt.Contrib.Functions.ServiceFunctions.IsPaused(System.String,System.String)">
- <summary>
- Returns a value indicating whether the specified service is paused.
- </summary>
- <param name="service">The short name that identifies the service to the system.</param>
- <param name="machineName">The computer on which the service resides.</param>
- <returns>
- <see langword="true"/> if the service is paused; otherwise,
- <see langword="false"/>.
- </returns>
- <remarks>
- For the machineName parameter, you can use "." or a zero-length
- <see cref="T:System.String"/> to represent the local computer.
- </remarks>
- </member>
- <member name="M:NAnt.Contrib.Functions.ServiceFunctions.GetStatus(System.String,System.String)">
- <summary>
- Gets the status of the specified service.
- </summary>
- <param name="service">The short name that identifies the service to the system.</param>
- <param name="machineName">The computer on which the service resides.</param>
- <returns>
- One of the <see cref="T:System.ServiceProcess.ServiceControllerStatus"/> values that
- indicates whether the service is running, stopped, or paused, or
- whether a start, stop, pause, or continue command is pending.
- </returns>
- <remarks>
- <para>
- For the machineName parameter, you can use "." or a zero-length
- <see cref="T:System.String"/> to represent the local computer.
- </para>
- <para>
- The value returned by <see cref="M:NAnt.Contrib.Functions.ServiceFunctions.GetStatus(System.String,System.String)"/> can be compared
- to either a corresponding enum field name or the underlying
- integral value.
- </para>
- </remarks>
- <example>
- <para>
- Displays a warning if the <b>Alerter</b> service is stopping
- on <c>SV-ARD-EAI1</c>.
- </para>
- <code>
- <![CDATA[
- <if test="${service::get-status('Alerter', 'SV-ARD-EAI1') == 'StopPending'}">
- <echo level="Warning">The Alerter service is stopping.</echo>
- </if>
- ]]>
- </code>
- </example>
- <example>
- <para>
- The "deploy-web-application" target is only executed if
- IIS is running on the local computer.
- </para>
- <code>
- <![CDATA[
- <target name="deploy" depends="deploy-sql-scripts, deploy-web-application" />
-
- <target name="deploy-sql-scripts">
- ...
- </target>
-
- <target name="deploy-web-application" if="$(service::get-status('World Wide Web Publishing', '.') == 4)}">
- ...
- </target>
- ]]>
- </code>
- </example>
- </member>
- <member name="M:NAnt.Contrib.Functions.ServiceFunctions.GetDisplayName(System.String,System.String)">
- <summary>
- Gets the friendly name of the specified service.
- </summary>
- <param name="service">The short name that identifies the service to the system.</param>
- <param name="machineName">The computer on which the service resides.</param>
- <returns>
- The friendly name of the service, which can be used to identify the service.
- </returns>
- </member>
- <member name="M:NAnt.Contrib.Functions.ServiceFunctions.GetServiceName(System.String,System.String)">
- <summary>
- Gets the name that identifies the specified service
- </summary>
- <param name="service">The short name that identifies the service to the system.</param>
- <param name="machineName">The computer on which the service resides.</param>
- <returns>
- The name that identifies the service.
- </returns>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.BizTalkBase.Database">
- <summary>
- The name of the management SQL database.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.BizTalkBase.Server">
- <summary>
- The name of the SQL Server where the management database is
- located.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Deploy">
- <summary>
- Deploys an assembly to a given BizTalk configuration database.
- </summary>
- <remarks>
- Deployment will fail if the assembly is already deployed.
- </remarks>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Deploy.ExecuteTask">
- <summary>
- Deploys the assembly.
- </summary>
- <exception cref="T:NAnt.Core.BuildException">
- <para>The assembly does not exist.</para>
- <para>-or-</para>
- <para>The assembly binding information file does not exist.</para>
- <para>-or-</para>
- <para>The assembly could not be deployed.</para>
- </exception>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Deploy.Assembly">
- <summary>
- The path to the BizTalk assembly to deploy.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Deploy.Install">
- <summary>
- Determines whether to install the assembly in the Global Assembly
- Cache. The default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Deploy.BindingFile">
- <summary>
- The path to an assembly binding information file to import bindings
- from.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Deploy.LogFile">
- <summary>
- The path to the HTML log file to generate.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Export">
- <summary>
- Exports bindings for a BizTalk assembly to an assembly binding
- information file.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Export.ExecuteTask">
- <summary>
- Exports the bindings.
- </summary>
- <exception cref="T:NAnt.Core.BuildException">
- <para>The assembly does not exist.</para>
- <para>-or-</para>
- <para>The bindings could not be exported.</para>
- </exception>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Export.Assembly">
- <summary>
- The path to the BizTalk assembly for which to export bindings.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Export.BindingFile">
- <summary>
- The path to an assembly binding information file in which the
- bindings will be saved.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Export.LogFile">
- <summary>
- The path to the HTML log file to generate.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Host">
- <summary>
- Allows BizTalk (in-process) host instances to be controlled.
- </summary>
- <example>
- <para>
- Starts the "BizTalkServerApplication" host instance
- on server "SV-ARD-EAI".
- </para>
- <code>
- <![CDATA[
- <btshost action="Start" host="BizTalkServerApplication" server="SV-ARD-EAI" />
- ]]>
- </code>
- </example>
- <example>
- <para>
- Stops all "BizTalkServerApplication" host instances.
- </para>
- <code>
- <![CDATA[
- <btshost action="Stop" host="BizTalkServerApplication" />
- ]]>
- </code>
- </example>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Host.HostName">
- <summary>
- The name of the host on which the perform the action.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Host.Server">
- <summary>
- The name of the BizTalk server on which to perform the action.
- If not specified, the action will be performed on all instances.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Host.Action">
- <summary>
- The action that should be performed on the host.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Host.HostAction">
- <summary>
- Defines the actions that can be performed on a host instance.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.Host.HostAction.Start">
- <summary>
- Starts the host instance.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.Host.HostAction.Stop">
- <summary>
- Stops the host instance.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.Host.HostAction.Restart">
- <summary>
- Stops and restarts the host instance.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Import">
- <summary>
- Imports bindings from a given assembly binding information file into
- the specified BizTalk configuration database.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Import.ExecuteTask">
- <summary>
- Imports the assembly binding information file.
- </summary>
- <exception cref="T:NAnt.Core.BuildException">
- <para>The assembly binding information file does not exist.</para>
- <para>-or-</para>
- <para>The assembly binding information file could not be imported.</para>
- </exception>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Import.BindingFile">
- <summary>
- The path to the assembly binding information file containing the
- bindings to import.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Import.LogFile">
- <summary>
- The path to the HTML log file to generate.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Orchestration">
- <summary>
- Performs a set of actions on a given orchestration.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.Server">
- <summary>
- The name of the BizTalk server on which to perform the action.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.OrchestrationName">
- <summary>
- The name of the orchestration to perform an action on.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Orchestration.OrchestrationActionBase.Log(NAnt.Core.Level,System.String)">
- <summary>
- Logs a message with the given priority.
- </summary>
- <param name="messageLevel">The message priority at which the specified message is to be logged.</param>
- <param name="message">The message to be logged.</param>
- <remarks>
- The actual logging is delegated to the project.
- </remarks>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Orchestration.OrchestrationActionBase.Log(NAnt.Core.Level,System.String,System.Object[])">
- <summary>
- Logs a message with the given priority.
- </summary>
- <param name="messageLevel">The message priority at which the specified message is to be logged.</param>
- <param name="message">The message to log, containing zero or more format items.</param>
- <param name="args">An <see cref="T:System.Object"/> array containing zero or more objects to format.</param>
- <remarks>
- The actual logging is delegated to the project.
- </remarks>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Orchestration.StartOrchestrationAction">
- <summary>
- Starts the orchestration.
- </summary>
- <remarks>
- If the orchestration is not yet enlisted, then this will be done
- first.
- </remarks>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.StartOrchestrationAction.AutoEnableReceiveLocation">
- <summary>
- Specifies whether receive locations associated with this
- orchestration should be automatically enabled. The default is
- <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.StartOrchestrationAction.AutoResumeOrchestrationInstance">
- <summary>
- Specifies whether service instances of this orchestration that
- were manually suspended previously should be automatically
- resumed. The default is <see langword="true" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.StartOrchestrationAction.AutoStartSendPorts">
- <summary>
- Specifies whether send ports and send port groups imported by
- this orchestration should be automatically started. The default
- is <see langword="true" />.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Orchestration.StopOrchestrationAction">
- <summary>
- Stops the orchestration.
- </summary>
- <remarks>
- If the status of the orchestration is <see cref="F:NAnt.Contrib.Types.BizTalk.ServiceStatus.Bound"/>,
- <see cref="F:NAnt.Contrib.Types.BizTalk.ServiceStatus.Unbound"/> or <see cref="F:NAnt.Contrib.Types.BizTalk.ServiceStatus.Stopped"/>,
- then no further processing is done.
- </remarks>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Orchestration.StopOrchestrationAction.Invoke(System.Management.ManagementObject)">
- <summary>
- Stops the orchestration.
- </summary>
- <param name="orchestration">The orchestration to stop.</param>
- <remarks>
- If the status of orchestration is <see cref="F:NAnt.Contrib.Types.BizTalk.ServiceStatus.Bound"/>,
- <see cref="F:NAnt.Contrib.Types.BizTalk.ServiceStatus.Unbound"/> or <see cref="F:NAnt.Contrib.Types.BizTalk.ServiceStatus.Stopped"/>,
- then no further processing is done.
- </remarks>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.StopOrchestrationAction.AutoDisableReceiveLocation">
- <summary>
- Specifies whether receive locations associated with this
- orchestration should be automatically disabled. The default
- is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.StopOrchestrationAction.AutoSuspendOrchestrationInstance">
- <summary>
- Specifies whether instances of this orchestration should be
- automatically suspended. The default is <see langword="true" />.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Orchestration.EnlistOrchestrationAction">
- <summary>
- Enlists the orchestration by creating its activation subscription.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.EnlistOrchestrationAction.Host">
- <summary>
- Specifies the BizTalk host on which to enlist the orchestration.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Orchestration.UnenlistOrchestrationAction">
- <summary>
- Unenlists the orchestration by removing its activation subscription.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Orchestration.UnenlistOrchestrationAction.AutoTerminateOrchestrationInstance">
- <summary>
- Specifies whether instances of this orchestration type should
- be automatically terminated. The default is <see langword="false" />.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Reset">
- <summary>
- Allows stopping, starting and resetting of BizTalk in-process host
- instances on the specified server.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Reset.Server">
- <summary>
- The name of the BizTalk server on which to perform the action.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Reset.Action">
- <summary>
- Specifies the action(s) to perform on the BizTalk host instances. The
- default is <see cref="F:NAnt.Contrib.Tasks.BizTalk.Reset.ResetAction.Reset"/>.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Reset.ResetAction">
- <summary>
- Defines the possible actions that can be performed on the BizTalk
- in-process host instances.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.Reset.ResetAction.Stop">
- <summary>
- Stops all in-process host instances.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.Reset.ResetAction.Start">
- <summary>
- Starts all in-process host instances.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.Reset.ResetAction.Reset">
- <summary>
- Stops and restarts all in-process host instances.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.SendPort">
- <summary>
- Allows BizTalk send ports to be controlled.
- </summary>
- <example>
- <para>
- Starts the "UmeHttpSendPort" port on server
- "SV-ARD-EAI".
- </para>
- <code>
- <![CDATA[
- <btssendport action="Start" port="UmeHttpSendPort" server="SV-ARD-EAI" />
- ]]>
- </code>
- </example>
- <example>
- <para>
- Unenlists the "UmeHttpSendPort" on server "SV-ARD-EAI".
- </para>
- <code>
- <![CDATA[
- <btssendport action="UnEnlist" port="UmeHttpSendPort" server="SV-ARD-EAI" />
- ]]>
- </code>
- </example>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.SendPort.PortName">
- <summary>
- The name of the send port on which the perform the action.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.SendPort.Server">
- <summary>
- The name of the BizTalk server on which to perform the action.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.SendPort.Action">
- <summary>
- The action that should be performed on the send port.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.SendPort.SendPortAction">
- <summary>
- Defines the actions that can be performed on a BizTalk send port.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.SendPort.SendPortAction.Start">
- <summary>
- Starts the send port.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.SendPort.SendPortAction.Stop">
- <summary>
- Stops the send port.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.SendPort.SendPortAction.Restart">
- <summary>
- Stops and restarts the send port.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.SendPort.SendPortAction.Enlist">
- <summary>
- Enlists the send port.
- </summary>
- </member>
- <member name="F:NAnt.Contrib.Tasks.BizTalk.SendPort.SendPortAction.UnEnlist">
- <summary>
- Unenlists the send port.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Unbind">
- <summary>
- Removes all bindings for a given assembly from a BizTalk configuration
- database.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Unbind.ExecuteTask">
- <summary>
- Removes bindings for the specified assembly.
- </summary>
- <exception cref="T:NAnt.Core.BuildException">
- <para>The assembly does not exist.</para>
- <para>-or-</para>
- <para>The bindings could not be removed.</para>
- </exception>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Unbind.Assembly">
- <summary>
- The path to the BizTalk assembly for which to remove all bindings.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Unbind.Server">
- <summary>
- The name of the BizTalk server on which to perform the operation.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Unbind.ReceivePipeline">
- <summary>
- The assembly qualified name of the receive pipeline to set when
- unbinding a receive pipeline.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Unbind.SendPipeline">
- <summary>
- The assembly qualified name of the SEND pipeline to set when
- unbinding a send pipeline.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.BizTalk.Undeploy">
- <summary>
- Removes a given assembly from a BizTalk configuration database.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Tasks.BizTalk.Undeploy.ExecuteTask">
- <summary>
- Removes an assembly from a BizTalk configuration database.
- </summary>
- <exception cref="T:NAnt.Core.BuildException">
- <para>The assembly does not exist.</para>
- <para>-or-</para>
- <para>The assembly could not be remove from the BizTalk configuration database.</para>
- </exception>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Undeploy.Assembly">
- <summary>
- The path to the BizTalk assembly to remove.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Undeploy.Uninstall">
- <summary>
- Determines whether to remove the assembly from the Global Assembly
- Cache. The default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.BizTalk.Undeploy.LogFile">
- <summary>
- The path to the HTML log file to generate.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseBase">
- <summary>
- Base class for all the ClearCase tasks.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Tasks.ClearCase.ClearCaseBase.#ctor">
- <summary>
- Base Constructor.
- </summary>
- </member>
- <member name="M:NAnt.Contrib.Tasks.ClearCase.ClearCaseBase.ExecuteTask">
- <summary>
- Execute the perforce command assembled by subclasses.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseBase.CommandSpecificArguments">
- <summary>
- Derived classes should override this to provide command-specific
- commandline arguments.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseBase.ProgramArguments">
- <summary>
- Overrides the base class.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseCatCs">
- <summary>
- Displays a ClearCase config spec.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCatCs.ViewTag">
- <summary>
- The view tag identifying the ClearCase view that will have its
- config spec displayed.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCatCs.CommandSpecificArguments">
- <summary>
- This is an override used by the base class to get command specific args.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn">
- <summary>
- Checks files into a ClearCase VOB.
- <seealso cref="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut"/>
- <seealso cref="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseUnCheckOut"/>
- </summary>
- <remarks>
- <para>
- This task uses the <c>cleartool checkin</c> command to check in ClearCase elements.
- </para>
- </remarks>
- <example>
- <para>
- Performs a ClearCase checkin on the file <c>c:/views/viewdir/afile</c>.
- All warning messages are suppressed, and the element is checked in even if identical to the original.
- Comment text from the file <c>acomment.txt</c> is added to ClearCase as a comment. All warning messages are suppressed. The file is checked in even if it is identical to the original.
- </para>
- <code>
- <![CDATA[
- <cccheckin viewpath="c:/views/viewdir/afile"
- commentfile="acomment.txt"
- nowarn="true"
- identical="true"/>
- ]]>
- </code>
- </example>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.ViewPath">
- <summary>
- Path to the ClearCase view file or directory that the command will
- operate on.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.Comment">
- <summary>
- Specify a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.Comment"/> or
- <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.CommentFile">
- <summary>
- Specify a file containing a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.Comment"/>
- or <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.NoWarn">
- <summary>
- <see langword="true" /> if warning messages should be suppressed.
- The default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.PreserveTime">
- <summary>
- If <see langword="true" />, the modification time will be preserved.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.KeepCopy">
- <summary>
- <see langword="true" /> to keep a view-private copy of the file with
- a .keep extension. Default is <see langword="true" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.Identical">
- <summary>
- If <see langword="true" />, files may be checked in even if identical
- to the original. Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn.CommandSpecificArguments">
- <summary>
- This is an override used by the base class to get command specific args.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut">
- <summary>
- Checks files out of a ClearCase VOB.
- <seealso cref="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn"/>
- <seealso cref="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseUnCheckOut"/>
- </summary>
- <remarks>
- <para>
- This task uses the <c>cleartool checkout</c> command to check out ClearCase elements.
- </para>
- </remarks>
- <example>
- <para>
- Performs a ClearCase checkout on the file <c>c:/views/viewdir/afile</c>.
- It is checked out as reserved on branch called <c>abranch</c>.
- All warning messages are suppressed.
- <c>Some comment text</c> is added to ClearCase as a comment.
- </para>
- <code>
- <![CDATA[
- <cccheckout viewpath="c:/views/viewdir/afile"
- reserved="true"
- branch="abranch"
- nowarn="true"
- comment="Some comment text"/>
- ]]>
- </code>
- </example>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.ViewPath">
- <summary>
- Path to the ClearCase view file or directory that the command will
- operate on.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.Reserved">
- <summary>
- <see langword="true" /> to check the element out as reserved.
- Default is <see langword="true" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.OutFile">
- <summary>
- Creates a writable file under a different filename.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.NoData">
- <summary>
- If <see langword="true" />, checks out the file but does not create
- an editable file containing its data. Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.Branch">
- <summary>
- Specify a branch to check out the file to.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.Version">
- <summary>
- If <see langword="true" />, checkouts of elements with a version
- other than main latest will be allowed. Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.NoWarn">
- <summary>
- <see langword="true" /> if warning messages should be suppressed.
- The default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.Comment">
- <summary>
- Specify a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.Comment"/> or
- <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.CommentFile">
- <summary>
- Specify a file containing a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.Comment"/>
- or <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.PreserveTime">
- <summary>
- If <see langword="true" />, the modification time will be preserved.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut.CommandSpecificArguments">
- <summary>
- This is an override used by the base class to get command specific args.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock">
- <summary>
- Locks ClearCase elements.
- <seealso cref="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseUnLock"/>
- </summary>
- <remarks>
- <para>
- This task uses the <c>cleartool lock</c> command to lock ClearCase elements.
- </para>
- </remarks>
- <example>
- <para>
- Performs a ClearCase lock on the object <c>stream:Application_Integration@\MyProject_PVOB</c>.
- </para>
- <code>
- <![CDATA[
- <cclock objsel="stream:Application_Integration@\MyProject_PVOB" />
- ]]>
- </code>
- </example>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Replace">
- <summary>
- If <see langword="true" /> an existing lock can be replaced.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Nusers">
- <summary>
- Specifies user(s) who can still modify the object.
- Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Nusers"/> or <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Obsolete"/> may be
- used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Obsolete">
- <summary>
- If <see langword="true"/> the object will be marked obsolete.
- Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Nusers"/> or <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Obsolete"/> may
- be used. Default is <see langword="false"/>.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Comment">
- <summary>
- Specify a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Comment"/> or
- <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.CommentFile">
- <summary>
- Specify a file containing a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Comment"/>
- or <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.Pname">
- <summary>
- Specifies the object pathname to be locked.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.ObjSel">
- <summary>
- Specifies the object(s) to be locked.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock.CommandSpecificArguments">
- <summary>
- This is an override used by the base class to get command specific args.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem">
- <summary>
- Creates elements in a ClearCase VOB.
- </summary>
- <remarks>
- <para>
- This task uses the <c>cleartool mkelem</c> command to create ClearCase elements.
- </para>
- </remarks>
- <example>
- <para>
- Performs a ClearCase mkelem on the file <c>c:/views/viewdir/afile</c> with element type <c>text_file</c>.
- It checks in the file after creation and adds <c>Some comment text</c> as a comment.
- </para>
- <code>
- <![CDATA[
- <ccmkelem viewpath="c:/views/viewdir/afile"
- eltype="text_file"
- checkin="true"
- comment="Some comment text"/>
- ]]>
- </code>
- </example>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.ViewPath">
- <summary>
- Path to the ClearCase view file or directory that the command will
- operate on.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.Comment">
- <summary>
- Specify a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.Comment"/> or
- <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.CommentFile">
- <summary>
- Specify a file containing a comment. Only one of <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.Comment"/>
- or <see cref="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.CommentFile"/> may be used.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.NoWarn">
- <summary>
- If <see langword="true" />, warning will be suppressed.
- The default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.NoCheckout">
- <summary>
- Perform a checkout after element creation.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.Checkin">
- <summary>
- Checkin element after creation.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.PreserveTime">
- <summary>
- If <see langword="true" />, the modification time will be preserved.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.Master">
- <summary>
- Assign mastership of the main branch to the current site.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.ElType">
- <summary>
- Element type to use during element creation.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.MkPath">
- <summary>
- Create elements from the view-private parent directories.
- Default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem.CommandSpecificArguments">
- <summary>
- This is an override used by the base class to get command specific args.
- </summary>
- </member>
- <member name="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLabel">
- <summary>
- Applies a ClearCase label.
- <seealso cref="T:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLbType"/>
- </summary>
- <remarks>
- <para>
- This task uses the <c>cleartool mklabel</c> command to apply a ClearCase label to specified elements.
- </para>
- </remarks>
- <example>
- <para>
- Performs a ClearCase mklabel on the file <c>c:/views/viewdir/afile</c> under
- the <c>main</c> branch for <c>version 2</c> (<c>\main\2</c>). All matching
- elements will be applied with label <c>VERSION_1</c>.
- <c>Some comment text</c> is added as a comment. Subdirectories will be recursed.
- </para>
- <code>
- <![CDATA[
- <ccmklabel viewpath="c:/views/viewdir/afile"
- comment="Some comment text"
- recurse="true"
- version="\main\2"
- typename="VERSION_1"/>
- ]]>
- </code>
- </example>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLabel.Typename">
- <summary>
- Name of the label type
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLabel.ViewPath">
- <summary>
- Path to the ClearCase view file or directory that the command will
- operate on.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLabel.Replace">
- <summary>
- If <see langword="true" />, allow the replacement of a
- label of the same type on the same branch.
- The default is <see langword="false" />.
- </summary>
- </member>
- <member name="P:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLabel.Recurse">
- <summary>…