Skip to content

Commit 693e485

Browse files
committed
generate documentation enabled
1 parent 36ee546 commit 693e485

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/Internal/JsonSerializerExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Internal
1010
/// <summary>
1111
/// Provides a method for serializing objects to JSON.
1212
/// </summary>
13-
/// <remarks>This type supports the <see cref="Fields"/> infrastructure and is not intended to be used directly
13+
/// <remarks>This type supports the <see cref="PartialResponse.Core.Fields"/> infrastructure and is not intended to be used directly
1414
/// from your code.</remarks>
1515
public static class JsonSerializerExtensions
1616
{
@@ -21,7 +21,7 @@ public static class JsonSerializerExtensions
2121
/// <param name="jsonSerializer">The <see cref="JsonSerializer"/> used to serialize the specified <see cref="Object"/>.</param>
2222
/// <param name="jsonWriter">The <see cref="JsonWriter"/> used to write the JSON structure.</param>
2323
/// <param name="value">The <see cref="Object"/> to serialize.</param>
24-
/// <param name="shouldSerialize">A <see cref="Func{string, bool}"/> that is called for every field in the
24+
/// <param name="shouldSerialize">A <see cref="Func{T, TResult}"/> that is called for every field in the
2525
/// <see cref="Object"/> to serialize, indicating whether the field should be serialized.</param>
2626
public static void Serialize(this JsonSerializer jsonSerializer, JsonWriter jsonWriter, object value, Func<string, bool> shouldSerialize)
2727
{

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/PartialJsonOutputFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class PartialJsonOutputFormatter : TextOutputFormatter
3232
/// </summary>
3333
/// <param name="serializerSettings">
3434
/// The <see cref="JsonSerializerSettings"/>. Should be either the application-wide settings
35-
/// (<see cref="MvcJsonOptions.SerializerSettings"/>) or an instance
35+
/// (<see cref="MvcPartialJsonOptions.SerializerSettings"/>) or an instance
3636
/// <see cref="JsonSerializerSettingsProvider.CreateSerializerSettings"/> initially returned.
3737
/// </param>
3838
/// <param name="charPool">The <see cref="ArrayPool{Char}"/>.</param>

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/PartialResponse.AspNetCore.Mvc.Formatters.Json.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<VersionPrefix>1.0.0-beta2</VersionPrefix>
77
<Authors>Arjen Post</Authors>
88
<TargetFrameworks>net451;netstandard1.6</TargetFrameworks>
9+
<NoWarn>$(NoWarn);CS1591</NoWarn>
10+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
911
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1012
<AssemblyName>PartialResponse.AspNetCore.Mvc.Formatters.Json</AssemblyName>
1113
<PackageId>PartialResponse.AspNetCore.Mvc.Formatters.Json</PackageId>

0 commit comments

Comments
 (0)