mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-30 04:10:47 +00:00

* adds integration test for the InMemoryRuntime * format * expand timeout for in memory runtime tests
22 lines
588 B
XML
22 lines
588 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="..\..\..\samples\Hello\HelloAgent\HelloAgent.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|