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

14 lines
429 B

  1. [*.cs]
  2. # CS4014: Because this call is not awaited, execution of the current method continues before the call is completed
  3. dotnet_diagnostic.CS4014.severity = error
  4. # CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
  5. dotnet_diagnostic.CS1591.severity = silent
  6. # C# styling
  7. csharp_style_namespace_declarations=file_scoped:error
  8. [*.{targets,csproj}]
  9. tab_width=2
  10. indent_style=space
  11. indent_size=2