@@ -17,7 +17,7 @@ Key benefits include:
1717- Native AOT publishing enabled by default.
1818- Automatic packaging as .NET tools.
1919
20- In this article, learn more about how to use file-based apps successfully .
20+ In this article, learn how to create, configure, and work with file-based apps effectively .
2121
2222## Supported directives
2323
@@ -63,7 +63,7 @@ The .NET CLI provides full support for file-based apps through familiar commands
6363
6464### Run applications
6565
66- Run a file-based app directly using the ` dotnet run ` command:
66+ Run a file-based app directly by using the ` dotnet run ` command:
6767
6868``` dotnetcli
6969dotnet run file.cs
@@ -97,7 +97,7 @@ dotnet file.cs arg1 arg2
9797
9898### Build applications
9999
100- Compile your file-based app using the ` dotnet build ` command:
100+ Compile your file-based app by using the ` dotnet build ` command:
101101
102102``` dotnetcli
103103dotnet build file.cs
@@ -107,7 +107,7 @@ The SDK generates a temporary project and builds your application.
107107
108108### Clean build outputs
109109
110- Remove build artifacts using the ` dotnet clean ` command:
110+ Remove build artifacts by using the ` dotnet clean ` command:
111111
112112``` dotnetcli
113113dotnet clean file.cs
@@ -121,7 +121,7 @@ dotnet clean file-based-apps
121121
122122### Publish applications
123123
124- Create a deployment package using the ` dotnet publish ` command:
124+ Create a deployment package by using the ` dotnet publish ` command:
125125
126126``` dotnetcli
127127dotnet publish file.cs
@@ -131,7 +131,7 @@ File-based apps enable native AOT publishing by default, producing optimized, se
131131
132132### Package as tool
133133
134- Package your file-based app as a .NET tool using the ` dotnet pack ` command:
134+ Package your file-based app as a .NET tool by using the ` dotnet pack ` command:
135135
136136``` dotnetcli
137137dotnet pack file.cs
@@ -141,7 +141,7 @@ File-based apps set `PackAsTool=true` by default.
141141
142142### Convert to project
143143
144- Convert your file-based app to a traditional project using the ` dotnet project convert ` command:
144+ Convert your file-based app to a traditional project by using the ` dotnet project convert ` command:
145145
146146``` dotnetcli
147147dotnet project convert file.cs
@@ -151,7 +151,7 @@ This command creates a `.csproj` file with equivalent SDK and properties. All `#
151151
152152### Restore dependencies
153153
154- Restore NuGet packages referenced in your file using the ` dotnet restore ` command:
154+ Restore NuGet packages referenced in your file by using the ` dotnet restore ` command:
155155
156156``` dotnetcli
157157dotnet restore file.cs
@@ -268,7 +268,7 @@ Caching improves build performance but can cause confusion:
268268
269269### Workarounds
270270
271- - Run a full build using the ` --no-cache ` flag:
271+ - Run a full build by using the ` --no-cache ` flag:
272272
273273 ``` dotnetcli
274274 dotnet build file.cs --no-cache
0 commit comments