Skip to content

Commit

Permalink
Minor cleanup for consistency (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
timsneath authored Nov 7, 2024
1 parent c483c74 commit d8af31d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions install/windows/_scoop.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Invoke-RestMethod get.scoop.sh | Invoke-Expression
scoop install python39
~~~

0. Install platform dependencies:
0. Install Windows platform dependencies:

The platform dependencies cannot be installed through Scoop as the install rules cannot install all required components. They will be installed through the Visual Studio 2022 Community installer. You may change the Visual Studio edition depending on your usage and team size.
The required C++ toolchain and Windows SDK are installed as part of Visual Studio 2022. The instructions below are for the Community edition, but you may want to [use a different Visual Studio edition](https://visualstudio.microsoft.com/vs/compare/) based on your usage and team size.

<div class="warning" markdown="1">
This code snippet must be run in a traditional Command Prompt (`cmd.exe`).
Expand Down
6 changes: 3 additions & 3 deletions install/windows/_winget.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

0. Setup all needed [dependencies](/install/windows/#dependencies).

0. Install required Visual Studio components:
0. Install Windows platform dependencies:

Install the latest MSVC toolset and Windows 11 SDK (10.0.22000) through Visual Studio 2022 Community installer. You may change the Visual Studio edition depending on your usage and team size.
The required C++ toolchain and Windows SDK are installed as part of Visual Studio 2022. The instructions below are for the Community edition, but you may want to [use a different Visual Studio edition](https://visualstudio.microsoft.com/vs/compare/) based on your usage and team size.

~~~ batch
winget install --id Microsoft.VisualStudio.2022.Community --exact --force --custom "--add Microsoft.VisualStudio.Component.Windows11SDK.22000 --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.VC.Tools.ARM64"
~~~

0. Install Swift and other dependencies:

Install the latest Swift developer package, as well as compatible Git and Python tools if they don't exist.
Install the latest Swift developer package, as well as compatible Git and Python tools if necessary.

~~~ batch
winget install --id Swift.Toolchain -e
Expand Down
4 changes: 2 additions & 2 deletions install/windows/scoop/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Invoke-RestMethod get.scoop.sh | Invoke-Expression
scoop install python39
~~~

0. Install platform dependencies:
0. Install Windows platform dependencies:

The platform dependencies cannot be installed through Scoop as the install rules cannot install all required components. They will be installed through the Visual Studio 2022 Community installer. You may change the Visual Studio edition depending on your usage and team size.
The required C++ toolchain and Windows SDK are installed as part of Visual Studio 2022. The instructions below are for the Community edition, but you may want to [use a different Visual Studio edition](https://visualstudio.microsoft.com/vs/compare/) based on your usage and team size.

<div class="warning" markdown="1">
This code snippet must be run in a traditional Command Prompt (`cmd.exe`).
Expand Down
4 changes: 2 additions & 2 deletions install/windows/winget/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ title: Installation via Windows Package Manager

In order to develop applications, particularly with the Swift Package Manager, you will need to enable developer mode. Please see Microsoft’s [documentation](https://docs.microsoft.com/windows/apps/get-started/enable-your-device-for-development) for instructions about how to enable developer mode.

0. Install required Visual Studio components:
0. Install Windows platform dependencies:

Install the latest MSVC toolset and Windows 11 SDK (10.0.22000) through Visual Studio 2022 Community installer. You may change the Visual Studio edition depending on your usage and team size.
The required C++ toolchain and Windows SDK are installed as part of Visual Studio 2022. The instructions below are for the Community edition, but you may want to [use a different Visual Studio edition](https://visualstudio.microsoft.com/vs/compare/) based on your usage and team size.

~~~ batch
winget install --id Microsoft.VisualStudio.2022.Community --exact --force --custom "--add Microsoft.VisualStudio.Component.Windows11SDK.22000 --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.VC.Tools.ARM64"
Expand Down

0 comments on commit d8af31d

Please sign in to comment.