Skip to content

Commit 5e2aa2b

Browse files
sharwellOceania2018
authored andcommitted
Fix CS1711 (XML comment has a typeparam tag, but there is no type parameter by that name)
1 parent 55349f4 commit 5e2aa2b

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

Directory.Build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919
CS1570: XML comment has badly formed XML
2020
CS1572: XML comment has a param tag, but there is no parameter by that name
2121
CS1587: XML comment is not placed on a valid language element
22-
CS1711: XML comment has a typeparam tag, but there is no type parameter by that name
2322
-->
24-
<NoWarn>$(NoWarn),1570,1572,1587,1711</NoWarn>
23+
<NoWarn>$(NoWarn),1570,1572,1587</NoWarn>
2524
</PropertyGroup>
2625

2726
</Project>

src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public interface IProtoBuf<TProtoDef, TDef>
1818
/// <summary>
1919
/// Returns a `Variable` object created from `variable_def`.
2020
/// </summary>
21-
/// <typeparam name="T"></typeparam>
2221
/// <param name="proto"></param>
2322
/// <param name="import_scope"></param>
2423
/// <returns></returns>

src/TensorFlowNET.Core/Sessions/BaseSession.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ private NDArray[] _run(object fetches, FeedItem[] feed_dict = null)
144144
/// <summary>
145145
/// Runs a step based on the given fetches and feeds.
146146
/// </summary>
147-
/// <typeparam name="T"></typeparam>
148147
/// <param name="target_list">A list of operations to be run, but not fetched.</param>
149148
/// <param name="fetch_list"></param>
150149
/// <param name="feed_dict"></param>

0 commit comments

Comments
 (0)