Skip to content

Commit 088dcf3

Browse files
AdmiralSnyderBillWagnerCopilot
authored
Clarify customer intent and enhance file-based apps description (#50122)
* Clarify customer intent and enhance file-based apps description Updated customer intent description for clarity and added a reference to directives. * Apply suggestions from code review Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Bill Wagner <[email protected]> Co-authored-by: Copilot <[email protected]>
1 parent 2286684 commit 088dcf3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/csharp/fundamentals/tutorials/file-based-programs.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ description: File-based apps are command line utilities that are built and execu
44
ms.date: 08/14/2025
55
ms.topic: tutorial
66
ai-usage: ai-assisted
7-
#customer intent: As a developer, I want build utilities so that more work is automated.
7+
#customer intent: As a developer, I want to build utilities so that more work is automated.
88
---
99

1010
# Tutorial: Build file-based C# programs
1111

12-
*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.
13-
12+
*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).
1413
In this tutorial, you:
1514

1615
> [!div class="checklist"]

0 commit comments

Comments
 (0)