mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(ProjectsTargetFrameworks)</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(Configuration)' == 'Debug'">$(ProjectsDebugTargetFrameworks)</TargetFrameworks>
|
|
<VersionSuffix>preview</VersionSuffix>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<InjectSharedThrow>true</InjectSharedThrow>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.Agents" />
|
|
<PackageReference Include="Microsoft.Extensions.AI" />
|
|
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" />
|
|
<PackageReference Include="OpenAI" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Agents.AI\Microsoft.Agents.AI.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- NuGet Package Settings -->
|
|
<Title>Microsoft Agent Framework Azure AI Agents</Title>
|
|
<Description>Provides Microsoft Agent Framework support for Azure AI Agents.</Description>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|