Skip to content

Conversation

@cnunciato
Copy link
Collaborator

@cnunciato cnunciato commented Oct 4, 2025

Adds C# to the Buildkite SDK family. 🎉

using Buildkite.Sdk;

var pipeline = new Pipeline();

pipeline.AddStep(new CommandStep
{
    Label = "some-label",
    Command = "echo 'Hello, world!'"
});

Console.WriteLine(pipeline.ToJson())
$ npx nx run app-csharp:run
{
  "steps": [
    {
      "command": "echo 'Hello, world!'",
      "label": "some-label"
    }
  ]
}

(cc @zchase)

@cnunciato cnunciato force-pushed the cnunciato/csharp branch 2 times, most recently from 82b1cd9 to 7a0a040 Compare October 5, 2025 17:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants