2024-05-15 19:27:47 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>$(TestTargetFramework)</TargetFramework>
|
|
|
|
|
<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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-30 11:43:22 -07:00
|
|
|
|
<ProjectReference Include="..\..\sample\AutoGen.OpenAI.Sample\AutoGen.OpenAI.Sample.csproj" />
|
2024-05-15 19:27:47 -07:00
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
|
|
|
|
|
<ProjectReference Include="..\AutoGen.Tests\AutoGen.Tests.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>
|