mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
dd32a6d399
* Add helpers to go from foundry client to agent more easily. * Fix xml docs.
26 lines
906 B
XML
26 lines
906 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(ProjectsTargetFrameworks)</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(Configuration)' == 'Debug'">$(ProjectsDebugTargetFrameworks)</TargetFrameworks>
|
|
<VersionSuffix>alpha</VersionSuffix>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.Agents.Persistent" />
|
|
<PackageReference Include="Microsoft.Extensions.AI" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Extensions.AI.Agents\Microsoft.Extensions.AI.Agents.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- NuGet Package Settings -->
|
|
<Title>Microsoft.Extensions.AI.Agents.AzureAI</Title>
|
|
<Description>Implementation of generative AI abstractions for Azure AI Persistent Agents.</Description>
|
|
</PropertyGroup>
|
|
|
|
</Project> |