You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Directory.Build.props 749 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project>
  3. <PropertyGroup>
  4. <!--
  5. Make sure any documentation comments which are included in code get checked for syntax during the build, but do
  6. not report warnings for missing comments.
  7. CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do)
  8. CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
  9. CS1712: Type parameter 'type_parameter' has no matching typeparam tag in the XML comment on 'type_or_member' (but other type parameters do)
  10. -->
  11. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  12. <NoWarn>$(NoWarn),1573,1591,1712</NoWarn>
  13. </PropertyGroup>
  14. </Project>