2024-10-23 14:23:36 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-11-19 11:00:48 -08:00
|
|
|
|
|
|
|
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0" />
|
|
|
|
|
2024-10-23 14:23:36 -07:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-11-19 11:00:48 -08:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-10-23 14:23:36 -07:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsAspireHost>true</IsAspireHost>
|
|
|
|
<UserSecretsId>ecb5cbe4-15d8-4120-8f18-d3ba4902915b</UserSecretsId>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-11-01 15:43:20 -07:00
|
|
|
<PackageReference Include="Aspire.Hosting.AppHost" />
|
|
|
|
<PackageReference Include="Aspire.Hosting" />
|
2024-12-03 08:09:02 -08:00
|
|
|
<PackageReference Include="Aspire.Hosting.Python" />
|
2024-10-23 14:23:36 -07:00
|
|
|
</ItemGroup>
|
2024-11-01 15:43:20 -07:00
|
|
|
|
2024-10-23 14:23:36 -07:00
|
|
|
<ItemGroup>
|
2025-01-24 19:24:00 -08:00
|
|
|
<ProjectReference Include="../../../src/Microsoft.AutoGen/AgentHost/Microsoft.AutoGen.AgentHost.csproj" />
|
2024-10-23 14:23:36 -07:00
|
|
|
<ProjectReference Include="..\HelloAgent\HelloAgent.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|