From f86347c06f3dd8e0dcf188a8126c693927c7450b Mon Sep 17 00:00:00 2001
From: markwallace-microsoft
<127216156+markwallace-microsoft@users.noreply.github.com>
Date: Mon, 6 Jan 2025 12:47:46 +0000
Subject: [PATCH] Bump YamlDotNet to 16.2.1
---
dotnet/Directory.Packages.props | 2 +-
.../Functions.Yaml/PromptExecutionSettingsTypeConverter.cs | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dotnet/Directory.Packages.props b/dotnet/Directory.Packages.props
index a032edea6116..6097e9a2134d 100644
--- a/dotnet/Directory.Packages.props
+++ b/dotnet/Directory.Packages.props
@@ -111,7 +111,7 @@
-
+
diff --git a/dotnet/src/Functions/Functions.Yaml/PromptExecutionSettingsTypeConverter.cs b/dotnet/src/Functions/Functions.Yaml/PromptExecutionSettingsTypeConverter.cs
index 12431752d6e5..410ad504bd30 100644
--- a/dotnet/src/Functions/Functions.Yaml/PromptExecutionSettingsTypeConverter.cs
+++ b/dotnet/src/Functions/Functions.Yaml/PromptExecutionSettingsTypeConverter.cs
@@ -25,7 +25,7 @@ public bool Accepts(Type type)
}
///
- public object? ReadYaml(IParser parser, Type type)
+ public object? ReadYaml(IParser parser, Type type, ObjectDeserializer rootDeserializer)
{
s_deserializer ??= new DeserializerBuilder()
.WithNamingConvention(UnderscoredNamingConvention.Instance)
@@ -58,7 +58,7 @@ public bool Accepts(Type type)
}
///
- public void WriteYaml(IEmitter emitter, object? value, Type type)
+ public void WriteYaml(IEmitter emitter, object? value, Type type, ObjectSerializer serializer)
{
throw new NotImplementedException();
}