2025-07-06 19:15:24 +02:00
|
|
|
<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>b5fd5a78-e985-4c1a-ad81-b988633b1b0a</UserSecretsId>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PresentPortal.ApiService\PresentPortal.ApiService.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\PresentPortal.Web\PresentPortal.Web.csproj"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-08-01 15:17:27 +02:00
|
|
|
<PackageReference Include="Aspire.Hosting.AppHost" />
|
|
|
|
|
<PackageReference Include="Aspire.Hosting.Redis" />
|
2025-07-06 19:15:24 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|