Skip to content

Commit 18dd699

Browse files
committed
Fix ImplementedFunction serialization error
1 parent 8528837 commit 18dd699

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/Core/Silk.NET.BuildTools/Common/ImplementedFunction.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System;
45
using System.Collections.Generic;
56
using System.IO;
67
using System.Text;
@@ -13,6 +14,12 @@ namespace Silk.NET.BuildTools.Common
1314
/// </summary>
1415
public class ImplementedFunction
1516
{
17+
/// <summary>
18+
/// Do not use, for serialization only.
19+
/// </summary>
20+
[Obsolete("Do not use, for serialization only.", true)]
21+
public ImplementedFunction() {}
22+
1623
/// <summary>
1724
/// Creates a new ImplementedFunction.
1825
/// </summary>

0 commit comments

Comments
 (0)