Skip to content

Commit

Permalink
Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
obones committed May 28, 2012
1 parent 2f186f3 commit daf4ce3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion project/core/tasks/XslTransformationTask.cs
Expand Up @@ -17,13 +17,21 @@
/// <title>XSL Transformation Task</title>
/// <version>1.7</version>
/// <example>
/// <code title="Example">
/// <code title="Simple example">
/// &lt;xslt&gt;
/// &lt;xmlfile&gt;XMLFile&lt;/xmlfile&gt;
/// &lt;xslfile&gt;XSLFile&lt;/xslfile&gt;
/// &lt;outputfile&gt;OutputFile&lt;/outputfile&gt;
/// &lt;/xslt&gt;
/// </code>
/// <code title="Full example">
/// &lt;xslt&gt;
/// &lt;xmlfile&gt;XMLFile&lt;/xmlfile&gt;
/// &lt;xslfile&gt;XSLFile&lt;/xslfile&gt;
/// &lt;outputfile&gt;OutputFile&lt;/outputfile&gt;
/// &lt;xsltArgs&gt;&lt;namedValue name="BuildDate" value="$[$CCNetBuildDate]" /&gt;&lt;/xsltArgs&gt;
/// &lt;/xslt&gt;
/// </code>
/// </example>
[ReflectorType("xslt")]
public class XslTransformationTask : TaskBase
Expand Down Expand Up @@ -57,6 +65,9 @@ public class XslTransformationTask : TaskBase

/// <summary>
/// The arguments to give to the XSL transformation.
/// You could use this to send an integration property (build date, build time, reason)
/// to the XSL stylesheet so that it can use it to generate the output.
/// Please see http://msdn.microsoft.com/en-us/library/dfktf882.aspx for detailed usage informations
/// </summary>
/// <version>1.7</version>
/// <default>n/a</default>
Expand Down

0 comments on commit daf4ce3

Please sign in to comment.