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:
Doug Bunting 2014-11-20 15:24:49 -08:00
parent 26034fb5b2
commit 8f81007517
6 changed files with 12 additions and 9 deletions

View File

@ -5,3 +5,6 @@ var AUTHORS='Microsoft Open Technologies, Inc.'
use-standard-lifecycle
k-standard-goals
#xml-docs-test target='test'
k-xml-docs-test

View File

@ -52,7 +52,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
public string TagName { get; private set; }
/// <summary>
/// The <see cref="ITagHelper">s' output.
/// The <see cref="ITagHelper"/>s' output.
/// </summary>
public TagHelperOutput Output { get; set; }

View File

@ -129,7 +129,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
/// <summary>
/// Generates the <see cref="TagHelperOutput"/>'s body.
/// </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>
public string GenerateContent()
{

View File

@ -52,7 +52,8 @@ namespace Microsoft.AspNet.Razor.Generator
public string TargetWriterName { get; set; }
/// <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>
public string Checksum { get; set; }
}

View File

@ -22,8 +22,8 @@ namespace Microsoft.AspNet.Razor.Parser
/// Initializes a new instance of <see cref="RazorParser"/>.
/// </summary>
/// <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="tagHelperDescriptorResolver">The <see cref=ITagHelperDescriptorResolver"/> used to resolve
/// <param name="markupParser">The <see cref="ParserBase"/> used for parsing markup content.</param>
/// <param name="tagHelperDescriptorResolver">The <see cref="ITagHelperDescriptorResolver"/> used to resolve
/// <see cref="TagHelperDescriptor"/>s.</param>
public RazorParser([NotNull] ParserBase codeParser,
[NotNull] ParserBase markupParser,
@ -59,8 +59,7 @@ namespace Microsoft.AspNet.Razor.Parser
public bool DesignTimeMode { get; set; }
/// <summary>
/// Gets the <see cref=ITagHelperDescriptorResolver"/> used to resolve
/// <see cref="TagHelperDescriptor"/>s.</param>
/// Gets the <see cref="ITagHelperDescriptorResolver"/> used to resolve <see cref="TagHelperDescriptor"/>s.
/// </summary>
protected ITagHelperDescriptorResolver TagHelperDescriptorResolver { get; private set; }

View File

@ -160,9 +160,9 @@ namespace Microsoft.AspNet.Razor
/// </summary>
/// <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
/// <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>,
/// 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>
/// <returns>A <see cref="GeneratorResults"/> that represents the results of parsing the content.</returns>
/// <remarks>