26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IncludeHttpRuleProtos>true</IncludeHttpRuleProtos>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="Protos\basket.proto" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\basket.proto" GrpcServices="Server" />
|
|
<Protobuf Include="Protos\greet.proto" GrpcServices="Server" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.StackExchange.Redis.DistributedCaching" />
|
|
<PackageReference Include="Grpc.AspNetCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Grpc.Swagger" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\libraries\HelloShop.EventBus.Dapr\HelloShop.EventBus.Dapr.csproj" />
|
|
<ProjectReference Include="..\HelloShop.ServiceDefaults\HelloShop.ServiceDefaults.csproj" />
|
|
</ItemGroup>
|
|
</Project> |