mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-16 18:14:30 +00:00
* integration tests used to use the samples - now they are separate * patch dictionary problem in serializer * add Message Registry with dead letter queue that gets checked on new subs.
22 lines
578 B
XML
22 lines
578 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0" />
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsAspireHost>true</IsAspireHost>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.Hosting.AppHost" />
|
|
<PackageReference Include="Aspire.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../HelloAgentTests/HelloAgentTests.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|