Add xml-docs-test target to end of default build
- #EngineeringDay - correct a couple of XML doc issues in the repo
This commit is contained in:
parent
26034fb5b2
commit
8f81007517
|
|
@ -5,3 +5,6 @@ var AUTHORS='Microsoft Open Technologies, Inc.'
|
||||||
|
|
||||||
use-standard-lifecycle
|
use-standard-lifecycle
|
||||||
k-standard-goals
|
k-standard-goals
|
||||||
|
|
||||||
|
#xml-docs-test target='test'
|
||||||
|
k-xml-docs-test
|
||||||
|
|
@ -52,7 +52,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
|
||||||
public string TagName { get; private set; }
|
public string TagName { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The <see cref="ITagHelper">s' output.
|
/// The <see cref="ITagHelper"/>s' output.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TagHelperOutput Output { get; set; }
|
public TagHelperOutput Output { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -129,7 +129,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Generates the <see cref="TagHelperOutput"/>'s body.
|
/// Generates the <see cref="TagHelperOutput"/>'s body.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns><c>string.Empty</c> if <see cref="SelfClosing"/> is <c>true</c>. <see cref="Output"/> otherwise.
|
/// <returns><c>string.Empty</c> if <see cref="SelfClosing"/> is <c>true</c>. <see cref="Content"/> otherwise.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public string GenerateContent()
|
public string GenerateContent()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,8 @@ namespace Microsoft.AspNet.Razor.Generator
|
||||||
public string TargetWriterName { get; set; }
|
public string TargetWriterName { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the <c>SHA1</c> based checksum for the file whose location is defined by <see cref="SourceFile"/>.
|
/// Gets or sets the <c>SHA1</c> based checksum for the file whose location is defined by
|
||||||
|
/// <see cref="CodeGeneratorContext.SourceFile"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Checksum { get; set; }
|
public string Checksum { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,8 @@ namespace Microsoft.AspNet.Razor.Parser
|
||||||
/// Initializes a new instance of <see cref="RazorParser"/>.
|
/// Initializes a new instance of <see cref="RazorParser"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="codeParser">The <see cref="ParserBase"/> used for parsing code content.</param>
|
/// <param name="codeParser">The <see cref="ParserBase"/> used for parsing code content.</param>
|
||||||
/// <param name="markupParser">The <see cref="ParserBase"/> used for parsing markpup content.</param>
|
/// <param name="markupParser">The <see cref="ParserBase"/> used for parsing markup content.</param>
|
||||||
/// <param name="tagHelperDescriptorResolver">The <see cref=ITagHelperDescriptorResolver"/> used to resolve
|
/// <param name="tagHelperDescriptorResolver">The <see cref="ITagHelperDescriptorResolver"/> used to resolve
|
||||||
/// <see cref="TagHelperDescriptor"/>s.</param>
|
/// <see cref="TagHelperDescriptor"/>s.</param>
|
||||||
public RazorParser([NotNull] ParserBase codeParser,
|
public RazorParser([NotNull] ParserBase codeParser,
|
||||||
[NotNull] ParserBase markupParser,
|
[NotNull] ParserBase markupParser,
|
||||||
|
|
@ -59,8 +59,7 @@ namespace Microsoft.AspNet.Razor.Parser
|
||||||
public bool DesignTimeMode { get; set; }
|
public bool DesignTimeMode { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the <see cref=ITagHelperDescriptorResolver"/> used to resolve
|
/// Gets the <see cref="ITagHelperDescriptorResolver"/> used to resolve <see cref="TagHelperDescriptor"/>s.
|
||||||
/// <see cref="TagHelperDescriptor"/>s.</param>
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected ITagHelperDescriptorResolver TagHelperDescriptorResolver { get; private set; }
|
protected ITagHelperDescriptorResolver TagHelperDescriptorResolver { get; private set; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -160,9 +160,9 @@ namespace Microsoft.AspNet.Razor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="inputStream">A <see cref="Stream"/> that represents the contents to be parsed.</param>
|
/// <param name="inputStream">A <see cref="Stream"/> that represents the contents to be parsed.</param>
|
||||||
/// <param name="className">The name of the generated class. When <c>null</c>, defaults to
|
/// <param name="className">The name of the generated class. When <c>null</c>, defaults to
|
||||||
/// <see cref="Host.DefaultClassName"/>.</param>
|
/// <see cref="RazorEngineHost.DefaultClassName"/> (<c>Host.DefaultClassName</c>).</param>
|
||||||
/// <param name="rootNamespace">The namespace in which the generated class will reside. When <c>null</c>,
|
/// <param name="rootNamespace">The namespace in which the generated class will reside. When <c>null</c>,
|
||||||
/// defaults to <see cref="Host.DefaultNamespace"/>.</param>
|
/// defaults to <see cref="RazorEngineHost.DefaultNamespace"/> (<c>Host.DefaultNamespace</c>).</param>
|
||||||
/// <param name="sourceFileName">The file name to use in line pragmas, usually the original Razor file.</param>
|
/// <param name="sourceFileName">The file name to use in line pragmas, usually the original Razor file.</param>
|
||||||
/// <returns>A <see cref="GeneratorResults"/> that represents the results of parsing the content.</returns>
|
/// <returns>A <see cref="GeneratorResults"/> that represents the results of parsing the content.</returns>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue