mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-07 00:51:38 +00:00
22 lines
753 B
XML
22 lines
753 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Abstractions\Microsoft.AutoGen.Abstractions.csproj" />
|
|||
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Agents\Microsoft.AutoGen.Agents.csproj" />
|
|||
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Runtime\Microsoft.AutoGen.Runtime.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|||
|
<PackageReference Include="Aspire.Hosting.AppHost" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
</Project>
|