2024-05-23 12:15:25 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-07-25 09:15:55 -07:00
|
|
|
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
|
2024-05-23 12:15:25 -07:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<IsPackable>false</IsPackable>
|
2024-06-10 10:31:45 -07:00
|
|
|
<IsTestProject>True</IsTestProject>
|
2024-09-30 16:32:48 -07:00
|
|
|
<NoWarn>$(NoWarn);CA1829;CA1826</NoWarn>
|
2024-05-23 12:15:25 -07:00
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen.Ollama\AutoGen.Ollama.csproj" />
|
|
|
|
<ProjectReference Include="..\AutoGen.Tests\AutoGen.Tests.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="images\image.png">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="images\square.png">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|