2025-12-05 17:27:38 +03:30
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-12-06 14:25:02 +03:30
|
|
|
<Version>0.0.2</Version>
|
2025-12-05 17:27:38 +03:30
|
|
|
<DebugType>None</DebugType>
|
|
|
|
|
<DebugSymbols>False</DebugSymbols>
|
|
|
|
|
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
|
|
|
|
<PackageId>Foursat.BackOffice.BFF.ManualPayment.Protobuf</PackageId>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.23.3" />
|
|
|
|
|
<PackageReference Include="Grpc.Core.Api" Version="2.54.0" />
|
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.72.0">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.2.2" />
|
|
|
|
|
<PackageReference Include="Google.Api.CommonProtos" Version="2.10.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Protobuf Include="Protos\manualpayment.proto"
|
|
|
|
|
ProtoRoot="Protos\"
|
|
|
|
|
GrpcServices="Both"
|
|
|
|
|
AdditionalImportDirs="..\BackOffice.BFF.Common.Protobuf\Protos" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BackOffice.BFF.Common.Protobuf\BackOffice.BFF.Common.Protobuf.csproj" />
|
|
|
|
|
</ItemGroup>
|
2025-12-06 14:25:02 +03:30
|
|
|
<Target Name="PushToFourSat" AfterTargets="Pack">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<NugetPackagePath>$(PackageOutputPath)$(PackageId).$(Version).nupkg</NugetPackagePath>
|
|
|
|
|
<PushCommand>
|
|
|
|
|
dotnet nuget push **/*.nupkg --source https://git.afrino.co/api/packages/FourSat/nuget/index.json --api-key 061a5cb15517c6da39c16cfce8556c55ae104d0d --skip-duplicate
|
|
|
|
|
</PushCommand>
|
|
|
|
|
</PropertyGroup>
|
2025-12-05 17:27:38 +03:30
|
|
|
|
2025-12-06 14:25:02 +03:30
|
|
|
<Exec Command="$(PushCommand)" />
|
|
|
|
|
</Target>
|
2025-12-05 17:27:38 +03:30
|
|
|
</Project>
|