Skip to content

Commit bebb9da

Browse files
committed
Added documentation XML output and fixed some XML comments.
1 parent f817b79 commit bebb9da

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/FluentNHibernate/FluentNHibernate.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<WarningLevel>4</WarningLevel>
2626
<NoWarn>1591</NoWarn>
2727
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
28+
<DocumentationFile>bin\Debug\FluentNHibernate.XML</DocumentationFile>
2829
</PropertyGroup>
2930
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3031
<DebugType>pdbonly</DebugType>

src/FluentNHibernate/Mapping/Builders/MapBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -630,8 +630,8 @@ public MapBuilder<TKey, TValue> ManyToMany(Action<ManyToManyBuilder> relationshi
630630
}
631631

632632
/// <summary>
633-
/// Specify this relationship as a many-to-many with the <see cref="relationshipColumn"/> column name,
634-
/// and type of <typeparam name="TChild" />
633+
/// Specify this relationship as a many-to-many with the <paramref name="relationshipColumn"/> column name,
634+
/// and type of <typeparamref name="TChild" />
635635
/// </summary>
636636
/// <param name="relationshipColumn">Column name</param>
637637
/// <typeparam name="TChild">Child type</typeparam>
@@ -646,7 +646,7 @@ public MapBuilder<TKey, TValue> ManyToMany<TChild>(string relationshipColumn)
646646
}
647647

648648
/// <summary>
649-
/// Specify this relationship as a many-to-many with the <see cref="relationshipColumn"/> column name
649+
/// Specify this relationship as a many-to-many with the <paramref name="relationshipColumn"/> column name
650650
/// </summary>
651651
/// <param name="relationshipColumn">Column name</param>
652652
/// <returns>Builder</returns>

0 commit comments

Comments
 (0)