Skip to content

Commit

Permalink
Fix ImplementedFunction serialization error
Browse files Browse the repository at this point in the history
  • Loading branch information
Perksey committed Oct 31, 2024
1 parent 8528837 commit 18dd699
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Core/Silk.NET.BuildTools/Common/ImplementedFunction.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
Expand All @@ -13,6 +14,12 @@ namespace Silk.NET.BuildTools.Common
/// </summary>
public class ImplementedFunction
{
/// <summary>
/// Do not use, for serialization only.
/// </summary>
[Obsolete("Do not use, for serialization only.", true)]
public ImplementedFunction() {}

/// <summary>
/// Creates a new ImplementedFunction.
/// </summary>
Expand Down

0 comments on commit 18dd699

Please sign in to comment.