Skip to content

Commit 8cc2bbd

Browse files
Update README.md
1 parent bfc26d6 commit 8cc2bbd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,22 +72,22 @@ You can also check out this [episode of Open at Microsoft](https://learn.microso
7272

7373
### Using the standalone exe:
7474

75-
The latest version of the standalone exe can be found at https://aka.ms/wingetcreate/latest, and the latest preview version can be found at https://aka.ms/wingetcreate/preview, both of these require [.NET Runtime 6.0](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) to be installed on the build machine. To install this on your build machine in your pipeline, you can include the following dotnet task:
75+
The latest version of the standalone exe can be found at https://aka.ms/wingetcreate/latest, and the latest preview version can be found at https://aka.ms/wingetcreate/preview, both of these require [.NET Runtime 8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) to be installed on the build machine. To install this on your build machine in your pipeline, you can include the following dotnet task:
7676

7777
```yaml
7878
- task: UseDotNet@2
7979
displayName: 'Install .NET Runtime'
8080
inputs:
8181
packageType: sdk
82-
version: '6.x'
82+
version: '8.x'
8383
installationPath: '$(ProgramFiles)\dotnet'
8484
```
8585
8686
Or you can utilize a PowerShell task and run the following script.
8787
8888
```PowerShell
8989
Invoke-WebRequest https://dot.net/v1/dotnet-install.ps1 -OutFile dotnet-install.ps1
90-
.\dotnet-install.ps1 -Runtime dotnet -Architecture x64 -Version 6.0.13 -InstallDir $env:ProgramFiles\dotnet
90+
.\dotnet-install.ps1 -Runtime dotnet -Architecture x64 -Version 8 -InstallDir $env:ProgramFiles\dotnet
9191
```
9292

9393
> [!IMPORTANT]
@@ -158,11 +158,11 @@ You can install the prerequisites in one of two ways:
158158
* The following workloads:
159159
* .NET Desktop Development
160160
* Universal Windows Platform Development
161-
* Windows 11 SDK (10.0.22000.0) (Tools -> Get Tools and Features -> Individual Components)
161+
* Windows 11 SDK (10.0.22621.0) (Tools -> Get Tools and Features -> Individual Components)
162162

163163
### Building
164164

165-
Open `winget-create\src\WingetCreateCLI.sln` in Visual Studio and build. We currently only build using the solution; command line methods of building a VS solution should work as well.
165+
Open `winget-create\src\WingetCreateCLI.sln` in Visual Studio and build. We currently only build using the solution; command-line methods of building a VS solution should work as well.
166166

167167
## Testing the client
168168

@@ -181,7 +181,7 @@ Running unit and E2E tests are a great way to ensure that functionality is prese
181181
* Direct link to GitHub [Personal Access Tokens page](https://github.com/settings/tokens).
182182
* `GitHubAppPrivateKey`: Leave blank, this is only used by the build server.
183183

184-
* Set the solution wide runsettings file for the tests
184+
* Set the solution-wide runsettings file for the tests
185185
* Go to `Test` menu > `Configure Run Settings` -> `Select Solution Wide runsettings File` -> Choose your configured runsettings file
186186

187187
> [!CAUTION]

0 commit comments

Comments
 (0)