2024-12-11 12:59:02 -08:00
|
|
|
<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>
|
2025-02-13 16:43:57 -08:00
|
|
|
<ProjectReference Include="../HelloAgentTests/HelloAgentTests.csproj" />
|
2024-12-11 12:59:02 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|