mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-08 00:32:03 +00:00

* udpate * add sample to connect to azure oai * update comment * ping to beta5 * add openai tests * format code * add structural output example * update comment * fix test * resolve comments * fix format issue * update sk version
25 lines
1005 B
XML
25 lines
1005 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>True</IsTestProject>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\AutoGen.OpenAI.V1\AutoGen.OpenAI.V1.csproj" />
|
|
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
<ProjectReference Include="..\AutoGen.Test.Share\AutoGen.Tests.Share.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="ApprovalTests\OpenAIMessageTests.BasicMessageTest.approved.txt">
|
|
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0])</ParentFile>
|
|
<ParentExtension>$(ProjectExt.Replace('proj', ''))</ParentExtension>
|
|
<DependentUpon>%(ParentFile)%(ParentExtension)</DependentUpon>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|