2025-09-27 10:36:00 +03:30
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-11-13 23:25:14 +03:30
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2025-09-27 10:36:00 +03:30
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
|
|
|
<DockerfileContext>..\..\..</DockerfileContext>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.54.0" />
|
|
|
|
|
<PackageReference Include="Grpc.AspNetCore.Web" Version="2.54.0" />
|
2025-11-13 23:25:14 +03:30
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.22.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Grpc.Swagger" Version="0.9.11" />
|
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Seq" Version="9.0.0" />
|
2025-09-27 10:36:00 +03:30
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\FrontOffice.BFF.Application\FrontOffice.BFF.Application.csproj" />
|
|
|
|
|
<ProjectReference Include="..\FrontOffice.BFF.Infrastructure\FrontOffice.BFF.Infrastructure.csproj" />
|
2025-11-17 22:54:13 +03:30
|
|
|
<ProjectReference Include="..\Protobufs\FrontOffice.BFF.Products.Protobuf\FrontOffice.BFF.Products.Protobuf.csproj" />
|
2025-11-20 00:56:58 +03:30
|
|
|
<ProjectReference Include="..\Protobufs\FrontOffice.BFF.ShopingCart.Protobuf\FrontOffice.BFF.ShopingCart.Protobuf.csproj" />
|
2025-10-13 13:00:03 +03:30
|
|
|
<ProjectReference Include="..\Protobufs\FrontOffice.BFF.Transaction.Protobuf\FrontOffice.BFF.Transaction.Protobuf.csproj" />
|
2025-09-27 10:36:00 +03:30
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Protobufs\FrontOffice.BFF.User.Protobuf\FrontOffice.BFF.User.Protobuf.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Protobufs\FrontOffice.BFF.UserAddress.Protobuf\FrontOffice.BFF.UserAddress.Protobuf.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Protobufs\FrontOffice.BFF.Package.Protobuf\FrontOffice.BFF.Package.Protobuf.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Protobufs\FrontOffice.BFF.UserOrder.Protobuf\FrontOffice.BFF.UserOrder.Protobuf.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|