From 478e7911b2ae2cbc72218faee41a5cd7f35db6c0 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 1 Sep 2026 14:45:05 +0000
Subject: [PATCH 1/9] Initial plan
From 038bf6234036d2f39303f6f8f935ac902a97f1c5 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 1 Sep 2026 14:53:17 +0000
Subject: [PATCH 2/9] Register Durable Task extension via dedicated shim
assembly
Co-authored-by: kshyju <144469+kshyju@users.noreply.github.com>
---
.github/workflows/dotnet-build-and-test.yml | 4 ++
dotnet/agent-framework-durable-extension.slnx | 1 +
...AzureFunctions.DurableTaskExtension.csproj | 45 +++++++++++++++++++
.../CHANGELOG.md | 2 +
...ft.Agents.AI.Hosting.AzureFunctions.csproj | 10 ++++-
.../official/jobs/build-packages.yml | 1 +
6 files changed, 62 insertions(+), 1 deletion(-)
create mode 100644 dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj
diff --git a/.github/workflows/dotnet-build-and-test.yml b/.github/workflows/dotnet-build-and-test.yml
index cbd3f29..94fef5f 100644
--- a/.github/workflows/dotnet-build-and-test.yml
+++ b/.github/workflows/dotnet-build-and-test.yml
@@ -46,6 +46,10 @@ jobs:
working-directory: dotnet
run: dotnet pack src/Microsoft.Agents.AI.DurableTask/Microsoft.Agents.AI.DurableTask.csproj --configuration Release --no-build --output ../artifacts/packages
+ - name: Pack Azure Functions Durable Task extension registration
+ working-directory: dotnet
+ run: dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj --configuration Release --no-build --output ../artifacts/packages
+
- name: Pack Azure Functions hosting
working-directory: dotnet
run: dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj --configuration Release --no-build --output ../artifacts/packages
diff --git a/dotnet/agent-framework-durable-extension.slnx b/dotnet/agent-framework-durable-extension.slnx
index a88477f..4fa86f2 100644
--- a/dotnet/agent-framework-durable-extension.slnx
+++ b/dotnet/agent-framework-durable-extension.slnx
@@ -7,6 +7,7 @@
+
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj
new file mode 100644
index 0000000..5e8d1b8
--- /dev/null
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj
@@ -0,0 +1,45 @@
+
+
+
+ $(TargetFrameworksCore)
+
+ false
+
+ false
+
+ 3.8.2
+
+
+
+
+
+
+ Durable Task Azure Functions extension registration for Microsoft Agent Framework
+ Registers the Durable Task Azure Functions extension so that applications hosting durable agents do not need to declare a Durable Functions trigger of their own.
+
+
+
+
+
+
+
+
+
+ <_Parameter1>Microsoft.Azure.WebJobs.Extensions.DurableTask
+ <_Parameter2>$(DurableTaskWebJobsExtensionVersion)
+ <_Parameter3>true
+ <_Parameter3_IsLiteral>true
+
+
+
+
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md
index 46adaf9..d04df83 100644
--- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md
@@ -2,6 +2,8 @@
## [Unreleased]
+- Fixed the Durable Task Azure Functions extension not being registered unless the application declared a Durable Functions trigger of its own, which required a dummy `[OrchestrationTrigger]` function for the agent endpoints to become available ([#77](https://github.com/microsoft/agent-framework-durable-extension/issues/77))
+
- Fixed the durable configuration methods not composing on the same application: calling `ConfigureDurableAgents` first left the workflow functions without an executor, calling `ConfigureDurableWorkflows` first registered the built-in function execution middleware twice, agents registered through `ConfigureDurableOptions` generated no functions at all, leaving the agent silently unreachable, and registering an agent that a workflow already referenced threw instead of promoting it. Agents now get the same entry points regardless of which method registers them and in which order, with each function generated exactly once even when a workflow and an explicit registration both contribute the same agent, while agents that exist only because a workflow references them continue to get no HTTP endpoint of their own ([#67](https://github.com/microsoft/agent-framework-durable-extension/pull/67))
- [BREAKING] Always return JSON from the workflow status and respond endpoints, including on errors and when the request sends no `Accept` header, and fix malformed request bodies surfacing as an unhandled error instead of `400 Bad Request` ([#60](https://github.com/microsoft/agent-framework-durable-extension/pull/60))
- [BREAKING] Support bounded synchronous workflow HTTP invocation through query parameters and default workflow run responses to JSON, with `Accept: text/plain` available for the legacy text format and the same negotiated asynchronous response returned on timeout ([#52](https://github.com/microsoft/agent-framework-durable-extension/pull/52))
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj
index c9db559..f97d9d0 100644
--- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj
@@ -5,7 +5,9 @@
enable
- $(NoWarn);CA2007;AD0001
+
+ $(NoWarn);CA2007;AD0001;RT0002
@@ -20,6 +22,12 @@
+
+
diff --git a/eng/templates/official/jobs/build-packages.yml b/eng/templates/official/jobs/build-packages.yml
index 1fcb091..1533f4f 100644
--- a/eng/templates/official/jobs/build-packages.yml
+++ b/eng/templates/official/jobs/build-packages.yml
@@ -77,6 +77,7 @@ jobs:
# project can be specified"). The whole -p: arg is quoted so PowerShell passes
# it through as a single literal argument.
dotnet pack src/Microsoft.Agents.AI.DurableTask/Microsoft.Agents.AI.DurableTask.csproj --configuration Release --no-build "-p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/packages/dotnet"
+ dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj --configuration Release --no-build "-p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/packages/dotnet"
dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj --configuration Release --no-build "-p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/packages/dotnet"
workingDirectory: dotnet
displayName: 'Pack .NET packages'
From 8c97b3955480201de74a50142a21870ef7d9d7ea Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 1 Sep 2026 16:37:03 +0000
Subject: [PATCH 3/9] Plan: simplify sample package references now that the
extension shim registers Durable Task
Co-authored-by: kshyju <144469+kshyju@users.noreply.github.com>
---
.../AzureFunctions/01_SingleAgent/01_SingleAgent.csproj | 1 -
1 file changed, 1 deletion(-)
diff --git a/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj b/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
index 3694af9..e7a3f1b 100644
--- a/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
+++ b/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
@@ -17,7 +17,6 @@
-
From f502a93c19502fff451fc4342addea86a161c4b9 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 1 Sep 2026 16:37:52 +0000
Subject: [PATCH 4/9] Drop redundant Durable Task worker package reference from
two Functions samples
Co-authored-by: kshyju <144469+kshyju@users.noreply.github.com>
---
.../AzureFunctions/01_SingleAgent/01_SingleAgent.csproj | 6 ++++++
.../07_AgentAsMcpTool/07_AgentAsMcpTool.csproj | 7 ++++++-
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj b/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
index e7a3f1b..d60175c 100644
--- a/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
+++ b/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
@@ -17,6 +17,12 @@
+
diff --git a/dotnet/samples/DurableAgents/AzureFunctions/07_AgentAsMcpTool/07_AgentAsMcpTool.csproj b/dotnet/samples/DurableAgents/AzureFunctions/07_AgentAsMcpTool/07_AgentAsMcpTool.csproj
index 9470264..2607798 100644
--- a/dotnet/samples/DurableAgents/AzureFunctions/07_AgentAsMcpTool/07_AgentAsMcpTool.csproj
+++ b/dotnet/samples/DurableAgents/AzureFunctions/07_AgentAsMcpTool/07_AgentAsMcpTool.csproj
@@ -17,7 +17,12 @@
-
+
From adb8ec279ea710f9e34ee4e6fbba5303902e5a97 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 2 Sep 2026 01:24:38 +0000
Subject: [PATCH 5/9] Remove obsolete sample comment
Co-authored-by: kshyju <144469+kshyju@users.noreply.github.com>
---
.../AzureFunctions/01_SingleAgent/01_SingleAgent.csproj | 6 ------
1 file changed, 6 deletions(-)
diff --git a/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj b/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
index d60175c..e7a3f1b 100644
--- a/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
+++ b/dotnet/samples/DurableAgents/AzureFunctions/01_SingleAgent/01_SingleAgent.csproj
@@ -17,12 +17,6 @@
-
From 7f5e726b2f3daa089e70cce427f972e4515cd1a6 Mon Sep 17 00:00:00 2001
From: Shyju Krishnankutty
Date: Wed, 2 Sep 2026 11:23:01 -0700
Subject: [PATCH 6/9] Link changelog entry to PR
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
---
.../Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md
index d04df83..3c1afac 100644
--- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md
@@ -2,8 +2,7 @@
## [Unreleased]
-- Fixed the Durable Task Azure Functions extension not being registered unless the application declared a Durable Functions trigger of its own, which required a dummy `[OrchestrationTrigger]` function for the agent endpoints to become available ([#77](https://github.com/microsoft/agent-framework-durable-extension/issues/77))
-
+- Fixed the Durable Task Azure Functions extension not being registered unless the application declared a Durable Functions trigger of its own, which required a dummy `[OrchestrationTrigger]` function for the agent endpoints to become available ([#82](https://github.com/microsoft/agent-framework-durable-extension/pull/82))
- Fixed the durable configuration methods not composing on the same application: calling `ConfigureDurableAgents` first left the workflow functions without an executor, calling `ConfigureDurableWorkflows` first registered the built-in function execution middleware twice, agents registered through `ConfigureDurableOptions` generated no functions at all, leaving the agent silently unreachable, and registering an agent that a workflow already referenced threw instead of promoting it. Agents now get the same entry points regardless of which method registers them and in which order, with each function generated exactly once even when a workflow and an explicit registration both contribute the same agent, while agents that exist only because a workflow references them continue to get no HTTP endpoint of their own ([#67](https://github.com/microsoft/agent-framework-durable-extension/pull/67))
- [BREAKING] Always return JSON from the workflow status and respond endpoints, including on errors and when the request sends no `Accept` header, and fix malformed request bodies surfacing as an unhandled error instead of `400 Bad Request` ([#60](https://github.com/microsoft/agent-framework-durable-extension/pull/60))
- [BREAKING] Support bounded synchronous workflow HTTP invocation through query parameters and default workflow run responses to JSON, with `Accept: text/plain` available for the legacy text format and the same negotiated asynchronous response returned on timeout ([#52](https://github.com/microsoft/agent-framework-durable-extension/pull/52))
From 525c67bdf5765b3b6b5b9b6bff21007ba39272e1 Mon Sep 17 00:00:00 2001
From: Shyju Krishnankutty
Date: Wed, 2 Sep 2026 13:41:56 -0700
Subject: [PATCH 7/9] Rename Durable Task extension package
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
---
.github/workflows/dotnet-build-and-test.yml | 2 +-
dotnet/agent-framework-durable-extension.slnx | 2 +-
...s.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj} | 2 +-
.../Microsoft.Agents.AI.Hosting.AzureFunctions.csproj | 4 ++--
eng/templates/official/jobs/build-packages.yml | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
rename dotnet/src/{Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj => Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj} (95%)
diff --git a/.github/workflows/dotnet-build-and-test.yml b/.github/workflows/dotnet-build-and-test.yml
index 94fef5f..5b6ba3d 100644
--- a/.github/workflows/dotnet-build-and-test.yml
+++ b/.github/workflows/dotnet-build-and-test.yml
@@ -48,7 +48,7 @@ jobs:
- name: Pack Azure Functions Durable Task extension registration
working-directory: dotnet
- run: dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj --configuration Release --no-build --output ../artifacts/packages
+ run: dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj --configuration Release --no-build --output ../artifacts/packages
- name: Pack Azure Functions hosting
working-directory: dotnet
diff --git a/dotnet/agent-framework-durable-extension.slnx b/dotnet/agent-framework-durable-extension.slnx
index 4fa86f2..b50f411 100644
--- a/dotnet/agent-framework-durable-extension.slnx
+++ b/dotnet/agent-framework-durable-extension.slnx
@@ -7,7 +7,7 @@
-
+
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
similarity index 95%
rename from dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj
rename to dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
index 5e8d1b8..be37faa 100644
--- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
@@ -17,7 +17,7 @@
- Durable Task Azure Functions extension registration for Microsoft Agent Framework
+ Durable Task Azure Functions extension for Microsoft Agent Framework
Registers the Durable Task Azure Functions extension so that applications hosting durable agents do not need to declare a Durable Functions trigger of their own.
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj
index f97d9d0..b32fb74 100644
--- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj
@@ -5,7 +5,7 @@
enable
-
$(NoWarn);CA2007;AD0001;RT0002
@@ -27,7 +27,7 @@
It lives in a separate assembly because the Azure Functions worker SDK only honors one such
attribute per assembly, and this assembly already declares one for the MCP extension below.
-->
-
+
diff --git a/eng/templates/official/jobs/build-packages.yml b/eng/templates/official/jobs/build-packages.yml
index 1533f4f..77294f9 100644
--- a/eng/templates/official/jobs/build-packages.yml
+++ b/eng/templates/official/jobs/build-packages.yml
@@ -77,7 +77,7 @@ jobs:
# project can be specified"). The whole -p: arg is quoted so PowerShell passes
# it through as a single literal argument.
dotnet pack src/Microsoft.Agents.AI.DurableTask/Microsoft.Agents.AI.DurableTask.csproj --configuration Release --no-build "-p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/packages/dotnet"
- dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension/Microsoft.Agents.AI.Hosting.AzureFunctions.DurableTaskExtension.csproj --configuration Release --no-build "-p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/packages/dotnet"
+ dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj --configuration Release --no-build "-p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/packages/dotnet"
dotnet pack src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj --configuration Release --no-build "-p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/packages/dotnet"
workingDirectory: dotnet
displayName: 'Pack .NET packages'
From eca39f635cf107163d09039b6a5c4428cbcfecaa Mon Sep 17 00:00:00 2001
From: Shyju Krishnankutty
Date: Wed, 2 Sep 2026 14:16:48 -0700
Subject: [PATCH 8/9] Set initial extension package version
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
---
dotnet/nuget/nuget-package.props | 2 +-
...ts.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/dotnet/nuget/nuget-package.props b/dotnet/nuget/nuget-package.props
index 08f93c8..ff8c3b1 100644
--- a/dotnet/nuget/nuget-package.props
+++ b/dotnet/nuget/nuget-package.props
@@ -1,7 +1,7 @@
- 1.13.0
+ 1.13.0
1
260703
$(VersionPrefix)-rc$(RCNumber)
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
index be37faa..2cd488d 100644
--- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
@@ -2,6 +2,7 @@
$(TargetFrameworksCore)
+ 0.1.0
false
@@ -19,6 +20,9 @@
Durable Task Azure Functions extension for Microsoft Agent Framework
Registers the Durable Task Azure Functions extension so that applications hosting durable agents do not need to declare a Durable Functions trigger of their own.
+
+
+ false
From 202b7ff9dc6a443ed2f19d56e168dfa519e01001 Mon Sep 17 00:00:00 2001
From: Shyju Krishnankutty
Date: Wed, 2 Sep 2026 14:32:57 -0700
Subject: [PATCH 9/9] Align extension package release version
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
---
dotnet/nuget/nuget-package.props | 2 +-
...ents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/dotnet/nuget/nuget-package.props b/dotnet/nuget/nuget-package.props
index ff8c3b1..08f93c8 100644
--- a/dotnet/nuget/nuget-package.props
+++ b/dotnet/nuget/nuget-package.props
@@ -1,7 +1,7 @@
- 1.13.0
+ 1.13.0
1
260703
$(VersionPrefix)-rc$(RCNumber)
diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
index 2cd488d..98fd97a 100644
--- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
+++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask/Microsoft.Agents.AI.Hosting.AzureFunctions.Extensions.DurableTask.csproj
@@ -2,7 +2,6 @@
$(TargetFrameworksCore)
- 0.1.0
false