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" />
<PackageReference Include="CyberdyneDevelopment.Mc3Po.Protocols.GitLab"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=CyberdyneDevelopment.Mc3Po.Protocols.GitLab&version=0.1.0-preview.6&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 implementationGitLabProtocolConfiguration- Configuration classGitLabProtocolFactory- Factory for creating instancesGitLabProtocolType- TypeOption for discoveryGitLabLog- MessageLogging methods
| Product | Versions 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.
-
net10.0
- CyberdyneDevelopment.Mc3Po.ProjectManagement.Abstractions (>= 0.1.0-preview.6)
- CyberdyneDevelopment.Mc3Po.Protocols (>= 0.1.0-preview.6)
- CyberdyneDevelopment.Mc3Po.SourceControl.Abstractions (>= 0.1.0-preview.6)
- FractalDataWorks.Collections (>= 0.1.0-preview.1)
- FractalDataWorks.Collections.SourceGenerators (>= 0.1.0-preview.1)
- FractalDataWorks.MessageLogging.Abstractions (>= 0.1.0-preview.1)
- FractalDataWorks.MessageLogging.SourceGenerators (>= 0.1.0-preview.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.1)
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 |