mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Add basic durable workflow support. * PR feedback fixes * Add conditional edge sample. * PR feedback fixes. * Minor cleanup. * Minor cleanup * Minor formatting improvements. * Improve comments/documentation on the execution flow.
41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(TargetFrameworksCore)</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<!-- CA2007: This rule should generally be suppressed in Durable Task libraries -->
|
|
<!-- MEAI001: UserInputRequestContent is experimental but used in source-generated code for AgentResponse -->
|
|
<NoWarn>$(NoWarn);CA2007;MEAI001</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
|
|
|
|
<!-- NuGet package metadata -->
|
|
<PropertyGroup>
|
|
<Title>Durable Task extensions for Microsoft Agent Framework</Title>
|
|
<Description>Provides distributed durable execution capabilities for agents built with Microsoft Agent Framework.</Description>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
</PropertyGroup>
|
|
|
|
<!-- Durable Task dependencies -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.DurableTask.Client" />
|
|
<PackageReference Include="Microsoft.DurableTask.Worker" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Agents.AI.Workflows\Microsoft.Agents.AI.Workflows.csproj" />
|
|
<ProjectReference Include="..\Microsoft.Agents.AI\Microsoft.Agents.AI.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.DurableTask.IntegrationTests" />
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.DurableTask.UnitTests" />
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.Hosting.AzureFunctions" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="/" />
|
|
</ItemGroup>
|
|
</Project>
|