Skip to content

Commit 1c6d1d3

Browse files
Style and doc updates (#164)
1 parent 15f0453 commit 1c6d1d3

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ dotnet_diagnostic.IDE0008.severity = error
5151
# IDE0021: Use expression body for constructors
5252
dotnet_diagnostic.IDE0021.severity = suggestion
5353

54+
# IDE0022: Use expression body for methods
55+
dotnet_diagnostic.IDE0022.severity = suggestion
56+
5457
# IDE0046: Use conditional expression for return
5558
dotnet_diagnostic.IDE0046.severity = suggestion
5659

Docs/BuildingAndTesting.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
### Using Visual Studio
66

7-
* [Visual Studio 2022 17+](https://visualstudio.microsoft.com/downloads/)
8-
* Visual Studio 2022 comes with the .NET 6 SDK, you can also install another
9-
version from [here](https://dotnet.microsoft.com/download/dotnet/6.0).
7+
* [Visual Studio 2022 17.4+][download-vs]
8+
* You'll also need the [.NET 6 SDK][download-dotnet-6-sdk] and [.NET 7 SDK][download-dotnet-7-sdk].
109

1110
### Visual Studio Code
1211

13-
* [Visual Studio Code](https://code.visualstudio.com/Download)
12+
* [Visual Studio Code][download-vs-code]
1413
* Install recommended extensions.
15-
* [.NET 6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0)
14+
* [.NET 6 SDK][download-dotnet-6-sdk]
15+
* [.NET 7 SDK][download-dotnet-7-sdk]
1616

1717
## Build the tool
1818

@@ -32,7 +32,7 @@ To run all the tests, simply run the following command:
3232
dotnet test
3333
```
3434

35-
## Managing a tool instalation from local build output
35+
## Managing a tool installation from local build output
3636

3737
### Install the tool
3838

@@ -54,7 +54,7 @@ For stable release versions, run the following command:
5454
dotnet tool update -g SlnUp --add-source ./__packages/NuGet/Release/
5555
```
5656

57-
For pre-release versions, there is currently no way to update to a pre-release version. See [here](https://github.com/dotnet/sdk/issues/2551) for updates on this issue. For the time being, you need to [uninstall](#uninstall-the-tool) the previous version of the tool and then [install](#install-the-tool) the tool again.
57+
For pre-release versions, you need to specify the `--prerelase` argument.
5858

5959
### Uninstall the tool
6060

@@ -75,3 +75,8 @@ Simply run the following PowerShell script:
7575
```powershell
7676
./scripts/UpdateVSVersions.ps1
7777
```
78+
79+
[download-dotnet-6-sdk]: https://dotnet.microsoft.com/download/dotnet/6.0 "Download .NET 6.0"
80+
[download-dotnet-7-sdk]: https://dotnet.microsoft.com/download/dotnet/7.0 "Download .NET 7.0"
81+
[download-vs]: https://visualstudio.microsoft.com/downloads/ "Download Visual Studio"
82+
[download-vs-code]: https://code.visualstudio.com/Download "Download Visual Studio Code"

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ solution file using a Visual Studio version number.
2222

2323
The Visual Studio Version Selector tool, which determines which version of
2424
Visual Studio to open when you double-click a .sln file, uses the solution
25-
[file header](https://docs.microsoft.com/visualstudio/extensibility/internals/solution-dot-sln-file?view=vs-2022#file-header)
26-
to determine which version of Visual Studio to open.
25+
[file header][vs-sln-file-header] to determine which version of Visual Studio
26+
to open.
2727

2828
Updating a solution file with correct version information requires you to
2929
understand the solution file header and the Visual Studio version information.
@@ -89,16 +89,15 @@ slnup 17.0 --build-version 17.0.31903.59
8989

9090
## How does it work?
9191

92-
Visual Studio solution files have a well known
93-
[file header](https://docs.microsoft.com/visualstudio/extensibility/internals/solution-dot-sln-file?view=vs-2022#file-header).
92+
Visual Studio solution files have a well known [file header][vs-sln-file-header].
9493
The tool knows how to parse and update the solution file header and save the
9594
file. The tool also knows version information for builds of Visual Studio from
9695
Visual Studio 2017 to 2022. The version information specified, is used to update
9796
the file header.
9897

9998
Consider a solution file with the following file header:
10099

101-
```
100+
```text
102101
Microsoft Visual Studio Solution File, Format Version 12.00
103102
# Visual Studio Version 16
104103
VisualStudioVersion = 16.0.28701.123
@@ -125,7 +124,7 @@ In the case of `2022`, the tool will use the latest known version information
125124
it knows for that version. So, this would cause the tool to update the solution
126125
file header to the following:
127126

128-
```
127+
```text
129128
Microsoft Visual Studio Solution File, Format Version 12.00
130129
# Visual Studio Version 17
131130
VisualStudioVersion = 17.0.31903.59
@@ -146,3 +145,5 @@ Visual Studio 2022.
146145
`MinimumVisualStudioVersion = 10.0.40219.1`, then those values will be added
147146
to the file header.
148147
- The tool supports Visual Studio 2017, 2019, and 2022.
148+
149+
[vs-sln-file-header]: https://docs.microsoft.com/visualstudio/extensibility/internals/solution-dot-sln-file?view=vs-2022#file-header "File header"

tests/.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@
44

55
# CA1707: Identifiers should not contain underscores
66
dotnet_diagnostic.CA1707.severity = none
7-
8-
# IDE0022: Use expression body for methods
9-
dotnet_diagnostic.IDE0022.severity = suggestion

0 commit comments

Comments
 (0)