Skip to content

Commit 4f36526

Browse files
committed
Disable debug output on signature generator
- bump version to 2.8. Signed-off-by: José Simões <[email protected]>
1 parent 36c3bd9 commit 4f36526

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/MetadataProcessor.Core/Tables/nanoSignaturesTable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ static nanoSignaturesTable()
8181
/// </summary>
8282
private readonly nanoTablesContext _context;
8383

84-
private readonly bool _verbose;
84+
private readonly bool _verbose = false;
8585

8686
/// <summary>
8787
/// Last available signature id (offset in resulting table).
@@ -98,7 +98,7 @@ public nanoSignaturesTable(nanoTablesContext context)
9898
{
9999
_context = context;
100100

101-
_verbose = true;
101+
//_verbose = true;
102102
}
103103

104104
/// <summary>

source/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "2.7",
3+
"version": "2.8",
44
"assemblyVersion": {
55
"precision": "revision"
66
},

0 commit comments

Comments
 (0)