From db4f0d70e5e1fb4775d609e2b2d02d4e1203bb31 Mon Sep 17 00:00:00 2001 From: Aaron LeMasters Date: Thu, 21 Nov 2024 13:24:31 -0500 Subject: [PATCH] Add default constructor to BackReference to allow XML serialization --- ParsedEtwTemplateItem.cs | 2 ++ etwlib.csproj | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ParsedEtwTemplateItem.cs b/ParsedEtwTemplateItem.cs index 551bdff..da68930 100644 --- a/ParsedEtwTemplateItem.cs +++ b/ParsedEtwTemplateItem.cs @@ -25,6 +25,8 @@ public class ParsedEtwTemplateItem : IEquatable, ICompara { public class Backreference { + public Backreference() { } // for serialization + public Backreference(int Index, bool IsCounted) { FieldIndex = Index; diff --git a/etwlib.csproj b/etwlib.csproj index c781e10..48c8e3d 100644 --- a/etwlib.csproj +++ b/etwlib.csproj @@ -17,7 +17,7 @@ True 1.1.0 1.1.0 - 1.11.1 + 1.11.2