react-native-windows 0.74.24 → 0.74.25
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/Fabric/ComponentView.cpp +8 -0
- package/Microsoft.ReactNative/Fabric/ComponentView.h +5 -1
- package/Microsoft.ReactNative/Fabric/Composition/CompositionRootAutomationProvider.cpp +8 -32
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +2 -1
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +23 -0
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.h +3 -0
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +20 -0
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +3 -0
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +10 -4
- package/Microsoft.ReactNative/packages.lock.json +55 -83
- package/Microsoft.ReactNative.Cxx/ComponentView.Experimental.interop.h +14 -0
- package/Microsoft.ReactNative.Managed/packages.lock.json +107 -107
- package/PropertySheets/CppAppConsumeCSharpModule.props +2 -0
- package/PropertySheets/External/Microsoft.ReactNative.CSharp.Dependencies.props +1 -1
- package/PropertySheets/Generated/PackageVersion.g.props +3 -3
- package/ReactCommon/packages.lock.json +2 -2
- package/package.json +1 -1
|
@@ -363,6 +363,14 @@ RECT ComponentView::getClientRect() const noexcept {
|
|
|
363
363
|
return {};
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
+
winrt::Windows::Foundation::Point ComponentView::ScreenToLocal(winrt::Windows::Foundation::Point pt) noexcept {
|
|
367
|
+
return rootComponentView()->ConvertScreenToLocal(pt);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
winrt::Windows::Foundation::Point ComponentView::LocalToScreen(winrt::Windows::Foundation::Point pt) noexcept {
|
|
371
|
+
return rootComponentView()->ConvertLocalToScreen(pt);
|
|
372
|
+
}
|
|
373
|
+
|
|
366
374
|
// The offset from this elements parent to its children (accounts for things like scroll position)
|
|
367
375
|
facebook::react::Point ComponentView::getClientOffset() const noexcept {
|
|
368
376
|
assert(false);
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
#include <react/renderer/components/view/ViewProps.h>
|
|
12
12
|
#include <react/renderer/core/LayoutMetrics.h>
|
|
13
13
|
|
|
14
|
+
#include <ComponentView.Experimental.interop.h>
|
|
14
15
|
#include <Fabric/Composition/Theme.h>
|
|
15
16
|
#include <uiautomationcore.h>
|
|
16
17
|
#include <winrt/Microsoft.ReactNative.Composition.Input.h>
|
|
@@ -77,7 +78,8 @@ struct UnmountChildComponentViewArgs : public UnmountChildComponentViewArgsT<Unm
|
|
|
77
78
|
uint32_t m_index;
|
|
78
79
|
};
|
|
79
80
|
|
|
80
|
-
struct ComponentView
|
|
81
|
+
struct ComponentView
|
|
82
|
+
: public ComponentViewT<ComponentView, ::Microsoft::ReactNative::Composition::Experimental::IComponentViewInterop> {
|
|
81
83
|
ComponentView(facebook::react::Tag tag, winrt::Microsoft::ReactNative::ReactContext const &reactContext);
|
|
82
84
|
|
|
83
85
|
virtual std::vector<facebook::react::ComponentDescriptorProvider> supplementalComponentDescriptorProviders() noexcept;
|
|
@@ -105,6 +107,8 @@ struct ComponentView : public ComponentViewT<ComponentView> {
|
|
|
105
107
|
// returns true if the fn ever returned true
|
|
106
108
|
bool runOnChildren(bool forward, Mso::Functor<bool(ComponentView &)> &fn) noexcept;
|
|
107
109
|
virtual RECT getClientRect() const noexcept;
|
|
110
|
+
winrt::Windows::Foundation::Point ScreenToLocal(winrt::Windows::Foundation::Point pt) noexcept;
|
|
111
|
+
winrt::Windows::Foundation::Point LocalToScreen(winrt::Windows::Foundation::Point pt) noexcept;
|
|
108
112
|
// The offset from this elements parent to its children (accounts for things like scroll position)
|
|
109
113
|
virtual facebook::react::Point getClientOffset() const noexcept;
|
|
110
114
|
virtual void onLosingFocus(const winrt::Microsoft::ReactNative::LosingFocusEventArgs &args) noexcept;
|
|
@@ -189,40 +189,16 @@ HRESULT __stdcall CompositionRootAutomationProvider::ElementProviderFromPoint(
|
|
|
189
189
|
*pRetVal = nullptr;
|
|
190
190
|
|
|
191
191
|
if (auto rootView = rootComponentView()) {
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
static_cast<LONG>(local.Y * m_island.RasterizationScale())});
|
|
200
|
-
auto spFragment = provider.try_as<IRawElementProviderFragment>();
|
|
201
|
-
if (spFragment) {
|
|
202
|
-
*pRetVal = spFragment.detach();
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
return S_OK;
|
|
192
|
+
auto local = rootView->ConvertScreenToLocal({static_cast<float>(x), static_cast<float>(y)});
|
|
193
|
+
auto provider = rootView->UiaProviderFromPoint(
|
|
194
|
+
{static_cast<LONG>(local.X * rootView->LayoutMetrics().PointScaleFactor),
|
|
195
|
+
static_cast<LONG>(local.Y * rootView->LayoutMetrics().PointScaleFactor)});
|
|
196
|
+
auto spFragment = provider.try_as<IRawElementProviderFragment>();
|
|
197
|
+
if (spFragment) {
|
|
198
|
+
*pRetVal = spFragment.detach();
|
|
206
199
|
}
|
|
207
|
-
#endif
|
|
208
200
|
|
|
209
|
-
|
|
210
|
-
if (!IsWindow(m_hwnd)) {
|
|
211
|
-
// TODO: Add support for non-HWND based hosting
|
|
212
|
-
assert(false);
|
|
213
|
-
return E_FAIL;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
POINT clientPoint{static_cast<LONG>(x), static_cast<LONG>(y)};
|
|
217
|
-
ScreenToClient(m_hwnd, &clientPoint);
|
|
218
|
-
|
|
219
|
-
auto provider = rootView->UiaProviderFromPoint(clientPoint);
|
|
220
|
-
auto spFragment = provider.try_as<IRawElementProviderFragment>();
|
|
221
|
-
if (spFragment) {
|
|
222
|
-
*pRetVal = spFragment.detach();
|
|
223
|
-
return S_OK;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
201
|
+
return S_OK;
|
|
226
202
|
}
|
|
227
203
|
|
|
228
204
|
AddRef();
|
package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp
CHANGED
|
@@ -76,7 +76,8 @@ void WindowsModalHostComponentView::EnsureModalCreated() {
|
|
|
76
76
|
// get the root hwnd
|
|
77
77
|
m_prevWindowID =
|
|
78
78
|
winrt::Microsoft::ReactNative::ReactCoreInjection::GetTopLevelWindowId(m_reactContext.Properties().Handle());
|
|
79
|
-
|
|
79
|
+
|
|
80
|
+
auto roothwnd = GetHwndForParenting();
|
|
80
81
|
|
|
81
82
|
m_hwnd = CreateWindow(
|
|
82
83
|
c_modalWindowClassName,
|
|
@@ -360,6 +360,29 @@ winrt::IInspectable ReactNativeIsland::GetUiaProvider() noexcept {
|
|
|
360
360
|
return m_uiaProvider;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
|
+
winrt::Windows::Foundation::Point ReactNativeIsland::ConvertScreenToLocal(
|
|
364
|
+
winrt::Windows::Foundation::Point pt) noexcept {
|
|
365
|
+
if (m_island) {
|
|
366
|
+
auto pp = m_island.CoordinateConverter().ConvertScreenToLocal(
|
|
367
|
+
winrt::Windows::Graphics::PointInt32{static_cast<int32_t>(pt.X), static_cast<int32_t>(pt.Y)});
|
|
368
|
+
return {static_cast<float>(pp.X), static_cast<float>(pp.Y)};
|
|
369
|
+
}
|
|
370
|
+
POINT p{static_cast<LONG>(pt.X), static_cast<LONG>(pt.Y)};
|
|
371
|
+
ScreenToClient(m_hwnd, &p);
|
|
372
|
+
return {static_cast<float>(p.x) / m_scaleFactor, static_cast<float>(p.y) / m_scaleFactor};
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
winrt::Windows::Foundation::Point ReactNativeIsland::ConvertLocalToScreen(
|
|
376
|
+
winrt::Windows::Foundation::Point pt) noexcept {
|
|
377
|
+
if (m_island) {
|
|
378
|
+
auto pp = m_island.CoordinateConverter().ConvertLocalToScreen(pt);
|
|
379
|
+
return {static_cast<float>(pp.X), static_cast<float>(pp.Y)};
|
|
380
|
+
}
|
|
381
|
+
POINT p{static_cast<LONG>(pt.X * m_scaleFactor), static_cast<LONG>(pt.Y * m_scaleFactor)};
|
|
382
|
+
ClientToScreen(m_hwnd, &p);
|
|
383
|
+
return {static_cast<float>(p.x), static_cast<float>(p.y)};
|
|
384
|
+
}
|
|
385
|
+
|
|
363
386
|
void ReactNativeIsland::SetWindow(uint64_t hwnd) noexcept {
|
|
364
387
|
m_hwnd = reinterpret_cast<HWND>(hwnd);
|
|
365
388
|
}
|
|
@@ -114,6 +114,9 @@ struct ReactNativeIsland
|
|
|
114
114
|
void SetWindow(uint64_t hwnd) noexcept;
|
|
115
115
|
int64_t SendMessage(uint32_t msg, uint64_t wParam, int64_t lParam) noexcept;
|
|
116
116
|
|
|
117
|
+
winrt::Windows::Foundation::Point ConvertScreenToLocal(winrt::Windows::Foundation::Point pt) noexcept;
|
|
118
|
+
winrt::Windows::Foundation::Point ConvertLocalToScreen(winrt::Windows::Foundation::Point pt) noexcept;
|
|
119
|
+
|
|
117
120
|
bool CapturePointer(
|
|
118
121
|
const winrt::Microsoft::ReactNative::Composition::Input::Pointer &pointer,
|
|
119
122
|
facebook::react::Tag tag) noexcept;
|
|
@@ -248,6 +248,26 @@ float RootComponentView::FontSizeMultiplier() const noexcept {
|
|
|
248
248
|
return 1.0f;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
+
winrt::Windows::Foundation::Point RootComponentView::ConvertScreenToLocal(
|
|
252
|
+
winrt::Windows::Foundation::Point pt) noexcept {
|
|
253
|
+
if (auto rootView = m_wkRootView.get()) {
|
|
254
|
+
return winrt::get_self<winrt::Microsoft::ReactNative::implementation::ReactNativeIsland>(rootView)
|
|
255
|
+
->ConvertScreenToLocal(pt);
|
|
256
|
+
}
|
|
257
|
+
assert(false);
|
|
258
|
+
return {};
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
winrt::Windows::Foundation::Point RootComponentView::ConvertLocalToScreen(
|
|
262
|
+
winrt::Windows::Foundation::Point pt) noexcept {
|
|
263
|
+
if (auto rootView = m_wkRootView.get()) {
|
|
264
|
+
return winrt::get_self<winrt::Microsoft::ReactNative::implementation::ReactNativeIsland>(rootView)
|
|
265
|
+
->ConvertLocalToScreen(pt);
|
|
266
|
+
}
|
|
267
|
+
assert(false);
|
|
268
|
+
return {};
|
|
269
|
+
}
|
|
270
|
+
|
|
251
271
|
winrt::Microsoft::UI::Content::ContentIsland RootComponentView::parentContentIsland() noexcept {
|
|
252
272
|
if (auto rootView = m_wkRootView.get()) {
|
|
253
273
|
return winrt::get_self<winrt::Microsoft::ReactNative::implementation::ReactNativeIsland>(rootView)->Island();
|
|
@@ -38,6 +38,9 @@ struct RootComponentView : RootComponentViewT<RootComponentView, ViewComponentVi
|
|
|
38
38
|
|
|
39
39
|
RootComponentView *rootComponentView() const noexcept override;
|
|
40
40
|
|
|
41
|
+
winrt::Windows::Foundation::Point ConvertScreenToLocal(winrt::Windows::Foundation::Point pt) noexcept;
|
|
42
|
+
winrt::Windows::Foundation::Point ConvertLocalToScreen(winrt::Windows::Foundation::Point pt) noexcept;
|
|
43
|
+
|
|
41
44
|
winrt::Microsoft::UI::Content::ContentIsland parentContentIsland() noexcept;
|
|
42
45
|
|
|
43
46
|
// Index that visuals can be inserted into OuterVisual for debugging UI
|
package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp
CHANGED
|
@@ -237,14 +237,20 @@ struct CompTextHost : public winrt::implements<CompTextHost, ITextHost> {
|
|
|
237
237
|
|
|
238
238
|
//@cmember Converts screen coordinates of a specified point to the client coordinates
|
|
239
239
|
BOOL TxScreenToClient(LPPOINT lppt) override {
|
|
240
|
-
|
|
241
|
-
|
|
240
|
+
winrt::Windows::Foundation::Point pt{static_cast<float>(lppt->x), static_cast<float>(lppt->y)};
|
|
241
|
+
auto localpt = m_outer->ScreenToLocal(pt);
|
|
242
|
+
lppt->x = static_cast<LONG>(localpt.X);
|
|
243
|
+
lppt->y = static_cast<LONG>(localpt.Y);
|
|
244
|
+
return true;
|
|
242
245
|
}
|
|
243
246
|
|
|
244
247
|
//@cmember Converts the client coordinates of a specified point to screen coordinates
|
|
245
248
|
BOOL TxClientToScreen(LPPOINT lppt) override {
|
|
246
|
-
|
|
247
|
-
|
|
249
|
+
winrt::Windows::Foundation::Point pt{static_cast<float>(lppt->x), static_cast<float>(lppt->y)};
|
|
250
|
+
auto screenpt = m_outer->LocalToScreen(pt);
|
|
251
|
+
lppt->x = static_cast<LONG>(screenpt.X);
|
|
252
|
+
lppt->y = static_cast<LONG>(screenpt.Y);
|
|
253
|
+
return true;
|
|
248
254
|
}
|
|
249
255
|
|
|
250
256
|
//@cmember Request host to activate text services
|
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
"native,Version=v0.0": {
|
|
5
5
|
"boost": {
|
|
6
6
|
"type": "Direct",
|
|
7
|
-
"requested": "[1.
|
|
8
|
-
"resolved": "1.
|
|
9
|
-
"contentHash": "
|
|
7
|
+
"requested": "[1.83.0, )",
|
|
8
|
+
"resolved": "1.83.0",
|
|
9
|
+
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
|
|
10
10
|
},
|
|
11
11
|
"Microsoft.JavaScript.Hermes": {
|
|
12
12
|
"type": "Direct",
|
|
13
|
-
"requested": "[0.1.
|
|
14
|
-
"resolved": "0.1.
|
|
15
|
-
"contentHash": "
|
|
13
|
+
"requested": "[0.1.23, )",
|
|
14
|
+
"resolved": "0.1.23",
|
|
15
|
+
"contentHash": "cA9t1GjY4Yo0JD1AfA//e1lOwk48hLANfuX6GXrikmEBNZVr2TIX5ONJt5tqCnpZyLz6xGiPDgTfFNKbSfb21g=="
|
|
16
16
|
},
|
|
17
17
|
"Microsoft.SourceLink.GitHub": {
|
|
18
18
|
"type": "Direct",
|
|
@@ -24,14 +24,13 @@
|
|
|
24
24
|
"Microsoft.SourceLink.Common": "1.1.1"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
|
-
"Microsoft.
|
|
27
|
+
"Microsoft.UI.Xaml": {
|
|
28
28
|
"type": "Direct",
|
|
29
|
-
"requested": "[
|
|
30
|
-
"resolved": "
|
|
31
|
-
"contentHash": "
|
|
29
|
+
"requested": "[2.8.0, )",
|
|
30
|
+
"resolved": "2.8.0",
|
|
31
|
+
"contentHash": "vxdHxTr63s5KVtNddMFpgvjBjUH50z7seq/5jLWmmSuf8poxg+sXrywkofUdE8ZstbpO9y3FL/IXXUcPYbeesA==",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"Microsoft.
|
|
34
|
-
"Microsoft.SourceLink.Common": "1.1.1"
|
|
33
|
+
"Microsoft.Web.WebView2": "1.0.1264.42"
|
|
35
34
|
}
|
|
36
35
|
},
|
|
37
36
|
"Microsoft.Windows.CppWinRT": {
|
|
@@ -40,24 +39,25 @@
|
|
|
40
39
|
"resolved": "2.0.230706.1",
|
|
41
40
|
"contentHash": "l0D7oCw/5X+xIKHqZTi62TtV+1qeSz7KVluNFdrJ9hXsst4ghvqQ/Yhura7JqRdZWBXAuDS0G0KwALptdoxweQ=="
|
|
42
41
|
},
|
|
43
|
-
"Microsoft.
|
|
44
|
-
"type": "
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
48
|
-
"dependencies": {
|
|
49
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
50
|
-
}
|
|
42
|
+
"Microsoft.Build.Tasks.Git": {
|
|
43
|
+
"type": "Transitive",
|
|
44
|
+
"resolved": "1.1.1",
|
|
45
|
+
"contentHash": "AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q=="
|
|
51
46
|
},
|
|
52
|
-
"Microsoft.
|
|
47
|
+
"Microsoft.SourceLink.Common": {
|
|
53
48
|
"type": "Transitive",
|
|
54
|
-
"resolved": "
|
|
55
|
-
"contentHash": "
|
|
49
|
+
"resolved": "1.1.1",
|
|
50
|
+
"contentHash": "WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg=="
|
|
51
|
+
},
|
|
52
|
+
"Microsoft.Web.WebView2": {
|
|
53
|
+
"type": "Transitive",
|
|
54
|
+
"resolved": "1.0.1264.42",
|
|
55
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
56
56
|
},
|
|
57
57
|
"common": {
|
|
58
58
|
"type": "Project",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"boost": "[1.
|
|
60
|
+
"boost": "[1.83.0, )"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"fmt": {
|
|
@@ -66,93 +66,65 @@
|
|
|
66
66
|
"folly": {
|
|
67
67
|
"type": "Project",
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"
|
|
70
|
-
"
|
|
69
|
+
"boost": "[1.83.0, )",
|
|
70
|
+
"fmt": "[1.0.0, )"
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
73
|
"reactcommon": {
|
|
74
74
|
"type": "Project",
|
|
75
75
|
"dependencies": {
|
|
76
76
|
"Folly": "[1.0.0, )",
|
|
77
|
-
"boost": "[1.
|
|
77
|
+
"boost": "[1.83.0, )"
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
"native,Version=v0.0/win10-arm": {
|
|
82
|
-
"Microsoft.
|
|
83
|
-
"type": "
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
87
|
-
"dependencies": {
|
|
88
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
89
|
-
}
|
|
82
|
+
"Microsoft.Web.WebView2": {
|
|
83
|
+
"type": "Transitive",
|
|
84
|
+
"resolved": "1.0.1264.42",
|
|
85
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
90
86
|
}
|
|
91
87
|
},
|
|
92
88
|
"native,Version=v0.0/win10-arm-aot": {
|
|
93
|
-
"Microsoft.
|
|
94
|
-
"type": "
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
98
|
-
"dependencies": {
|
|
99
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
100
|
-
}
|
|
89
|
+
"Microsoft.Web.WebView2": {
|
|
90
|
+
"type": "Transitive",
|
|
91
|
+
"resolved": "1.0.1264.42",
|
|
92
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
101
93
|
}
|
|
102
94
|
},
|
|
103
95
|
"native,Version=v0.0/win10-arm64-aot": {
|
|
104
|
-
"Microsoft.
|
|
105
|
-
"type": "
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
109
|
-
"dependencies": {
|
|
110
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
111
|
-
}
|
|
96
|
+
"Microsoft.Web.WebView2": {
|
|
97
|
+
"type": "Transitive",
|
|
98
|
+
"resolved": "1.0.1264.42",
|
|
99
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
112
100
|
}
|
|
113
101
|
},
|
|
114
102
|
"native,Version=v0.0/win10-x64": {
|
|
115
|
-
"Microsoft.
|
|
116
|
-
"type": "
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
120
|
-
"dependencies": {
|
|
121
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
122
|
-
}
|
|
103
|
+
"Microsoft.Web.WebView2": {
|
|
104
|
+
"type": "Transitive",
|
|
105
|
+
"resolved": "1.0.1264.42",
|
|
106
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
123
107
|
}
|
|
124
108
|
},
|
|
125
109
|
"native,Version=v0.0/win10-x64-aot": {
|
|
126
|
-
"Microsoft.
|
|
127
|
-
"type": "
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
131
|
-
"dependencies": {
|
|
132
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
133
|
-
}
|
|
110
|
+
"Microsoft.Web.WebView2": {
|
|
111
|
+
"type": "Transitive",
|
|
112
|
+
"resolved": "1.0.1264.42",
|
|
113
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
134
114
|
}
|
|
135
115
|
},
|
|
136
116
|
"native,Version=v0.0/win10-x86": {
|
|
137
|
-
"Microsoft.
|
|
138
|
-
"type": "
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
142
|
-
"dependencies": {
|
|
143
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
144
|
-
}
|
|
117
|
+
"Microsoft.Web.WebView2": {
|
|
118
|
+
"type": "Transitive",
|
|
119
|
+
"resolved": "1.0.1264.42",
|
|
120
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
145
121
|
}
|
|
146
122
|
},
|
|
147
123
|
"native,Version=v0.0/win10-x86-aot": {
|
|
148
|
-
"Microsoft.
|
|
149
|
-
"type": "
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
153
|
-
"dependencies": {
|
|
154
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
155
|
-
}
|
|
124
|
+
"Microsoft.Web.WebView2": {
|
|
125
|
+
"type": "Transitive",
|
|
126
|
+
"resolved": "1.0.1264.42",
|
|
127
|
+
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
156
128
|
}
|
|
157
129
|
}
|
|
158
130
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Copyright (c) Microsoft Corporation.
|
|
2
|
+
// Licensed under the MIT License.
|
|
3
|
+
|
|
4
|
+
#pragma once
|
|
5
|
+
|
|
6
|
+
namespace Microsoft::ReactNative::Composition::Experimental {
|
|
7
|
+
|
|
8
|
+
// This interface will be removed once we complete internal transitions to ContentIsland, and new APIs for hosting
|
|
9
|
+
// popups/new windows from a ContentIsland
|
|
10
|
+
struct __declspec(uuid("2A60D68A-57B8-43CA-B1BA-2FAF0FCB344B")) IComponentViewInterop : IUnknown {
|
|
11
|
+
virtual HWND GetHwndForParenting() noexcept = 0;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
} // namespace Microsoft::ReactNative::Composition::Experimental
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"UAP,Version=v10.0.17763": {
|
|
5
5
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
6
6
|
"type": "Direct",
|
|
7
|
-
"requested": "[6.2.
|
|
8
|
-
"resolved": "6.2.
|
|
9
|
-
"contentHash": "
|
|
7
|
+
"requested": "[6.2.14, )",
|
|
8
|
+
"resolved": "6.2.14",
|
|
9
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
12
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
13
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
12
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
13
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
14
14
|
"NETStandard.Library": "2.0.3"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
},
|
|
27
27
|
"boost": {
|
|
28
28
|
"type": "Transitive",
|
|
29
|
-
"resolved": "1.
|
|
30
|
-
"contentHash": "
|
|
29
|
+
"resolved": "1.83.0",
|
|
30
|
+
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
|
|
31
31
|
},
|
|
32
32
|
"Microsoft.Build.Tasks.Git": {
|
|
33
33
|
"type": "Transitive",
|
|
@@ -36,28 +36,28 @@
|
|
|
36
36
|
},
|
|
37
37
|
"Microsoft.JavaScript.Hermes": {
|
|
38
38
|
"type": "Transitive",
|
|
39
|
-
"resolved": "0.1.
|
|
40
|
-
"contentHash": "
|
|
39
|
+
"resolved": "0.1.23",
|
|
40
|
+
"contentHash": "cA9t1GjY4Yo0JD1AfA//e1lOwk48hLANfuX6GXrikmEBNZVr2TIX5ONJt5tqCnpZyLz6xGiPDgTfFNKbSfb21g=="
|
|
41
41
|
},
|
|
42
42
|
"Microsoft.Net.Native.Compiler": {
|
|
43
43
|
"type": "Transitive",
|
|
44
|
-
"resolved": "2.2.
|
|
45
|
-
"contentHash": "
|
|
44
|
+
"resolved": "2.2.12-rel-31116-00",
|
|
45
|
+
"contentHash": "DuANSYEBO7qcIeqzI1mShJMweuQVBycbCRUW6mIb1QxorSiWLSWEJZNv/X7TdW3dcjfZdZFVsEWDCnJUolIPrQ==",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.
|
|
48
|
-
"runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.
|
|
49
|
-
"runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.
|
|
50
|
-
"runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.
|
|
47
|
+
"runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
48
|
+
"runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
49
|
+
"runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
50
|
+
"runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
54
54
|
"type": "Transitive",
|
|
55
|
-
"resolved": "2.2.
|
|
56
|
-
"contentHash": "
|
|
55
|
+
"resolved": "2.2.14",
|
|
56
|
+
"contentHash": "THMsLyB29wqd9ZI9c05hoMb788QQ5ClsXwLjpt7omTk/OvtUERWgwD6q85s5aSMdze50uhPZDRF/+uju8Lqhgw==",
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
59
|
-
"runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
60
|
-
"runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
58
|
+
"runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
59
|
+
"runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
60
|
+
"runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"Microsoft.NETCore.Platforms": {
|
|
@@ -93,75 +93,75 @@
|
|
|
93
93
|
},
|
|
94
94
|
"runtime.win10-arm.Microsoft.Net.Native.Compiler": {
|
|
95
95
|
"type": "Transitive",
|
|
96
|
-
"resolved": "2.2.
|
|
97
|
-
"contentHash": "
|
|
96
|
+
"resolved": "2.2.12-rel-31116-00",
|
|
97
|
+
"contentHash": "JAieAWjpAsAKq2OLgJpKHafrk1gxHTq0nSie1sEKAYjnlBhVIx17ypAX1NLhjMJZ3TkqhktOGm/2r0qTXBAqWg==",
|
|
98
98
|
"dependencies": {
|
|
99
|
-
"runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.
|
|
99
|
+
"runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": {
|
|
103
103
|
"type": "Transitive",
|
|
104
|
-
"resolved": "2.2.
|
|
105
|
-
"contentHash": "
|
|
104
|
+
"resolved": "2.2.8-rel-31116-00",
|
|
105
|
+
"contentHash": "bdNrkqMK7TUyqJjMJj9sXFpTtJg5+cKmGTPERymWldQ7/OxzoA1VGV4nFFRS4ciycxIqoA9amP0sr5SdTaSjDg=="
|
|
106
106
|
},
|
|
107
107
|
"runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
108
108
|
"type": "Transitive",
|
|
109
|
-
"resolved": "2.2.
|
|
110
|
-
"contentHash": "
|
|
109
|
+
"resolved": "2.2.14",
|
|
110
|
+
"contentHash": "eEtdvL57LKF3/AKuSqk9bJeUaPm0rPMCs36halkQwyTsaykEwzaV634jxpsg9Oneru4DvFW1vlRISdiW2929jA=="
|
|
111
111
|
},
|
|
112
112
|
"runtime.win10-arm64.Microsoft.Net.Native.Compiler": {
|
|
113
113
|
"type": "Transitive",
|
|
114
|
-
"resolved": "2.2.
|
|
115
|
-
"contentHash": "
|
|
114
|
+
"resolved": "2.2.12-rel-31116-00",
|
|
115
|
+
"contentHash": "Rs9fywhVdnJTqegZnSXJ2v0w7oX3xyZ5P1+v9wNlm7mkSb+dEcxgXwrkqTJe9shmLUOOFz8Dm37LbtIPHNzR1A==",
|
|
116
116
|
"dependencies": {
|
|
117
|
-
"runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.
|
|
117
|
+
"runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": {
|
|
121
121
|
"type": "Transitive",
|
|
122
|
-
"resolved": "2.2.
|
|
123
|
-
"contentHash": "
|
|
122
|
+
"resolved": "2.2.8-rel-31116-00",
|
|
123
|
+
"contentHash": "mNZPhhxOKUQSgYuBDezHPYFMwP9LYDmVEEHl7bTVAPbfcnxPHdSv6WwJglYlwQRQh+3NSgYRW4WcTxpETkD0AA=="
|
|
124
124
|
},
|
|
125
125
|
"runtime.win10-x64.Microsoft.Net.Native.Compiler": {
|
|
126
126
|
"type": "Transitive",
|
|
127
|
-
"resolved": "2.2.
|
|
128
|
-
"contentHash": "
|
|
127
|
+
"resolved": "2.2.12-rel-31116-00",
|
|
128
|
+
"contentHash": "dAJj40m9Tm6AQ/P7iQxuEN8sVvj6v9TDyulcP7ayvp+FkpR8VyGZWJMSxaMEjr1qVeMRuMCv1JV5DLMCWZvisg==",
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.
|
|
130
|
+
"runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
133
|
"runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": {
|
|
134
134
|
"type": "Transitive",
|
|
135
|
-
"resolved": "2.2.
|
|
136
|
-
"contentHash": "
|
|
135
|
+
"resolved": "2.2.8-rel-31116-00",
|
|
136
|
+
"contentHash": "kXqhwE+XmgRn9Z1QWkGfIcDKg/pCLJcbRL5w8NWT6jliAx81sjHzquDut3ljPwOC856AUI2WMnBopu0Bf/m4BQ=="
|
|
137
137
|
},
|
|
138
138
|
"runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
139
139
|
"type": "Transitive",
|
|
140
|
-
"resolved": "2.2.
|
|
141
|
-
"contentHash": "
|
|
140
|
+
"resolved": "2.2.14",
|
|
141
|
+
"contentHash": "a/ONxs2DxZcBnlDo7LDtH4t6imrEuSbf9KxWWBUCP+yCquVFyqtWAt2Z4hiT++yOIz2OMZT9Hmv1VzrgecpQkQ=="
|
|
142
142
|
},
|
|
143
143
|
"runtime.win10-x86.Microsoft.Net.Native.Compiler": {
|
|
144
144
|
"type": "Transitive",
|
|
145
|
-
"resolved": "2.2.
|
|
146
|
-
"contentHash": "
|
|
145
|
+
"resolved": "2.2.12-rel-31116-00",
|
|
146
|
+
"contentHash": "9T8n/l5Ny4rOlL4yGs81wy4AzypMhUgrrtPBqlv46QbKWhHf44EpFKfI6JU+MkJbSh7mZYywBEfmivT0v6gnNA==",
|
|
147
147
|
"dependencies": {
|
|
148
|
-
"runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.
|
|
148
|
+
"runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
151
|
"runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": {
|
|
152
152
|
"type": "Transitive",
|
|
153
|
-
"resolved": "2.2.
|
|
154
|
-
"contentHash": "
|
|
153
|
+
"resolved": "2.2.8-rel-31116-00",
|
|
154
|
+
"contentHash": "5RGA27cl3z0lf9zsctLBjW2GQoGYeBrg8pesqWLQnb1Ch8q8IZ6pyOwWFUsnXGuYW59OyCfoQGzHFq5Q/73EiQ=="
|
|
155
155
|
},
|
|
156
156
|
"runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
157
157
|
"type": "Transitive",
|
|
158
|
-
"resolved": "2.2.
|
|
159
|
-
"contentHash": "
|
|
158
|
+
"resolved": "2.2.14",
|
|
159
|
+
"contentHash": "V/hZioMMAwoKZFmfq/SuMA/mfoNFu4+Aedwdld/tpL8ZheehFab0RlAR3pgsPgOWOU+GjyePNIgyUXM5J/Y3Ig=="
|
|
160
160
|
},
|
|
161
161
|
"common": {
|
|
162
162
|
"type": "Project",
|
|
163
163
|
"dependencies": {
|
|
164
|
-
"boost": "[1.
|
|
164
|
+
"boost": "[1.83.0, )"
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
167
|
"fmt": {
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"folly": {
|
|
171
171
|
"type": "Project",
|
|
172
172
|
"dependencies": {
|
|
173
|
-
"boost": "[1.
|
|
173
|
+
"boost": "[1.83.0, )",
|
|
174
174
|
"fmt": "[1.0.0, )"
|
|
175
175
|
}
|
|
176
176
|
},
|
|
@@ -179,33 +179,33 @@
|
|
|
179
179
|
"dependencies": {
|
|
180
180
|
"Common": "[1.0.0, )",
|
|
181
181
|
"Folly": "[1.0.0, )",
|
|
182
|
-
"Microsoft.JavaScript.Hermes": "[0.1.
|
|
182
|
+
"Microsoft.JavaScript.Hermes": "[0.1.23, )",
|
|
183
183
|
"Microsoft.SourceLink.GitHub": "[1.1.1, )",
|
|
184
184
|
"Microsoft.UI.Xaml": "[2.8.0, )",
|
|
185
185
|
"ReactCommon": "[1.0.0, )",
|
|
186
|
-
"boost": "[1.
|
|
186
|
+
"boost": "[1.83.0, )"
|
|
187
187
|
}
|
|
188
188
|
},
|
|
189
189
|
"reactcommon": {
|
|
190
190
|
"type": "Project",
|
|
191
191
|
"dependencies": {
|
|
192
192
|
"Folly": "[1.0.0, )",
|
|
193
|
-
"boost": "[1.
|
|
193
|
+
"boost": "[1.83.0, )"
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
196
|
},
|
|
197
197
|
"UAP,Version=v10.0.17763/win10-arm": {
|
|
198
198
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
199
199
|
"type": "Direct",
|
|
200
|
-
"requested": "[6.2.
|
|
201
|
-
"resolved": "6.2.
|
|
202
|
-
"contentHash": "
|
|
200
|
+
"requested": "[6.2.14, )",
|
|
201
|
+
"resolved": "6.2.14",
|
|
202
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
203
203
|
"dependencies": {
|
|
204
204
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
205
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
206
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
205
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
206
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
207
207
|
"NETStandard.Library": "2.0.3",
|
|
208
|
-
"runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.
|
|
208
|
+
"runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
|
|
209
209
|
}
|
|
210
210
|
},
|
|
211
211
|
"Microsoft.Web.WebView2": {
|
|
@@ -215,22 +215,22 @@
|
|
|
215
215
|
},
|
|
216
216
|
"runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
217
217
|
"type": "Transitive",
|
|
218
|
-
"resolved": "6.2.
|
|
219
|
-
"contentHash": "/
|
|
218
|
+
"resolved": "6.2.14",
|
|
219
|
+
"contentHash": "TKCMvB+6izAQSl7kWimKU2W9iN7gXSMc1Lah3dpY+/PuUjAfSNvfv2HW/mK3TdmjW631/4S9wWYmplLh6ao91w=="
|
|
220
220
|
}
|
|
221
221
|
},
|
|
222
222
|
"UAP,Version=v10.0.17763/win10-arm-aot": {
|
|
223
223
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
224
224
|
"type": "Direct",
|
|
225
|
-
"requested": "[6.2.
|
|
226
|
-
"resolved": "6.2.
|
|
227
|
-
"contentHash": "
|
|
225
|
+
"requested": "[6.2.14, )",
|
|
226
|
+
"resolved": "6.2.14",
|
|
227
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
228
228
|
"dependencies": {
|
|
229
229
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
230
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
231
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
230
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
231
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
232
232
|
"NETStandard.Library": "2.0.3",
|
|
233
|
-
"runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.
|
|
233
|
+
"runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
|
|
234
234
|
}
|
|
235
235
|
},
|
|
236
236
|
"Microsoft.Web.WebView2": {
|
|
@@ -240,22 +240,22 @@
|
|
|
240
240
|
},
|
|
241
241
|
"runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
242
242
|
"type": "Transitive",
|
|
243
|
-
"resolved": "6.2.
|
|
244
|
-
"contentHash": "
|
|
243
|
+
"resolved": "6.2.14",
|
|
244
|
+
"contentHash": "4/GjCV7KtJz7is13eUXxIj4AHn8WTqmQ1u6wx7J4piJYkwViMVz0sGvzwXDt5oSSTvVdsDpa/EQUUBtFyGnmbg=="
|
|
245
245
|
}
|
|
246
246
|
},
|
|
247
247
|
"UAP,Version=v10.0.17763/win10-arm64-aot": {
|
|
248
248
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
249
249
|
"type": "Direct",
|
|
250
|
-
"requested": "[6.2.
|
|
251
|
-
"resolved": "6.2.
|
|
252
|
-
"contentHash": "
|
|
250
|
+
"requested": "[6.2.14, )",
|
|
251
|
+
"resolved": "6.2.14",
|
|
252
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
253
253
|
"dependencies": {
|
|
254
254
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
255
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
256
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
255
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
256
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
257
257
|
"NETStandard.Library": "2.0.3",
|
|
258
|
-
"runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.
|
|
258
|
+
"runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
|
|
259
259
|
}
|
|
260
260
|
},
|
|
261
261
|
"Microsoft.Web.WebView2": {
|
|
@@ -265,22 +265,22 @@
|
|
|
265
265
|
},
|
|
266
266
|
"runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
267
267
|
"type": "Transitive",
|
|
268
|
-
"resolved": "6.2.
|
|
269
|
-
"contentHash": "
|
|
268
|
+
"resolved": "6.2.14",
|
|
269
|
+
"contentHash": "8QVHVgSh8G9BgNUPaMllx5f8iEM45a52eCooJAQH1Xq+MfnvVXcmpOVmMRLxwY2dRU77ZoiGRCyeAKwqFcnEYQ=="
|
|
270
270
|
}
|
|
271
271
|
},
|
|
272
272
|
"UAP,Version=v10.0.17763/win10-x64": {
|
|
273
273
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
274
274
|
"type": "Direct",
|
|
275
|
-
"requested": "[6.2.
|
|
276
|
-
"resolved": "6.2.
|
|
277
|
-
"contentHash": "
|
|
275
|
+
"requested": "[6.2.14, )",
|
|
276
|
+
"resolved": "6.2.14",
|
|
277
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
278
278
|
"dependencies": {
|
|
279
279
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
280
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
281
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
280
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
281
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
282
282
|
"NETStandard.Library": "2.0.3",
|
|
283
|
-
"runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.
|
|
283
|
+
"runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
|
|
284
284
|
}
|
|
285
285
|
},
|
|
286
286
|
"Microsoft.Web.WebView2": {
|
|
@@ -290,22 +290,22 @@
|
|
|
290
290
|
},
|
|
291
291
|
"runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
292
292
|
"type": "Transitive",
|
|
293
|
-
"resolved": "6.2.
|
|
294
|
-
"contentHash": "
|
|
293
|
+
"resolved": "6.2.14",
|
|
294
|
+
"contentHash": "SPmQotZQ5ty+UkHMm76k/0DJpZ663qwXvLjVw/LrNmaIQHa+g+6TjKNAyR0ondKnwqu5oT79RJ2Tk8A0JQqBPQ=="
|
|
295
295
|
}
|
|
296
296
|
},
|
|
297
297
|
"UAP,Version=v10.0.17763/win10-x64-aot": {
|
|
298
298
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
299
299
|
"type": "Direct",
|
|
300
|
-
"requested": "[6.2.
|
|
301
|
-
"resolved": "6.2.
|
|
302
|
-
"contentHash": "
|
|
300
|
+
"requested": "[6.2.14, )",
|
|
301
|
+
"resolved": "6.2.14",
|
|
302
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
303
303
|
"dependencies": {
|
|
304
304
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
305
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
306
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
305
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
306
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
307
307
|
"NETStandard.Library": "2.0.3",
|
|
308
|
-
"runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.
|
|
308
|
+
"runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
|
|
309
309
|
}
|
|
310
310
|
},
|
|
311
311
|
"Microsoft.Web.WebView2": {
|
|
@@ -315,22 +315,22 @@
|
|
|
315
315
|
},
|
|
316
316
|
"runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
317
317
|
"type": "Transitive",
|
|
318
|
-
"resolved": "6.2.
|
|
319
|
-
"contentHash": "
|
|
318
|
+
"resolved": "6.2.14",
|
|
319
|
+
"contentHash": "2SPw1ay04TYxrnMs2hxP86j3daB59cnQ8aNPXUcKyon+RA1MN99mWg8V93WDxD82ZDR+citKcM3dxS4oEtDI4g=="
|
|
320
320
|
}
|
|
321
321
|
},
|
|
322
322
|
"UAP,Version=v10.0.17763/win10-x86": {
|
|
323
323
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
324
324
|
"type": "Direct",
|
|
325
|
-
"requested": "[6.2.
|
|
326
|
-
"resolved": "6.2.
|
|
327
|
-
"contentHash": "
|
|
325
|
+
"requested": "[6.2.14, )",
|
|
326
|
+
"resolved": "6.2.14",
|
|
327
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
328
328
|
"dependencies": {
|
|
329
329
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
330
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
331
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
330
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
331
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
332
332
|
"NETStandard.Library": "2.0.3",
|
|
333
|
-
"runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.
|
|
333
|
+
"runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
|
|
334
334
|
}
|
|
335
335
|
},
|
|
336
336
|
"Microsoft.Web.WebView2": {
|
|
@@ -340,22 +340,22 @@
|
|
|
340
340
|
},
|
|
341
341
|
"runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
342
342
|
"type": "Transitive",
|
|
343
|
-
"resolved": "6.2.
|
|
344
|
-
"contentHash": "
|
|
343
|
+
"resolved": "6.2.14",
|
|
344
|
+
"contentHash": "twbdvWFcy0wRd/jiZWeiS6Edui76XwmRLHXLJ3uFpBsimu7XOTLJBMycG11MxdcAjFMa3LnPUkTgiI63wM1b+w=="
|
|
345
345
|
}
|
|
346
346
|
},
|
|
347
347
|
"UAP,Version=v10.0.17763/win10-x86-aot": {
|
|
348
348
|
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
349
349
|
"type": "Direct",
|
|
350
|
-
"requested": "[6.2.
|
|
351
|
-
"resolved": "6.2.
|
|
352
|
-
"contentHash": "
|
|
350
|
+
"requested": "[6.2.14, )",
|
|
351
|
+
"resolved": "6.2.14",
|
|
352
|
+
"contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
|
|
353
353
|
"dependencies": {
|
|
354
354
|
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
355
|
-
"Microsoft.Net.Native.Compiler": "2.2.
|
|
356
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.
|
|
355
|
+
"Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
|
|
356
|
+
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
|
|
357
357
|
"NETStandard.Library": "2.0.3",
|
|
358
|
-
"runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.
|
|
358
|
+
"runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
|
|
359
359
|
}
|
|
360
360
|
},
|
|
361
361
|
"Microsoft.Web.WebView2": {
|
|
@@ -365,8 +365,8 @@
|
|
|
365
365
|
},
|
|
366
366
|
"runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
367
367
|
"type": "Transitive",
|
|
368
|
-
"resolved": "6.2.
|
|
369
|
-
"contentHash": "/
|
|
368
|
+
"resolved": "6.2.14",
|
|
369
|
+
"contentHash": "3nklK7zt8pQ4/okXv4jA/HlUx/xmnyS/YRKJh19BzXKKhYk/EnRT1zoNcvQDJjhyUZXquffbcxHyBbjd2V2GNQ=="
|
|
370
370
|
}
|
|
371
371
|
}
|
|
372
372
|
}
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
<DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.10-rel-29722-00\build\Microsoft.Net.Native.Compiler.props')">2.2.10-rel-29722-00</DotNetNativeVersion>
|
|
21
21
|
<DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.11-rel-30601-02\build\Microsoft.Net.Native.Compiler.props')">2.2.11-rel-30601-02</DotNetNativeVersion>
|
|
22
22
|
<DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.12-rel-31116-00\build\Microsoft.Net.Native.Compiler.props')">2.2.12-rel-31116-00</DotNetNativeVersion>
|
|
23
|
+
<DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.12-rel-33220-00\build\Microsoft.Net.Native.Compiler.props')">2.2.12-rel-33220-00</DotNetNativeVersion>
|
|
23
24
|
|
|
24
25
|
<DotNetNativeRuntimeVersion>DOTNET_NATIVE_RUNTIME_VERSION_NOT_SET</DotNetNativeRuntimeVersion>
|
|
25
26
|
<DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.7-rel-27913-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.7-rel-27913-00</DotNetNativeRuntimeVersion>
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
<DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-29722-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-29722-00</DotNetNativeRuntimeVersion>
|
|
29
30
|
<DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-30601-02\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-30601-02</DotNetNativeRuntimeVersion>
|
|
30
31
|
<DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-31116-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-31116-00</DotNetNativeRuntimeVersion>
|
|
32
|
+
<DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-33220-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-33220-00</DotNetNativeRuntimeVersion>
|
|
31
33
|
|
|
32
34
|
<!-- The name 'DotNetNativeVersion' is critical for restoring the right .NET framework libraries -->
|
|
33
35
|
<UWPCoreRuntimeSdkVersion>UWP_CORE_RUNTIME_SDK_VERSION_NOT_SET</UWPCoreRuntimeSdkVersion>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
|
|
13
13
|
<PropertyGroup Label="NetCoreUniversalWindowsPlatform">
|
|
14
|
-
<NETCoreUWPVersion Condition="'$(NETCoreUWPVersion)' == '' Or $([MSBuild]::VersionLessThan('$(NETCoreUWPVersion)', '6.2.
|
|
14
|
+
<NETCoreUWPVersion Condition="'$(NETCoreUWPVersion)' == '' Or $([MSBuild]::VersionLessThan('$(NETCoreUWPVersion)', '6.2.14'))">6.2.14</NETCoreUWPVersion>
|
|
15
15
|
</PropertyGroup>
|
|
16
16
|
|
|
17
17
|
</Project>
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.74.
|
|
13
|
+
<ReactNativeWindowsVersion>0.74.25</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>74</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>25</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>15286b6547fe52ab5ae6d98e442a52ca1627d0e9</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|