Setup projects

This commit is contained in:
2025-01-19 19:16:19 +01:00
parent ba6cce3006
commit 43ecfe6813
35 changed files with 956 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<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>