@@ -48,11 +48,10 @@ Of course all the other flags still work.
48
48
1 . Update the solution file ` windows\<projectName>.sln ` :
49
49
1 . Open the project in Visual Studio
50
50
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 >
56
55
```
57
56
1. If you have a project that was created before 0.63, you should remove all references to `Microsoft.ReactNative.*` projects.
58
57
1. Add a NuGet reference to `Microsoft.ReactNative.Managed`.
@@ -72,13 +71,10 @@ Of course all the other flags still work.
72
71
1. Update the solution file `windows\<projectName >.sln`:
73
72
1. Open the project in Visual Studio
74
73
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 >
82
78
```
83
79
1. Add NuGet references to the following NuGet packages:
84
80
* `Microsoft.ReactNative`
0 commit comments