Skip to content

Commit 259b9ea

Browse files
committed
RC2
1 parent 5e18068 commit 259b9ea

5 files changed

Lines changed: 3 additions & 401 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog - Agent Framework Toolkit
22

3-
## Unreleased
3+
## Version 1.0.0-rc2 (26th of Feb 2026)
44
- Bump Microsoft Agent Framework from v.1.0-rc1 to v.1.0-rc2
5+
- Removed `.RunAsync<T>(...)` polyfill (AIAgentExtensnions.cs) that dealt with [AF Issue #4118](https://github.com/microsoft/agent-framework/issues/4118) as it is now fixed.
56
- Added dedicated Constructors for the various Connection-Classes for easier construction.
67
- Bump ModelContextProtocol NuGet from 0.8.0-preview1 to 1.0.0
78
- Bump AWSSDK.BedrockRuntime" NuGet from 4.0.16 to 4.0.16.1

development/Sandbox/Providers/AzureOpenAI.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ public static async Task RunAsync()
4242

4343
AgentResponse<MathResult> response2B = await agent2B.RunAsync<MathResult>(question); //Fail do to Microsoft Bug
4444

45-
#pragma warning disable CS0618 // Type or member is obsolete
46-
AgentResponse<MathResult> response2BFix1 = await AgentFrameworkToolkit.AIAgentExtensions.RunAsync<MathResult>(agent2B, question);
47-
#pragma warning restore CS0618 // Type or member is obsolete
48-
4945
AgentResponse<MathResult> response3Fix2 = await ((Agent)agent2B).RunAsync<MathResult>(question);
5046

5147
}

nuget-package.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<!-- Central version prefix - applies to all nuget packages. -->
4-
<PackageVersion>1.0.0-rc1</PackageVersion>
4+
<PackageVersion>1.0.0-rc2</PackageVersion>
55
<Configurations>Debug;Release;Publish</Configurations>
66
<Title>Microsoft Agent Framework</Title>
77
<PackageReadmeFile>README.md</PackageReadmeFile>

src/AgentFrameworkToolkit/AIAgentExtensions.cs

Lines changed: 0 additions & 279 deletions
This file was deleted.

0 commit comments

Comments
 (0)