24 lines
726 B
XML
24 lines
726 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0"/>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsAspireHost>true</IsAspireHost>
|
|
<UserSecretsId>d6312aa1-33db-42d9-8204-b00161666c4d</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.0.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Portfolio.Api\Portfolio.Api.csproj" />
|
|
<ProjectReference Include="..\Portfolio.Web\Portfolio.Web.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|