Skip to content

Commit

Permalink
fix xml doc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminAbt committed Apr 2, 2024
1 parent 49cd4ba commit d943dae
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 27 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
</PropertyGroup>

<PropertyGroup Condition="'$(IsTestProject)' != 'true' AND '$(IsBenchmarkProject)' != 'true'">
<GenerateDocumentationFile Condition="'$(Configuration)' == 'Release'">true</GenerateDocumentationFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/StrongOf.FluentValidation/StrongIn64Validators.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static class StrongIn64Validators
/// <typeparam name="T">The type of the object being validated.</typeparam>
/// <typeparam name="TStrong">The type of the strong Int64.</typeparam>
/// <param name="rule">The rule builder.</param>
/// <param name="min">The maximum value.</param>
/// <param name="max">The maximum value.</param>
/// <returns>The rule builder options.</returns>
public static IRuleBuilderOptions<T, TStrong?> HasMaximum<T, TStrong>(this IRuleBuilder<T, TStrong?> rule, long max)
where TStrong : StrongInt64<TStrong>
Expand Down
5 changes: 0 additions & 5 deletions src/StrongOf/StrongDateTime.Operators.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
namespace StrongOf;

/// <summary>
/// Represents a strongly typed DateTime value.
/// </summary>
/// <typeparam name="TStrong">The type of the strong DateTime.</typeparam>
/// <remarks>"The DateTime type has some design flaws. Please migrate to DateTimeOffset."</remarks>
public abstract partial class StrongDateTime<TStrong>
{
/// <summary>
Expand Down
4 changes: 0 additions & 4 deletions src/StrongOf/StrongDateTimeOffset.Operators.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
namespace StrongOf;

/// <summary>
/// Represents a strongly typed DateTimeOffset.
/// </summary>
/// <typeparam name="TStrong">The type of the strong DateTimeOffset.</typeparam>
public abstract partial class StrongDateTimeOffset<TStrong>
{
/// <summary>
Expand Down
4 changes: 0 additions & 4 deletions src/StrongOf/StrongInt32.Operators.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
namespace StrongOf;

/// <summary>
/// Represents a strong type of Int32.
/// </summary>
/// <typeparam name="TStrong">The type of the strong Int32.</typeparam>
public abstract partial class StrongInt32<TStrong>
{
/// <summary>
Expand Down
4 changes: 0 additions & 4 deletions src/StrongOf/StrongInt64.Operators.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
namespace StrongOf;

/// <summary>
/// Represents a strong type of Int64.
/// </summary>
/// <typeparam name="TStrong">The type of the strong Int64.</typeparam>
public abstract partial class StrongInt64<TStrong>
{
/// <summary>
Expand Down
4 changes: 0 additions & 4 deletions src/StrongOf/StrongString.Methods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

namespace StrongOf;

/// <summary>
/// Represents a strong string of a specific type.
/// </summary>
/// <typeparam name="TStrong">The type of the strong string.</typeparam>
public abstract partial class StrongString<TStrong>
{
/// <summary>
Expand Down
4 changes: 0 additions & 4 deletions src/StrongOf/StrongString.Properties.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
namespace StrongOf;

/// <summary>
/// Represents a strong string of a specific type.
/// </summary>
/// <typeparam name="TStrong">The type of the strong string.</typeparam>
public abstract partial class StrongString<TStrong>
{
/// <summary>
Expand Down

0 comments on commit d943dae

Please sign in to comment.