Skip to content

Commit

Permalink
doesn't create .slnx file
Browse files Browse the repository at this point in the history
  • Loading branch information
gewarren committed Feb 24, 2025
1 parent aa6dcc6 commit 9290df2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/core/tools/dotnet-sln.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ The `dotnet sln` command provides a convenient way to list and modify projects i

To use the `dotnet sln` command, the solution file must already exist. If you need to create one, use the [dotnet new](dotnet-new.md) command with the `sln` template name.

The following example creates a *.slnx* file in the current folder, with the same name as the folder:
The following example creates a *.sln* file in the current folder, with the same name as the folder:

```dotnetcli
dotnet new sln
```

The following example creates a *.slnx* file in the current folder, with the specified file name:
The following example creates a *.sln* file in the current folder, with the specified file name:

```dotnetcli
dotnet new sln --name MySolution
```

The following example creates a *.slnx* file in the specified folder, with the same name as the folder:
The following example creates a *.sln* file in the specified folder, with the same name as the folder:

```dotnetcli
dotnet new sln --output MySolution
Expand Down

0 comments on commit 9290df2

Please sign in to comment.