Browse Source

Fix CS1711 (XML comment has a typeparam tag, but there is no type parameter by that name)

tags/v0.20
Sam Harwell Haiping 5 years ago
parent
commit
5e2aa2bff5
3 changed files with 1 additions and 4 deletions
  1. +1
    -2
      Directory.Build.props
  2. +0
    -1
      src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs
  3. +0
    -1
      src/TensorFlowNET.Core/Sessions/BaseSession.cs

+ 1
- 2
Directory.Build.props View File

@@ -19,9 +19,8 @@
CS1570: XML comment has badly formed XML
CS1572: XML comment has a param tag, but there is no parameter by that name
CS1587: XML comment is not placed on a valid language element
CS1711: XML comment has a typeparam tag, but there is no type parameter by that name
-->
<NoWarn>$(NoWarn),1570,1572,1587,1711</NoWarn>
<NoWarn>$(NoWarn),1570,1572,1587</NoWarn>
</PropertyGroup>

</Project>

+ 0
- 1
src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs View File

@@ -18,7 +18,6 @@
/// <summary>
/// Returns a `Variable` object created from `variable_def`.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="proto"></param>
/// <param name="import_scope"></param>
/// <returns></returns>


+ 0
- 1
src/TensorFlowNET.Core/Sessions/BaseSession.cs View File

@@ -144,7 +144,6 @@ namespace Tensorflow
/// <summary>
/// Runs a step based on the given fetches and feeds.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="target_list">A list of operations to be run, but not fetched.</param>
/// <param name="fetch_list"></param>
/// <param name="feed_dict"></param>


Loading…
Cancel
Save