2024-09-30 16:32:48 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-05-15 19:27:47 -07:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-07-25 09:15:55 -07:00
|
|
|
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
|
2024-05-15 19:27:47 -07:00
|
|
|
<IsPackable>false</IsPackable>
|
2024-06-10 10:31:45 -07:00
|
|
|
<IsTestProject>True</IsTestProject>
|
2024-05-15 19:27:47 -07:00
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2024-09-30 16:32:48 -07:00
|
|
|
<NoWarn>$(NoWarn);CA1829;CA1826</NoWarn>
|
2024-05-15 19:27:47 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-27 14:37:47 -07:00
|
|
|
<ProjectReference Include="..\..\src\AutoGen.OpenAI.V1\AutoGen.OpenAI.V1.csproj" />
|
2024-05-15 19:27:47 -07:00
|
|
|
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
2024-08-27 14:37:47 -07:00
|
|
|
<ProjectReference Include="..\AutoGen.Test.Share\AutoGen.Tests.Share.csproj" />
|
2024-05-15 19:27:47 -07:00
|
|
|
</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>
|