mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-23 16:12:22 +00:00
22 lines
634 B
XML
22 lines
634 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<IsAspireHost>true</IsAspireHost>
|
||
|
<UserSecretsId>5b7c44a7-fac9-4b18-910e-e580c1c63f8a</UserSecretsId>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\HelloAgents.ApiService\HelloAgents.ApiService.csproj" />
|
||
|
<ProjectReference Include="..\HelloAgents.Web\HelloAgents.Web.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Aspire.Hosting.AppHost"/>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|