Skip to content

Commit 814e236

Browse files
authored
.Net - Fix to remove extraneous console output for declarative agents (#13216)
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> Extra and affects downstream tests. ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> Looks left-over. ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [X] The code builds clean without any errors or warnings - [X] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [X] All unit tests pass, and I have added new tests where possible - [X] I didn't break anyone 😄
1 parent d93eb5b commit 814e236

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

dotnet/src/Agents/Yaml/Extensions/YamlAgentDefinitionExtensions.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,6 @@ private static void NormalizeObject(object? obj, IConfiguration configuration)
6767
continue;
6868
}
6969

70-
if (property.Name.Equals("Options", StringComparison.OrdinalIgnoreCase))
71-
{
72-
Console.WriteLine("");
73-
}
74-
7570
var value = property.GetValue(obj);
7671
if (value is null)
7772
{

0 commit comments

Comments
 (0)