24 lines
726 B
XML
24 lines
726 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Sdk Name="Aspire.AppHost.Sdk" Version="9.5.0" />
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UserSecretsId>7b0d6756-ba6a-4696-8514-2e0e767971c6</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.5.1" />
|
|
<PackageReference Include="Aspire.Hosting.SqlServer" Version="9.5.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Prefab.Catalog.Api\Prefab.Catalog.Api.csproj" />
|
|
<ProjectReference Include="..\Prefab.Web\Prefab.Web.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|