From c43c0d67eb082a5452d311b362aa0081545221d1 Mon Sep 17 00:00:00 2001 From: Alexander Gayko Date: Tue, 25 Nov 2025 13:09:06 +0100 Subject: [PATCH 1/2] Clarify customer intent and enhance file-based apps description Updated customer intent description for clarity and added a reference to directives. --- docs/csharp/fundamentals/tutorials/file-based-programs.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/csharp/fundamentals/tutorials/file-based-programs.md b/docs/csharp/fundamentals/tutorials/file-based-programs.md index 0c4fcddb9bc1a..2ae7d7599fa74 100644 --- a/docs/csharp/fundamentals/tutorials/file-based-programs.md +++ b/docs/csharp/fundamentals/tutorials/file-based-programs.md @@ -4,12 +4,13 @@ description: File-based apps are command line utilities that are built and execu ms.date: 08/14/2025 ms.topic: tutorial ai-usage: ai-assisted -#customer intent: As a developer, I want build utilities so that more work is automated. +#customer intent: As a developer, I want to build utilities so that more work is automated. --- # Tutorial: Build file-based C# programs -*File-based apps* are programs contained within a single `*.cs` file that are built and run without a corresponding project (`*.csproj`) file. File-based apps are ideal for learning C# because they have less complexity: The entire program is stored in a single file. File-based apps are also useful for building command line utilities. On Unix platforms, file-based apps can be run using `#!` (shebang) directives. +*File-based apps* are programs contained within a single `*.cs` file that are built and run without a corresponding project (`*.csproj`) file. File-based apps are ideal for learning C# because they have less complexity: The entire program is stored in a single file. File-based apps are also useful for building command line utilities. On Unix platforms, file-based apps can be run using `#!` (shebang) [directives](../../language-reference/preprocessor-directives.md) +. In this tutorial, you: From 3852b573e23b70d1683dbd465a95c3ab3332bdb9 Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Tue, 25 Nov 2025 09:11:34 -0500 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/csharp/fundamentals/tutorials/file-based-programs.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/csharp/fundamentals/tutorials/file-based-programs.md b/docs/csharp/fundamentals/tutorials/file-based-programs.md index 2ae7d7599fa74..c6ca05192fe02 100644 --- a/docs/csharp/fundamentals/tutorials/file-based-programs.md +++ b/docs/csharp/fundamentals/tutorials/file-based-programs.md @@ -9,9 +9,7 @@ ai-usage: ai-assisted # Tutorial: Build file-based C# programs -*File-based apps* are programs contained within a single `*.cs` file that are built and run without a corresponding project (`*.csproj`) file. File-based apps are ideal for learning C# because they have less complexity: The entire program is stored in a single file. File-based apps are also useful for building command line utilities. On Unix platforms, file-based apps can be run using `#!` (shebang) [directives](../../language-reference/preprocessor-directives.md) -. - +*File-based apps* are programs contained within a single `*.cs` file that are built and run without a corresponding project (`*.csproj`) file. File-based apps are ideal for learning C# because they have less complexity: The entire program is stored in a single file. File-based apps are also useful for building command line utilities. On Unix platforms, file-based apps can be run using `#!` (shebang) [directives](../../language-reference/preprocessor-directives.md). In this tutorial, you: > [!div class="checklist"]