CyberdyneDevelopment.Mc3Po.Protocols.GitLab 0.1.0-preview.6

This is a prerelease version of CyberdyneDevelopment.Mc3Po.Protocols.GitLab.
dotnet add package CyberdyneDevelopment.Mc3Po.Protocols.GitLab --version 0.1.0-preview.6
                    
NuGet\Install-Package CyberdyneDevelopment.Mc3Po.Protocols.GitLab -Version 0.1.0-preview.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CyberdyneDevelopment.Mc3Po.Protocols.GitLab" Version="0.1.0-preview.6">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CyberdyneDevelopment.Mc3Po.Protocols.GitLab" Version="0.1.0-preview.6" />
                    
Directory.Packages.props
<PackageReference Include="CyberdyneDevelopment.Mc3Po.Protocols.GitLab">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CyberdyneDevelopment.Mc3Po.Protocols.GitLab --version 0.1.0-preview.6
                    
#r "nuget: CyberdyneDevelopment.Mc3Po.Protocols.GitLab, 0.1.0-preview.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CyberdyneDevelopment.Mc3Po.Protocols.GitLab@0.1.0-preview.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CyberdyneDevelopment.Mc3Po.Protocols.GitLab&version=0.1.0-preview.6&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CyberdyneDevelopment.Mc3Po.Protocols.GitLab&version=0.1.0-preview.6&prerelease
                    
Install as a Cake Tool

Mc3Po.Protocols.GitLab

GitLab protocol implementation for both project management (Issues) and source control.

Capabilities

Capability Supported
Project Management Yes (Issues)
Source Control Yes (Git)

Features

Project Management

  • Issues (CRUD, comments, labels)
  • Milestones
  • Labels

Source Control

  • Repositories (list, info)
  • Branches (list, create)
  • Merge Requests (CRUD, merge)
  • Pipelines (list, status)
  • Commits (list)

Configuration

{
  "projectManagement": {
    "type": "GitLab",
    "baseUrl": "https://gitlab.example.com",
    "secretName": "gitlab-token"
  },
  "sourceControl": {
    "type": "GitLab",
    "baseUrl": "https://gitlab.example.com",
    "defaultProject": "my-group/my-repo",
    "secretName": "gitlab-token"
  }
}
Property Required Description
type Yes Must be "GitLab"
baseUrl Yes GitLab instance URL
defaultProject No Default project path (group/repo)
secretName Yes Access token secret name
timeoutSeconds No HTTP timeout (default: 30)

Usage

// Source control operations
var scResult = protocolProvider.GetSourceControl();
var sc = scResult.Value;

var prResult = await sc.CreatePullRequest(new CreatePullRequestRequest
{
    RepositoryId = "my-group/my-repo",
    SourceBranch = "feature-branch",
    TargetBranch = "main",
    Title = "New feature"
});

API Reference

Uses GitLab REST API v4.

Components

  • GitLabProtocol - Unified PM + SC implementation
  • GitLabProtocolConfiguration - Configuration class
  • GitLabProtocolFactory - Factory for creating instances
  • GitLabProtocolType - TypeOption for discovery
  • GitLabLog - MessageLogging methods
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CyberdyneDevelopment.Mc3Po.Protocols.GitLab:

Package Downloads
CyberdyneDevelopment.DeveloperTools.McpServer

Development tools and utilities for the FractalDataWorks ecosystem. Build:

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-preview.6 46 1/9/2026
0.1.0-preview.4 51 1/7/2026