2025-11-30 23:39:31 +03:30
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>true</IsPackable>
|
|
|
|
|
<PackageId>Foursat.BackOffice.BFF.Commission.Protobuf</PackageId>
|
2025-12-06 14:25:02 +03:30
|
|
|
<Version>0.0.3</Version>
|
2025-11-30 23:39:31 +03:30
|
|
|
<Authors>FourSat</Authors>
|
|
|
|
|
<Company>FourSat</Company>
|
|
|
|
|
<Product>BackOffice.BFF.Commission.Protobuf</Product>
|
|
|
|
|
</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">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.2.2" />
|
2025-12-02 03:32:26 +03:30
|
|
|
<PackageReference Include="Google.Api.CommonProtos" Version="2.10.0" />
|
2025-11-30 23:39:31 +03:30
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Protobuf Include="Protos\commission.proto" GrpcServices="Client" AdditionalImportDirs="..\BackOffice.BFF.Common.Protobuf\Protos"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BackOffice.BFF.Common.Protobuf\BackOffice.BFF.Common.Protobuf.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Foursat.BackOffice.BFF.Common.Protobuf" Version="0.0.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PushPackage" AfterTargets="Pack">
|
|
|
|
|
<Exec Command="dotnet nuget push $(OutputPath)..\$(PackageId).$(Version).nupkg --source https://git.afrino.co/api/packages/FourSat/nuget/index.json --api-key 061a5cb15517c6da39c16cfce8556c55ae104d0d --skip-duplicate" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|