From 0194acbf20b03e2b91aa2c7ee7f2bd6d7485dc39 Mon Sep 17 00:00:00 2001 From: James Skemp Date: Sat, 5 Aug 2023 08:35:33 -0500 Subject: [PATCH] Fix csharp.md reference to publish Minor update to correct the reference to publish, when build is called. --- content/pipeline/docker/examples/languages/csharp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pipeline/docker/examples/languages/csharp.md b/content/pipeline/docker/examples/languages/csharp.md index da87217fa..99958baba 100644 --- a/content/pipeline/docker/examples/languages/csharp.md +++ b/content/pipeline/docker/examples/languages/csharp.md @@ -13,7 +13,7 @@ This guide covers configuring continuous integration pipelines for C# projects. # Build and Test -In the below example we demonstrate a pipeline that executes `dotnet publish` and `dotnet test` commands. These commands are executed inside a Docker container, downloaded at runtime from DockerHub. +In the below example we demonstrate a pipeline that executes `dotnet build` and `dotnet test` commands. These commands are executed inside a Docker container, downloaded at runtime from DockerHub. ``` kind: pipeline