Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public override string ToString()
{
builder.AppendLine(item);
}
builder.AppendLine($"#pragma warning disable CS8601");
builder.AppendLine($"#pragma warning disable 1591");
builder.AppendLine($"namespace {this.Namespace}");
builder.AppendLine("{");
Expand Down Expand Up @@ -122,6 +123,7 @@ public override string ToString()
builder.AppendLine("\t}");
builder.AppendLine("}");
builder.AppendLine("#pragma warning restore 1591");
builder.AppendLine("#pragma warning restore CS8601");

// System.Diagnostics.Debugger.Launch();
return builder.ToString();
Expand Down