mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-08 01:21:13 +00:00

Co-authored-by: Jack Gerrits <jack@jackgerrits.com> Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
22 lines
877 B
XML
22 lines
877 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>True</IsTestProject>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);CA1829;CA1826</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.OpenAI" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\samples\AgentChat\AutoGen.OpenAI.Sample\AutoGen.OpenAI.Sample.csproj" />
|
|
<ProjectReference Include="..\..\src\AutoGen.OpenAI\AutoGen.OpenAI.csproj" />
|
|
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
<ProjectReference Include="..\AutoGen.Test.Share\AutoGen.Tests.Share.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|