24 lines
851 B
XML
24 lines
851 B
XML
<Project Sdk="Aspire.AppHost.Sdk/13.1.0">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UserSecretsId>e8c812ae-b6a3-4aa1-aef9-055b2190c225</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\GrpcService1\GrpcService1.csproj" />
|
|
<ProjectReference Include="..\..\WebApplication3\WebApplication3.csproj" />
|
|
<ProjectReference Include="..\..\WebApplication5\WebApplication5.csproj" />
|
|
<ProjectReference Include="..\AspireApp1.ApiService\AspireApp1.ApiService.csproj" />
|
|
<ProjectReference Include="..\AspireApp1.Web\AspireApp1.Web.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.Hosting.Redis" Version="13.2.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|