Skip to content

Commit

Permalink
Disable XML comments for Codegen (#1839)
Browse files Browse the repository at this point in the history
* Disable XML comments for Codegen

* .
  • Loading branch information
rogeralsing committed Oct 27, 2022
1 parent 8423917 commit 1c9562b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Proto.Cluster.CodeGen/Template.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public static class Template
{
public const string DefaultTemplate = @"
#nullable enable
#pragma warning disable 1591
using System;
using System.Threading;
using System.Threading.Tasks;
Expand Down
1 change: 1 addition & 0 deletions tests/Proto.Cluster.CodeGen.Tests/ExpectedOutput.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#nullable enable
#pragma warning disable 1591
using System;
using System.Threading;
using System.Threading.Tasks;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#nullable enable
#pragma warning disable 1591
using System;
using System.Threading;
using System.Threading.Tasks;
Expand Down

0 comments on commit 1c9562b

Please sign in to comment.