react-native-windows 0.73.16 → 0.73.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Common/Common.vcxproj +8 -0
- package/Directory.Build.targets +5 -0
- package/Folly/Folly.vcxproj +9 -1
- package/PropertySheets/ARM64EC.props +13 -0
- package/PropertySheets/Application/ARM64EC.props +13 -0
- package/PropertySheets/DynamicLibrary/ARM64EC.props +13 -0
- package/PropertySheets/Generated/PackageVersion.g.props +3 -3
- package/PropertySheets/JSEngine.props +2 -1
- package/PropertySheets/StaticLibrary/ARM64EC.props +13 -0
- package/ReactCommon/ReactCommon.vcxproj +8 -0
- package/Scripts/OfficeReact.Win32.nuspec +16 -18
- package/Scripts/StripAdditionalPlatformsFromNuspec.ps1 +1 -1
- package/fmt/fmt.vcxproj +9 -1
- package/package.json +1 -1
package/Common/Common.vcxproj
CHANGED
|
@@ -11,10 +11,18 @@
|
|
|
11
11
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
12
12
|
<Import Project="$(ReactNativeWindowsDir)PropertySheets\React.Cpp.props" />
|
|
13
13
|
<ItemGroup Label="ProjectConfigurations">
|
|
14
|
+
<ProjectConfiguration Include="Debug|ARM64EC">
|
|
15
|
+
<Configuration>Debug</Configuration>
|
|
16
|
+
<Platform>ARM64EC</Platform>
|
|
17
|
+
</ProjectConfiguration>
|
|
14
18
|
<ProjectConfiguration Include="Debug|x64">
|
|
15
19
|
<Configuration>Debug</Configuration>
|
|
16
20
|
<Platform>x64</Platform>
|
|
17
21
|
</ProjectConfiguration>
|
|
22
|
+
<ProjectConfiguration Include="Release|ARM64EC">
|
|
23
|
+
<Configuration>Release</Configuration>
|
|
24
|
+
<Platform>ARM64EC</Platform>
|
|
25
|
+
</ProjectConfiguration>
|
|
18
26
|
<ProjectConfiguration Include="Release|x64">
|
|
19
27
|
<Configuration>Release</Configuration>
|
|
20
28
|
<Platform>x64</Platform>
|
package/Directory.Build.targets
CHANGED
|
@@ -21,4 +21,9 @@
|
|
|
21
21
|
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Restore" Properties="RestoreProjectStyle=PackagesConfig;RestorePackagesConfig=true;RestoreUseStaticGraphEvaluation=false" />
|
|
22
22
|
</Target>
|
|
23
23
|
|
|
24
|
+
<PropertyGroup Label="WindowsAppSDKOverrides" Condition="'$(Platform)' == 'ARM64EC'">
|
|
25
|
+
<Ixp-Platform>win10-x64</Ixp-Platform>
|
|
26
|
+
<_WindowsAppSDKFoundationPlatform>x64</_WindowsAppSDKFoundationPlatform>
|
|
27
|
+
<_MrtCoreRuntimeIdentifier>x64</_MrtCoreRuntimeIdentifier>
|
|
28
|
+
</PropertyGroup>
|
|
24
29
|
</Project>
|
package/Folly/Folly.vcxproj
CHANGED
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
<Configuration>Debug</Configuration>
|
|
18
18
|
<Platform>ARM64</Platform>
|
|
19
19
|
</ProjectConfiguration>
|
|
20
|
+
<ProjectConfiguration Include="Debug|ARM64EC">
|
|
21
|
+
<Configuration>Debug</Configuration>
|
|
22
|
+
<Platform>ARM64EC</Platform>
|
|
23
|
+
</ProjectConfiguration>
|
|
20
24
|
<ProjectConfiguration Include="Release|ARM64">
|
|
21
25
|
<Configuration>Release</Configuration>
|
|
22
26
|
<Platform>ARM64</Platform>
|
|
@@ -25,6 +29,10 @@
|
|
|
25
29
|
<Configuration>Debug</Configuration>
|
|
26
30
|
<Platform>x64</Platform>
|
|
27
31
|
</ProjectConfiguration>
|
|
32
|
+
<ProjectConfiguration Include="Release|ARM64EC">
|
|
33
|
+
<Configuration>Release</Configuration>
|
|
34
|
+
<Platform>ARM64EC</Platform>
|
|
35
|
+
</ProjectConfiguration>
|
|
28
36
|
<ProjectConfiguration Include="Release|x64">
|
|
29
37
|
<Configuration>Release</Configuration>
|
|
30
38
|
<Platform>x64</Platform>
|
|
@@ -279,7 +287,7 @@
|
|
|
279
287
|
SourceUrl="https://github.com/facebook/folly/archive/v$(FollyVersion).zip"
|
|
280
288
|
DestinationFileName="$(FollyZipFile)"
|
|
281
289
|
DestinationFolder="$(FollyZipDir)"
|
|
282
|
-
Retries="10"/>
|
|
290
|
+
Retries="10" />
|
|
283
291
|
</Target>
|
|
284
292
|
<Target Name="UnzipFolly" BeforeTargets="PrepareForBuild" DependsOnTargets="DownloadFolly">
|
|
285
293
|
<Message Condition="!Exists('$(FollyDir)folly\dynamic.h')" Importance="High" Text="Unzipping folly to $([MSBuild]::NormalizePath($(FollyDir)..))." />
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
|
|
4
|
+
<PropertyGroup Label="Globals">
|
|
5
|
+
</PropertyGroup>
|
|
6
|
+
|
|
7
|
+
<PropertyGroup Label="Configuration">
|
|
8
|
+
</PropertyGroup>
|
|
9
|
+
|
|
10
|
+
<ItemDefinitionGroup>
|
|
11
|
+
</ItemDefinitionGroup>
|
|
12
|
+
|
|
13
|
+
</Project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
|
|
4
|
+
<PropertyGroup Label="Globals">
|
|
5
|
+
</PropertyGroup>
|
|
6
|
+
|
|
7
|
+
<PropertyGroup Label="Configuration">
|
|
8
|
+
</PropertyGroup>
|
|
9
|
+
|
|
10
|
+
<ItemDefinitionGroup>
|
|
11
|
+
</ItemDefinitionGroup>
|
|
12
|
+
|
|
13
|
+
</Project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
|
|
4
|
+
<PropertyGroup Label="Globals">
|
|
5
|
+
</PropertyGroup>
|
|
6
|
+
|
|
7
|
+
<PropertyGroup Label="Configuration">
|
|
8
|
+
</PropertyGroup>
|
|
9
|
+
|
|
10
|
+
<ItemDefinitionGroup>
|
|
11
|
+
</ItemDefinitionGroup>
|
|
12
|
+
|
|
13
|
+
</Project>
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.73.
|
|
13
|
+
<ReactNativeWindowsVersion>0.73.18</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>73</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>18</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>ed947f1ba0d5375706d8b95977aa02119f548f64</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<!-- Enabling this will (1) Include hermes glues in the Microsoft.ReactNative binaries AND (2) Make hermes the default engine -->
|
|
15
15
|
<UseHermes Condition="'$(UseHermes)' == ''">true</UseHermes>
|
|
16
16
|
<!-- This will be true if (1) the client want to use hermes by setting UseHermes to true OR (2) We are building for UWP where dynamic switching is enabled -->
|
|
17
|
-
<HermesVersion Condition="'$(HermesVersion)' == ''">0.1.
|
|
17
|
+
<HermesVersion Condition="'$(HermesVersion)' == ''">0.1.23</HermesVersion>
|
|
18
18
|
<HermesPackage Condition="'$(HermesPackage)' == '' And Exists('$(PkgMicrosoft_JavaScript_Hermes)')">$(PkgMicrosoft_JavaScript_Hermes)</HermesPackage>
|
|
19
19
|
<HermesPackage Condition="'$(HermesPackage)' == ''">$(NuGetPackageRoot)\Microsoft.JavaScript.Hermes\$(HermesVersion)</HermesPackage>
|
|
20
20
|
<EnableHermesInspectorInReleaseFlavor Condition="'$(EnableHermesInspectorInReleaseFlavor)' == ''">false</EnableHermesInspectorInReleaseFlavor>
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
<V8PackageName>ReactNative.V8Jsi.Windows</V8PackageName>
|
|
29
29
|
<V8PackageName Condition="'$(V8AppPlatform)' != 'win32'">$(V8PackageName).UWP</V8PackageName>
|
|
30
30
|
<V8Package>$(NuGetPackageRoot)\$(V8PackageName).$(V8Version)</V8Package>
|
|
31
|
+
<V8Platform Condition="'$(Platform)' == 'ARM64EC'">x64</V8Platform>
|
|
31
32
|
</PropertyGroup>
|
|
32
33
|
|
|
33
34
|
</Project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
|
|
4
|
+
<PropertyGroup Label="Globals">
|
|
5
|
+
</PropertyGroup>
|
|
6
|
+
|
|
7
|
+
<PropertyGroup Label="Configuration">
|
|
8
|
+
</PropertyGroup>
|
|
9
|
+
|
|
10
|
+
<ItemDefinitionGroup>
|
|
11
|
+
</ItemDefinitionGroup>
|
|
12
|
+
|
|
13
|
+
</Project>
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
<Configuration>Debug</Configuration>
|
|
17
17
|
<Platform>ARM64</Platform>
|
|
18
18
|
</ProjectConfiguration>
|
|
19
|
+
<ProjectConfiguration Include="Debug|ARM64EC">
|
|
20
|
+
<Configuration>Debug</Configuration>
|
|
21
|
+
<Platform>ARM64EC</Platform>
|
|
22
|
+
</ProjectConfiguration>
|
|
19
23
|
<ProjectConfiguration Include="Release|ARM64">
|
|
20
24
|
<Configuration>Release</Configuration>
|
|
21
25
|
<Platform>ARM64</Platform>
|
|
@@ -24,6 +28,10 @@
|
|
|
24
28
|
<Configuration>Debug</Configuration>
|
|
25
29
|
<Platform>x64</Platform>
|
|
26
30
|
</ProjectConfiguration>
|
|
31
|
+
<ProjectConfiguration Include="Release|ARM64EC">
|
|
32
|
+
<Configuration>Release</Configuration>
|
|
33
|
+
<Platform>ARM64EC</Platform>
|
|
34
|
+
</ProjectConfiguration>
|
|
27
35
|
<ProjectConfiguration Include="Release|x64">
|
|
28
36
|
<Configuration>Release</Configuration>
|
|
29
37
|
<Platform>x64</Platform>
|
|
@@ -15,25 +15,23 @@
|
|
|
15
15
|
</metadata>
|
|
16
16
|
<files>
|
|
17
17
|
|
|
18
|
-
<file src="$nugetroot$\x86\Debug\React.Windows.Desktop.DLL\react-native-win32.*"
|
|
19
|
-
<file src="$nugetroot$\x64\Debug\React.Windows.Desktop.DLL\react-native-win32.*"
|
|
20
|
-
<file src="$nugetroot$\
|
|
21
|
-
<file src="$nugetroot$\x86\Release\React.Windows.Desktop.DLL\react-native-win32.*"
|
|
22
|
-
<file src="$nugetroot$\x64\Release\React.Windows.Desktop.DLL\react-native-win32.*"
|
|
23
|
-
<file src="$nugetroot$\
|
|
24
|
-
<file src="$nugetroot$\x86\Debug\React.Windows.Desktop\Microsoft.ReactNative.winmd"
|
|
25
|
-
<file src="$nugetroot$\x64\Debug\React.Windows.Desktop\Microsoft.ReactNative.winmd"
|
|
26
|
-
<file src="$nugetroot$\
|
|
27
|
-
<file src="$nugetroot$\x86\Release\React.Windows.Desktop\Microsoft.ReactNative.winmd"
|
|
28
|
-
<file src="$nugetroot$\x64\Release\React.Windows.Desktop\Microsoft.ReactNative.winmd"
|
|
29
|
-
<file src="$nugetroot$\
|
|
18
|
+
<file src="$nugetroot$\x86\Debug\React.Windows.Desktop.DLL\react-native-win32.*" target="lib\debug\x86" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
19
|
+
<file src="$nugetroot$\x64\Debug\React.Windows.Desktop.DLL\react-native-win32.*" target="lib\debug\x64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
20
|
+
<file src="$nugetroot$\ARM64EC\Debug\React.Windows.Desktop.DLL\react-native-win32.*" target="lib\debug\ARM64EC" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
21
|
+
<file src="$nugetroot$\x86\Release\React.Windows.Desktop.DLL\react-native-win32.*" target="lib\ship\x86" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
22
|
+
<file src="$nugetroot$\x64\Release\React.Windows.Desktop.DLL\react-native-win32.*" target="lib\ship\x64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
23
|
+
<file src="$nugetroot$\ARM64EC\Release\React.Windows.Desktop.DLL\react-native-win32.*" target="lib\ship\ARM64EC" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
24
|
+
<file src="$nugetroot$\x86\Debug\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\debug\x86"/>
|
|
25
|
+
<file src="$nugetroot$\x64\Debug\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\debug\x64"/>
|
|
26
|
+
<file src="$nugetroot$\ARM64EC\Debug\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\debug\ARM64EC"/>
|
|
27
|
+
<file src="$nugetroot$\x86\Release\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\ship\x86"/>
|
|
28
|
+
<file src="$nugetroot$\x64\Release\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\ship\x64"/>
|
|
29
|
+
<file src="$nugetroot$\ARM64EC\Release\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\ship\ARM64EC"/>
|
|
30
30
|
|
|
31
|
-
<file src="$nugetroot$\x86\Debug\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**"
|
|
32
|
-
<file src="$nugetroot$\x64\Debug\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**"
|
|
33
|
-
<file src="$nugetroot$\
|
|
34
|
-
<file src="$nugetroot$\
|
|
35
|
-
<file src="$nugetroot$\x64\Release\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\ship\x64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
36
|
-
<file src="$nugetroot$\ARM64\Release\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\ship\ARM64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
31
|
+
<file src="$nugetroot$\x86\Debug\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\debug\x86" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
32
|
+
<file src="$nugetroot$\x64\Debug\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\debug\x64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
33
|
+
<file src="$nugetroot$\x86\Release\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\ship\x86" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
34
|
+
<file src="$nugetroot$\x64\Release\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\ship\x64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
37
35
|
|
|
38
36
|
<file src="$nugetroot$\inc\callinvoker\ReactCommon\CallInvoker.h" target="inc\ReactCommon"/>
|
|
39
37
|
<file src="$nugetroot$\inc\callinvoker\ReactCommon\SchedulerPriority.h" target="inc\ReactCommon"/>
|
|
@@ -16,7 +16,7 @@ If ($PSBoundParameters['Debug']) {
|
|
|
16
16
|
Write-Output "Creating filtered version of : $nuspec"
|
|
17
17
|
$xml = [xml](gc $nuspec)
|
|
18
18
|
|
|
19
|
-
$allSlices = @("x64.Release", "x64.Debug", "x86.Release", "x86.Debug", "ARM64.Release", "ARM64.Debug")
|
|
19
|
+
$allSlices = @("x64.Release", "x64.Debug", "x86.Release", "x86.Debug", "ARM64.Release", "ARM64.Debug", "ARM64EC.Debug", "ARM64EC.Release")
|
|
20
20
|
|
|
21
21
|
$nodesToRemove = @();
|
|
22
22
|
|
package/fmt/fmt.vcxproj
CHANGED
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
<Configuration>Debug</Configuration>
|
|
18
18
|
<Platform>ARM64</Platform>
|
|
19
19
|
</ProjectConfiguration>
|
|
20
|
+
<ProjectConfiguration Include="Debug|ARM64EC">
|
|
21
|
+
<Configuration>Debug</Configuration>
|
|
22
|
+
<Platform>ARM64EC</Platform>
|
|
23
|
+
</ProjectConfiguration>
|
|
20
24
|
<ProjectConfiguration Include="Release|ARM64">
|
|
21
25
|
<Configuration>Release</Configuration>
|
|
22
26
|
<Platform>ARM64</Platform>
|
|
@@ -25,6 +29,10 @@
|
|
|
25
29
|
<Configuration>Debug</Configuration>
|
|
26
30
|
<Platform>x64</Platform>
|
|
27
31
|
</ProjectConfiguration>
|
|
32
|
+
<ProjectConfiguration Include="Release|ARM64EC">
|
|
33
|
+
<Configuration>Release</Configuration>
|
|
34
|
+
<Platform>ARM64EC</Platform>
|
|
35
|
+
</ProjectConfiguration>
|
|
28
36
|
<ProjectConfiguration Include="Release|x64">
|
|
29
37
|
<Configuration>Release</Configuration>
|
|
30
38
|
<Platform>x64</Platform>
|
|
@@ -110,7 +118,7 @@
|
|
|
110
118
|
Retries="10" />
|
|
111
119
|
</Target>
|
|
112
120
|
<Target Name="UnzipFmt" BeforeTargets="PrepareForBuild" DependsOnTargets="DownloadFmt">
|
|
113
|
-
<Message Condition="!Exists('$(FmtDir)src\format.cc')" Importance="High" Text="Unzipping fmt to $([MSBuild]::NormalizePath($(FmtDir)..))."/>
|
|
121
|
+
<Message Condition="!Exists('$(FmtDir)src\format.cc')" Importance="High" Text="Unzipping fmt to $([MSBuild]::NormalizePath($(FmtDir)..))." />
|
|
114
122
|
<Unzip
|
|
115
123
|
Condition="!Exists('$(FmtDir)src\format.cc')"
|
|
116
124
|
SourceFiles="$(FmtZipFile)"
|