21 lines
673 B
XML
21 lines
673 B
XML
<Project Sdk="Aspire.AppHost.Sdk/13.4.2">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UserSecretsId>dd566541-a93f-49d5-9124-476847addf36</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AFrameArchitectureSample.ApiService\AFrameArchitectureSample.ApiService.csproj" />
|
|
<ProjectReference Include="..\AFrameArchitectureSample.Web\AFrameArchitectureSample.Web.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.Hosting.Redis" Version="13.4.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|