Skip to content

Commit a822442

Browse files
authored
Manual docs pass before cut (microsoft#563)
1 parent c7dde8a commit a822442

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For information around how to set up React Native, see the [React Native Getting
1414
Remember to call `react-native init` from the place you want your project directory to live.
1515

1616
```bat
17-
npx react-native init <projectName> --template react-native@^0.65.0
17+
npx react-native init <projectName> --template react-native@^0.66.0
1818
```
1919
>To create TypeScript template, run `npx react-native init <projectName> --template react-native-template-typescript`.<br><br>
2020

docs/nuget.md

+8-12
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,10 @@ Of course all the other flags still work.
4848
1. Update the solution file `windows\<projectName>.sln`:
4949
1. Open the project in Visual Studio
5050
1. Remove all projects except your own app project
51-
1. Edit the project file `windows\<projectName>\<projectName.csproj>`
52-
1. Add the the NuGet flag to the first property group
53-
```diff
54-
+ <UseExperimentalNuGet>true</UseExperimentalNuGet>
55-
</PropertyGroup>
51+
1. Edit the file `windows\ExperimentalFeatures.props`
52+
1. Set the following to true
53+
```xml
54+
<UseExperimentalNuGet>true</UseExperimentalNuGet>
5655
```
5756
1. If you have a project that was created before 0.63, you should remove all references to `Microsoft.ReactNative.*` projects.
5857
1. Add a NuGet reference to `Microsoft.ReactNative.Managed`.
@@ -72,13 +71,10 @@ Of course all the other flags still work.
7271
1. Update the solution file `windows\<projectName>.sln`:
7372
1. Open the project in Visual Studio
7473
1. Remove all projects that are not your project
75-
1. Edit the project file `windows\<projectName>\<projectName.vcxproj>`
76-
1. Add the the NuGet flag to the first property group
77-
```diff
78-
<PropertyGroup Label="ReactNativeWindowsProps">
79-
<ReactNativeWindowsDir Condition="'$(ReactNativeWindowsDir)' == ''">...</ReactNativeWindowsDir>
80-
+ <UseExperimentalNuGet>true</UseExperimentalNuGet>
81-
</PropertyGroup>
74+
1. Edit the file `windows\ExperimentalFeatures.props`
75+
1. Set the following to true
76+
```xml
77+
<UseExperimentalNuGet>true</UseExperimentalNuGet>
8278
```
8379
1. Add NuGet references to the following NuGet packages:
8480
* `Microsoft.ReactNative`

docs/rnw-dependencies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: System Requirements
55

66
You can run React Native for Windows apps only on:
77

8-
- all Windows 11 devices
8+
- All Windows 11 devices
99
- Windows 10 devices with Windows version: 10.0.16299.0 (aka 1709, aka Redstone 3, aka Fall Creators Update) or higher
1010
Some features may not work on all versions. See [Windows 10 Compatibility](win10-compat.md) for version support details.
1111

docs/win10-compat.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@ The following table captures the versions of Windows 10 that a React Native for
2222

2323
| React Native Windows | Target OS Version | Minimum OS Version |
2424
| :--: | :-: | :-: |
25+
| 0.66+ | **May 2020 update**<br> Version 2004 ; Build 10.0.19041.0 | **Fall Creators Update**<br> Version 1709 ; Build 10.0.16299.91 |
2526
| 0.62 - 0.65 | **May 2019 update**<br> Version 1903 ; Build 10.0.18362.1 | **Fall Creators Update**<br> Version 1709 ; Build 10.0.16299.91 |
2627
| 0.60 - 0.61 | **May 2019 update**<br> Version 1903 ; Build 10.0.18362.1 | **Creators Update**<br> Version 1703 ; Build 10.0.15063.468 |

0 commit comments

Comments
 (0)