react-native-windows 0.69.10 → 0.69.11
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/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +1 -7
- package/Microsoft.ReactNative.Cxx/JSI/NodeApiJsiRuntime.cpp +2 -0
- package/Microsoft.ReactNative.Cxx/JSI/NodeApiJsiRuntime.h +3 -3
- package/Microsoft.ReactNative.Cxx/Microsoft.ReactNative.Cxx.vcxitems +2 -1
- package/PropertySheets/External/Microsoft.ReactNative.Cpp.ProjectReferences.props +3 -0
- package/PropertySheets/Generated/PackageVersion.g.props +2 -2
- package/PropertySheets/JSEngine.props +1 -2
- package/Shared/JSI/NapiJsiV8RuntimeHolder.h +2 -0
- package/Shared/V8JSIRuntimeHolder.h +2 -0
- package/package.json +1 -1
|
@@ -727,6 +727,7 @@
|
|
|
727
727
|
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
|
728
728
|
<PackageReference Include="$(WinUIPackageName)" Version="$(WinUIPackageVersion)" Condition="'$(OverrideWinUIPackage)'!='true'" />
|
|
729
729
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.194" />
|
|
730
|
+
<PackageReference Include="$(V8PackageName)" Version="$(V8Version)" Condition="'$(UseV8)' == 'true'" />
|
|
730
731
|
</ItemGroup>
|
|
731
732
|
<Choose>
|
|
732
733
|
<When Condition="'$(EnableSourceLink)' == 'true'">
|
|
@@ -737,13 +738,6 @@
|
|
|
737
738
|
</ItemGroup>
|
|
738
739
|
</When>
|
|
739
740
|
</Choose>
|
|
740
|
-
<Choose>
|
|
741
|
-
<When Condition="'$(UseV8)' == 'true'">
|
|
742
|
-
<ItemGroup>
|
|
743
|
-
<PackageReference Include="ReactNative.V8Jsi.Windows.UWP" Version="$(V8Version)" />
|
|
744
|
-
</ItemGroup>
|
|
745
|
-
</When>
|
|
746
|
-
</Choose>
|
|
747
741
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
748
742
|
<Import Project="$(ReactNativeWindowsDir)PropertySheets\FastBuild.targets" />
|
|
749
743
|
<Import Project="$(ReactNativeWindowsDir)PropertySheets\FixupRoslynCscWarnings.targets" />
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
#ifndef MICROSOFT_REACTNATIVE_JSI_NODEAPIJSIRUNTIME
|
|
6
6
|
#define MICROSOFT_REACTNATIVE_JSI_NODEAPIJSIRUNTIME
|
|
7
7
|
|
|
8
|
+
// Standard Library
|
|
9
|
+
#include <memory>
|
|
10
|
+
|
|
8
11
|
// JSI
|
|
9
12
|
#include <js_native_ext_api.h>
|
|
10
13
|
#include <jsi/jsi.h>
|
|
11
14
|
|
|
12
|
-
// Standard Library
|
|
13
|
-
#include <memory>
|
|
14
|
-
|
|
15
15
|
namespace Microsoft::JSI {
|
|
16
16
|
|
|
17
17
|
///
|
|
@@ -125,8 +125,9 @@
|
|
|
125
125
|
<ItemGroup>
|
|
126
126
|
<None Include="$(MSBuildThisFileDirectory)README.md" />
|
|
127
127
|
</ItemGroup>
|
|
128
|
-
<ItemGroup>
|
|
128
|
+
<ItemGroup Condition="'$(BuildMSRNCxx)' != 'false' and '$(RNExternalReferences)' != 'true'">
|
|
129
129
|
<ClCompile Include="$(MSBuildThisFileDirectory)JSI\NodeApiJsiRuntime.cpp">
|
|
130
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
130
131
|
<ExcludedFromBuild Condition="'$(UseV8)' != 'true'">true</ExcludedFromBuild>
|
|
131
132
|
</ClCompile>
|
|
132
133
|
</ItemGroup>
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
Licensed under the MIT License.
|
|
5
5
|
-->
|
|
6
6
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
7
|
+
<PropertyGroup>
|
|
8
|
+
<RNExternalReferences>true</RNExternalReferences>
|
|
9
|
+
</PropertyGroup>
|
|
7
10
|
<!-- To avoid having these references show in in Visual Studio which ignores conditions on items we have to put the source references in source. -->
|
|
8
11
|
<ImportGroup Label="Shared">
|
|
9
12
|
<Import Project="$(ReactNativeWindowsDir)\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems"
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.69.
|
|
13
|
+
<ReactNativeWindowsVersion>0.69.11</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>69</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>11</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
18
|
</PropertyGroup>
|
|
19
19
|
</Project>
|
|
@@ -18,10 +18,9 @@
|
|
|
18
18
|
<EnableDevServerHBCBundles Condition="'$(EnableDevServerHBCBundles)' == ''">false</EnableDevServerHBCBundles>
|
|
19
19
|
|
|
20
20
|
<UseV8 Condition="'$(UseV8)' == ''">false</UseV8>
|
|
21
|
-
<V8Version Condition="'$(V8Version)' == ''">0.69.
|
|
21
|
+
<V8Version Condition="'$(V8Version)' == ''">0.69.9</V8Version>
|
|
22
22
|
<V8PackageName>ReactNative.V8Jsi.Windows</V8PackageName>
|
|
23
23
|
<V8PackageName Condition="'$(V8AppPlatform)' != 'win32'">$(V8PackageName).UWP</V8PackageName>
|
|
24
|
-
<V8Package>$(NuGetPackageRoot)\$(V8PackageName).$(V8Version)</V8Package>
|
|
25
24
|
</PropertyGroup>
|
|
26
25
|
|
|
27
26
|
</Project>
|