|
1 | 1 | <Project>
|
2 |
| - <PropertyGroup> |
3 |
| - <RnwNewArch>false</RnwNewArch> |
4 |
| - <UseFabric>false</UseFabric> |
5 |
| - <UseWinUI3>false</UseWinUI3> |
6 |
| - <ReactExperimentalFeaturesSet>true</ReactExperimentalFeaturesSet> |
7 |
| - </PropertyGroup> |
8 | 2 | <PropertyGroup Condition="'$(SolutionName)'=='ReactWindows-Desktop'">
|
9 |
| - <RnwNewArch>true</RnwNewArch> |
10 |
| - <UseFabric>true</UseFabric> |
11 |
| - <UseWinUI3>true</UseWinUI3> |
12 |
| - <UseExperimentalWinUI3>true</UseExperimentalWinUI3> |
| 3 | + <RnwNewArch Condition="'$(RnwNewArch)' == ''">true</RnwNewArch> |
| 4 | + <UseFabric Condition="'$(UseFabric)' == ''">true</UseFabric> |
| 5 | + <UseWinUI3 Condition="'$(UseWinUI3)' == ''">true</UseWinUI3> |
| 6 | + <UseExperimentalWinUI3 Condition="'$(UseExperimentalWinUI3)' == ''">true</UseExperimentalWinUI3> |
13 | 7 | </PropertyGroup>
|
14 | 8 | <PropertyGroup Condition="'$(SolutionName)'=='Microsoft.ReactNative.NewArch'">
|
15 |
| - <RnwNewArch>true</RnwNewArch> |
16 |
| - <UseFabric>true</UseFabric> |
17 |
| - <UseWinUI3>true</UseWinUI3> |
| 9 | + <RnwNewArch Condition="'$(RnwNewArch)' == ''">true</RnwNewArch> |
| 10 | + <UseFabric Condition="'$(UseFabric)' == ''">true</UseFabric> |
| 11 | + <UseWinUI3 Condition="'$(UseWinUI3)' == ''">true</UseWinUI3> |
| 12 | + </PropertyGroup> |
| 13 | + <!-- Declare the unconditional group last so it does not supersede solution-specific assignments --> |
| 14 | + <PropertyGroup> |
| 15 | + <RnwNewArch Condition="'$(RnwNewArch)' == ''">false</RnwNewArch> |
| 16 | + <UseFabric Condition="'$(UseFabric)' == ''">false</UseFabric> |
| 17 | + <UseWinUI3 Condition="'$(UseWinUI3)' == ''">false</UseWinUI3> |
| 18 | + <ReactExperimentalFeaturesSet Condition="'$(ReactExperimentalFeaturesSet)' == ''">true</ReactExperimentalFeaturesSet> |
18 | 19 | </PropertyGroup>
|
19 | 20 | </Project>
|
0 commit comments