mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
30 lines
1013 B
XML
30 lines
1013 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(ProjectsTargetFrameworks)</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(Configuration)' == 'Debug'">$(ProjectsDebugTargetFrameworks)</TargetFrameworks>
|
|
<VersionSuffix>preview</VersionSuffix>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<NoWarn>$(NoWarn);IDE0009;</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Linq.Async" />
|
|
<PackageReference Include="Azure.AI.Agents.Persistent" />
|
|
<PackageReference Include="Microsoft.Extensions.AI" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Agents.AI\Microsoft.Agents.AI.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- NuGet Package Settings -->
|
|
<Title>Microsoft.Agents.AI.AzureAI</Title>
|
|
<Description>Implementation of generative AI abstractions for Azure AI Persistent Agents.</Description>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|