Skip to content

Commit

Permalink
Add default constructor to BackReference to allow XML serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
lilhoser committed Nov 21, 2024
1 parent 5012d82 commit db4f0d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ParsedEtwTemplateItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ public class ParsedEtwTemplateItem : IEquatable<ParsedEtwTemplateItem>, ICompara
{
public class Backreference
{
public Backreference() { } // for serialization

public Backreference(int Index, bool IsCounted)
{
FieldIndex = Index;
Expand Down
2 changes: 1 addition & 1 deletion etwlib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AssemblyVersion>1.1.0</AssemblyVersion>
<FileVersion>1.1.0</FileVersion>
<Version>1.11.1</Version>
<Version>1.11.2</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit db4f0d7

Please sign in to comment.