2024-10-30 11:53:37 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsTestProject>True</IsTestProject>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-02-06 14:30:15 -05:00
|
|
|
<PackageReference Include="coverlet.collector">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2024-12-13 11:55:43 -08:00
|
|
|
<ProjectReference Include="..\..\src\Microsoft.AutoGen\Core\Microsoft.AutoGen.Core.csproj" />
|
2024-11-18 13:32:49 -08:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
2024-10-30 11:53:37 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|