react-native-windows 0.67.9 → 0.67.12
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/CHANGELOG.json +168 -0
- package/CHANGELOG.md +67 -6
- package/Chakra/ChakraHelpers.cpp +0 -1
- package/Directory.Build.props +4 -0
- package/Folly/Folly.vcxproj +4 -5
- package/Libraries/Network/RCTNetworkingWinShared.js +7 -0
- package/Microsoft.ReactNative/Base/CoreNativeModules.cpp +3 -1
- package/Microsoft.ReactNative/IReactContext.cpp +17 -0
- package/Microsoft.ReactNative/IReactContext.h +2 -0
- package/Microsoft.ReactNative/IReactContext.idl +27 -0
- package/Microsoft.ReactNative/Modules/CreateModules.cpp +3 -3
- package/Microsoft.ReactNative/packages.config +1 -1
- package/Microsoft.ReactNative.Cxx/JSI/JsiApiContext.cpp +17 -5
- package/Microsoft.ReactNative.Cxx/JSI/JsiApiContext.h +36 -7
- package/Microsoft.ReactNative.Cxx/JSI/NodeApiJsiRuntime.cpp +17 -3
- package/Microsoft.ReactNative.Cxx/JSI/NodeApiJsiRuntime.h +48 -0
- package/Microsoft.ReactNative.Cxx/JSValueWriter.h +1 -1
- package/Microsoft.ReactNative.Cxx/ReactPromise.cpp +21 -1
- package/Microsoft.ReactNative.Cxx/ReactPromise.h +27 -0
- package/Microsoft.ReactNative.Cxx/TurboModuleProvider.h +1 -1
- package/PropertySheets/Generated/PackageVersion.g.props +2 -2
- package/PropertySheets/JSEngine.props +1 -1
- package/ReactCommon/ReactCommon.vcxproj +0 -4
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/CompactValue.h +204 -0
- package/Scripts/OfficeReact.Win32.nuspec +1 -1
- package/Shared/BaseScriptStoreImpl.cpp +1 -1
- package/Shared/CppRuntimeOptions.h +50 -0
- package/Shared/CreateModules.h +17 -2
- package/Shared/InspectorPackagerConnection.cpp +7 -5
- package/Shared/InspectorPackagerConnection.h +2 -2
- package/Shared/JSI/ChakraApi.cpp +0 -1
- package/Shared/JSI/ChakraRuntime.cpp +0 -1
- package/Shared/JSI/NapiJsiV8RuntimeHolder.cpp +72 -2
- package/Shared/JSI/NapiJsiV8RuntimeHolder.h +2 -0
- package/Shared/Modules/BlobModule.cpp +376 -0
- package/Shared/Modules/BlobModule.h +153 -0
- package/Shared/Modules/CxxModuleUtilities.cpp +19 -0
- package/Shared/Modules/CxxModuleUtilities.h +23 -0
- package/Shared/Modules/FileReaderModule.cpp +156 -0
- package/Shared/Modules/FileReaderModule.h +54 -0
- package/Shared/Modules/HttpModule.cpp +73 -70
- package/Shared/Modules/HttpModule.h +10 -3
- package/Shared/Modules/IBlobPersistor.h +30 -0
- package/Shared/Modules/IHttpModuleProxy.h +30 -0
- package/Shared/Modules/IRequestBodyHandler.h +52 -0
- package/Shared/Modules/IResponseHandler.h +27 -0
- package/Shared/Modules/IUriHandler.h +37 -0
- package/Shared/Modules/IWebSocketModuleContentHandler.h +26 -0
- package/Shared/Modules/IWebSocketModuleProxy.h +22 -0
- package/Shared/Modules/NetworkingModule.cpp +1 -1
- package/Shared/Modules/WebSocketModule.cpp +93 -23
- package/Shared/Modules/WebSocketModule.h +35 -6
- package/Shared/Networking/IHttpResource.h +101 -0
- package/Shared/{IWebSocketResource.h → Networking/IWebSocketResource.h} +2 -2
- package/Shared/Networking/OriginPolicy.h +15 -0
- package/Shared/Networking/OriginPolicyHttpFilter.cpp +747 -0
- package/Shared/Networking/OriginPolicyHttpFilter.h +112 -0
- package/Shared/Networking/WinRTHttpResource.cpp +465 -0
- package/Shared/{WinRTHttpResource.h → Networking/WinRTHttpResource.h} +35 -20
- package/Shared/Networking/WinRTTypes.h +33 -0
- package/Shared/{WinRTWebSocketResource.cpp → Networking/WinRTWebSocketResource.cpp} +2 -2
- package/Shared/{WinRTWebSocketResource.h → Networking/WinRTWebSocketResource.h} +3 -3
- package/Shared/OInstance.cpp +26 -6
- package/Shared/OInstance.h +8 -4
- package/Shared/RuntimeOptions.cpp +96 -15
- package/Shared/RuntimeOptions.h +32 -8
- package/Shared/Shared.vcxitems +24 -7
- package/Shared/Shared.vcxitems.filters +78 -21
- package/fmt/fmt.vcxproj +4 -5
- package/package.json +1 -1
- package/Shared/IHttpResource.h +0 -53
- package/Shared/WinRTHttpResource.cpp +0 -317
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// Copyright (c) Microsoft Corporation.
|
|
2
|
+
// Licensed under the MIT License.
|
|
3
|
+
|
|
4
|
+
#pragma once
|
|
5
|
+
|
|
6
|
+
#include "IHttpResource.h"
|
|
7
|
+
|
|
8
|
+
// Folly
|
|
9
|
+
#include <folly/dynamic.h>
|
|
10
|
+
|
|
11
|
+
// Windows API
|
|
12
|
+
#include <winrt/Windows.Web.Http.h>
|
|
13
|
+
|
|
14
|
+
// Standard Library
|
|
15
|
+
#include <mutex>
|
|
16
|
+
|
|
17
|
+
namespace Microsoft::React::Networking {
|
|
18
|
+
|
|
19
|
+
struct RequestArgs : public winrt::implements<RequestArgs, winrt::Windows::Foundation::IInspectable> {
|
|
20
|
+
int64_t RequestId;
|
|
21
|
+
IHttpResource::Headers Headers;
|
|
22
|
+
folly::dynamic Data;
|
|
23
|
+
bool IncrementalUpdates;
|
|
24
|
+
bool WithCredentials;
|
|
25
|
+
std::string ResponseType;
|
|
26
|
+
int64_t Timeout;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
typedef winrt::Windows::Foundation::
|
|
30
|
+
IAsyncOperationWithProgress<winrt::Windows::Web::Http::HttpResponseMessage, winrt::Windows::Web::Http::HttpProgress>
|
|
31
|
+
ResponseOperation;
|
|
32
|
+
|
|
33
|
+
} // namespace Microsoft::React::Networking
|
|
@@ -79,7 +79,7 @@ auto resume_in_queue(const Mso::DispatchQueue &queue) noexcept {
|
|
|
79
79
|
|
|
80
80
|
} // namespace
|
|
81
81
|
|
|
82
|
-
namespace Microsoft::React {
|
|
82
|
+
namespace Microsoft::React::Networking {
|
|
83
83
|
|
|
84
84
|
// private
|
|
85
85
|
WinRTWebSocketResource::WinRTWebSocketResource(
|
|
@@ -423,4 +423,4 @@ void WinRTWebSocketResource::SetOnError(function<void(Error &&)> &&handler) noex
|
|
|
423
423
|
|
|
424
424
|
#pragma endregion IWebSocketResource
|
|
425
425
|
|
|
426
|
-
} // namespace Microsoft::React
|
|
426
|
+
} // namespace Microsoft::React::Networking
|
|
@@ -3,18 +3,18 @@
|
|
|
3
3
|
|
|
4
4
|
#pragma once
|
|
5
5
|
|
|
6
|
-
#include <IWebSocketResource.h>
|
|
7
6
|
#include <dispatchQueue/dispatchQueue.h>
|
|
8
7
|
#include <eventWaitHandle/eventWaitHandle.h>
|
|
9
8
|
#include <winrt/Windows.Networking.Sockets.h>
|
|
10
9
|
#include <winrt/Windows.Storage.Streams.h>
|
|
10
|
+
#include "IWebSocketResource.h"
|
|
11
11
|
|
|
12
12
|
// Standard Library
|
|
13
13
|
#include <future>
|
|
14
14
|
#include <mutex>
|
|
15
15
|
#include <queue>
|
|
16
16
|
|
|
17
|
-
namespace Microsoft::React {
|
|
17
|
+
namespace Microsoft::React::Networking {
|
|
18
18
|
|
|
19
19
|
class WinRTWebSocketResource : public IWebSocketResource, public std::enable_shared_from_this<WinRTWebSocketResource> {
|
|
20
20
|
winrt::Windows::Networking::Sockets::IMessageWebSocket m_socket;
|
|
@@ -126,4 +126,4 @@ class WinRTWebSocketResource : public IWebSocketResource, public std::enable_sha
|
|
|
126
126
|
#pragma endregion IWebSocketResource
|
|
127
127
|
};
|
|
128
128
|
|
|
129
|
-
} // namespace Microsoft::React
|
|
129
|
+
} // namespace Microsoft::React::Networking
|
package/Shared/OInstance.cpp
CHANGED
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
#endif
|
|
38
38
|
|
|
39
39
|
#include <BatchingMessageQueueThread.h>
|
|
40
|
+
#include <CppRuntimeOptions.h>
|
|
40
41
|
#include <CreateModules.h>
|
|
41
42
|
#include <DevSettings.h>
|
|
42
43
|
#include <DevSupportManager.h>
|
|
43
44
|
#include <IReactRootView.h>
|
|
44
|
-
#include <RuntimeOptions.h>
|
|
45
45
|
#include <Shlwapi.h>
|
|
46
46
|
#include <WebSocketJSExecutorFactory.h>
|
|
47
47
|
#include <safeint.h>
|
|
@@ -147,14 +147,16 @@ using namespace facebook;
|
|
|
147
147
|
using namespace Microsoft::JSI;
|
|
148
148
|
|
|
149
149
|
using std::make_shared;
|
|
150
|
+
using winrt::Microsoft::ReactNative::ReactPropertyBagHelper;
|
|
150
151
|
|
|
151
152
|
namespace Microsoft::React {
|
|
152
153
|
|
|
153
|
-
/*extern*/ std::unique_ptr<facebook::xplat::module::CxxModule> CreateHttpModule(
|
|
154
|
+
/*extern*/ std::unique_ptr<facebook::xplat::module::CxxModule> CreateHttpModule(
|
|
155
|
+
winrt::Windows::Foundation::IInspectable const &inspectableProperties) noexcept {
|
|
154
156
|
if (GetRuntimeOptionBool("Http.UseMonolithicModule")) {
|
|
155
157
|
return std::make_unique<NetworkingModule>();
|
|
156
158
|
} else {
|
|
157
|
-
return std::make_unique<HttpModule>();
|
|
159
|
+
return std::make_unique<HttpModule>(inspectableProperties);
|
|
158
160
|
}
|
|
159
161
|
}
|
|
160
162
|
|
|
@@ -624,18 +626,21 @@ InstanceImpl::~InstanceImpl() {
|
|
|
624
626
|
std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules(
|
|
625
627
|
std::shared_ptr<MessageQueueThread> nativeQueue) {
|
|
626
628
|
std::vector<std::unique_ptr<NativeModule>> modules;
|
|
629
|
+
auto transitionalProps{ReactPropertyBagHelper::CreatePropertyBag()};
|
|
627
630
|
|
|
628
631
|
modules.push_back(std::make_unique<CxxNativeModule>(
|
|
629
632
|
m_innerInstance,
|
|
630
633
|
Microsoft::React::GetHttpModuleName(),
|
|
631
|
-
[nativeQueue]() -> std::unique_ptr<xplat::module::CxxModule> {
|
|
634
|
+
[nativeQueue, transitionalProps]() -> std::unique_ptr<xplat::module::CxxModule> {
|
|
635
|
+
return Microsoft::React::CreateHttpModule(transitionalProps);
|
|
636
|
+
},
|
|
632
637
|
nativeQueue));
|
|
633
638
|
|
|
634
639
|
modules.push_back(std::make_unique<CxxNativeModule>(
|
|
635
640
|
m_innerInstance,
|
|
636
641
|
Microsoft::React::GetWebSocketModuleName(),
|
|
637
|
-
[nativeQueue]() -> std::unique_ptr<xplat::module::CxxModule> {
|
|
638
|
-
return Microsoft::React::CreateWebSocketModule();
|
|
642
|
+
[nativeQueue, transitionalProps]() -> std::unique_ptr<xplat::module::CxxModule> {
|
|
643
|
+
return Microsoft::React::CreateWebSocketModule(transitionalProps);
|
|
639
644
|
},
|
|
640
645
|
nativeQueue));
|
|
641
646
|
|
|
@@ -697,6 +702,21 @@ std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules
|
|
|
697
702
|
[]() { return std::make_unique<StatusBarManagerModule>(); },
|
|
698
703
|
nativeQueue));
|
|
699
704
|
|
|
705
|
+
// #10036 - Blob module not supported in UWP. Need to define property bag lifetime and onwership.
|
|
706
|
+
if (Microsoft::React::GetRuntimeOptionBool("Blob.EnableModule")) {
|
|
707
|
+
modules.push_back(std::make_unique<CxxNativeModule>(
|
|
708
|
+
m_innerInstance,
|
|
709
|
+
Microsoft::React::GetBlobModuleName(),
|
|
710
|
+
[transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
|
|
711
|
+
nativeQueue));
|
|
712
|
+
|
|
713
|
+
modules.push_back(std::make_unique<CxxNativeModule>(
|
|
714
|
+
m_innerInstance,
|
|
715
|
+
Microsoft::React::GetFileReaderModuleName(),
|
|
716
|
+
[transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
|
|
717
|
+
nativeQueue));
|
|
718
|
+
}
|
|
719
|
+
|
|
700
720
|
return modules;
|
|
701
721
|
}
|
|
702
722
|
|
package/Shared/OInstance.h
CHANGED
|
@@ -5,14 +5,18 @@
|
|
|
5
5
|
|
|
6
6
|
#pragma once
|
|
7
7
|
|
|
8
|
+
#include <ReactPropertyBag.h>
|
|
9
|
+
#include <TurboModuleManager.h>
|
|
10
|
+
#include "InstanceManager.h"
|
|
11
|
+
|
|
12
|
+
// React Native
|
|
13
|
+
#include <cxxreact/Instance.h>
|
|
14
|
+
|
|
15
|
+
// Standard Libriary
|
|
8
16
|
#include <memory>
|
|
9
17
|
#include <string>
|
|
10
18
|
#include <vector>
|
|
11
19
|
|
|
12
|
-
#include <TurboModuleManager.h>
|
|
13
|
-
#include <cxxreact/Instance.h>
|
|
14
|
-
#include "InstanceManager.h"
|
|
15
|
-
|
|
16
20
|
namespace facebook {
|
|
17
21
|
namespace react {
|
|
18
22
|
|
|
@@ -1,45 +1,126 @@
|
|
|
1
|
+
// Copyright (c) Microsoft Corporation.
|
|
2
|
+
// Licensed under the MIT License.
|
|
3
|
+
|
|
4
|
+
#include <CppRuntimeOptions.h>
|
|
1
5
|
#include <RuntimeOptions.h>
|
|
2
6
|
|
|
7
|
+
// Standard Library
|
|
3
8
|
#include <mutex>
|
|
4
9
|
#include <unordered_map>
|
|
5
10
|
|
|
6
|
-
using std::lock_guard;
|
|
7
11
|
using std::mutex;
|
|
12
|
+
using std::scoped_lock;
|
|
8
13
|
using std::string;
|
|
9
14
|
|
|
10
15
|
namespace {
|
|
11
|
-
std::unordered_map<string, int32_t>
|
|
16
|
+
std::unordered_map<string, int32_t> g_runtimeOptionInts;
|
|
17
|
+
std::unordered_map<string, string> g_runtimeOptionStrings;
|
|
12
18
|
mutex g_runtimeOptionsMutex;
|
|
19
|
+
|
|
20
|
+
void __cdecl GetStringCallback(const char *buffer, size_t length, void *state) {
|
|
21
|
+
if (!buffer)
|
|
22
|
+
return;
|
|
23
|
+
|
|
24
|
+
*static_cast<char **>(state) = static_cast<char *>(malloc(length));
|
|
25
|
+
strncpy_s(*static_cast<char **>(state), length, buffer, length);
|
|
26
|
+
}
|
|
13
27
|
} // namespace
|
|
14
28
|
|
|
15
29
|
namespace Microsoft::React {
|
|
16
30
|
|
|
17
31
|
void __cdecl SetRuntimeOptionBool(string &&name, bool value) noexcept {
|
|
18
|
-
|
|
19
|
-
g_runtimeOptions.insert_or_assign(std::move(name), value ? 1 : 0);
|
|
32
|
+
MicrosoftReactSetRuntimeOptionBool(name.c_str(), value);
|
|
20
33
|
}
|
|
21
34
|
|
|
22
35
|
void __cdecl SetRuntimeOptionInt(string &&name, int32_t value) noexcept {
|
|
23
|
-
|
|
24
|
-
|
|
36
|
+
MicrosoftReactSetRuntimeOptionInt(name.c_str(), value);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
void __cdecl SetRuntimeOptionString(string &&name, string &&value) noexcept {
|
|
40
|
+
if (!value.empty())
|
|
41
|
+
MicrosoftReactSetRuntimeOptionString(std::move(name).c_str(), std::move(value).c_str());
|
|
25
42
|
}
|
|
26
43
|
|
|
27
44
|
const bool __cdecl GetRuntimeOptionBool(const string &name) noexcept {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
45
|
+
return MicrosoftReactGetRuntimeOptionBool(name.c_str());
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
const int32_t __cdecl GetRuntimeOptionInt(const string &name) noexcept {
|
|
49
|
+
return MicrosoftReactGetRuntimeOptionInt(name.c_str());
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const string __cdecl GetRuntimeOptionString(const string &name) noexcept {
|
|
53
|
+
char *payload{nullptr};
|
|
54
|
+
MicrosoftReactGetRuntimeOptionString(name.c_str(), GetStringCallback, &payload);
|
|
55
|
+
|
|
56
|
+
if (!payload)
|
|
57
|
+
return string{};
|
|
58
|
+
|
|
59
|
+
return string{std::move(payload)};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
} // namespace Microsoft::React
|
|
63
|
+
|
|
64
|
+
void __cdecl MicrosoftReactSetRuntimeOptionBool(const char *name, bool value) noexcept {
|
|
65
|
+
if (!name)
|
|
66
|
+
return;
|
|
67
|
+
|
|
68
|
+
scoped_lock lock{g_runtimeOptionsMutex};
|
|
69
|
+
if (value)
|
|
70
|
+
g_runtimeOptionInts.insert_or_assign(name, 1);
|
|
71
|
+
else
|
|
72
|
+
g_runtimeOptionInts.erase(name);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
void __cdecl MicrosoftReactSetRuntimeOptionInt(const char *name, int32_t value) noexcept {
|
|
76
|
+
if (!name)
|
|
77
|
+
return;
|
|
78
|
+
|
|
79
|
+
scoped_lock lock{g_runtimeOptionsMutex};
|
|
80
|
+
if (value)
|
|
81
|
+
g_runtimeOptionInts.insert_or_assign(name, value);
|
|
82
|
+
else
|
|
83
|
+
g_runtimeOptionInts.erase(name);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
void __cdecl MicrosoftReactSetRuntimeOptionString(const char *name, const char *value) noexcept {
|
|
87
|
+
if (!name)
|
|
88
|
+
return;
|
|
89
|
+
|
|
90
|
+
scoped_lock lock{g_runtimeOptionsMutex};
|
|
91
|
+
if (value)
|
|
92
|
+
g_runtimeOptionStrings.insert_or_assign(name, value);
|
|
93
|
+
else
|
|
94
|
+
g_runtimeOptionStrings.erase(name);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
bool __cdecl MicrosoftReactGetRuntimeOptionBool(const char *name) noexcept {
|
|
98
|
+
scoped_lock lock{g_runtimeOptionsMutex};
|
|
99
|
+
auto itr = g_runtimeOptionInts.find(name);
|
|
100
|
+
if (itr != g_runtimeOptionInts.end())
|
|
101
|
+
return itr->second != 0;
|
|
32
102
|
|
|
33
103
|
return false;
|
|
34
104
|
}
|
|
35
105
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
auto itr =
|
|
39
|
-
if (itr !=
|
|
106
|
+
int32_t __cdecl MicrosoftReactGetRuntimeOptionInt(const char *name) noexcept {
|
|
107
|
+
scoped_lock lock{g_runtimeOptionsMutex};
|
|
108
|
+
auto itr = g_runtimeOptionInts.find(name);
|
|
109
|
+
if (itr != g_runtimeOptionInts.end())
|
|
40
110
|
return itr->second;
|
|
41
111
|
|
|
42
112
|
return 0;
|
|
43
113
|
}
|
|
44
114
|
|
|
45
|
-
|
|
115
|
+
void __cdecl MicrosoftReactGetRuntimeOptionString(
|
|
116
|
+
const char *name,
|
|
117
|
+
MicrosoftReactGetStringCallback callBack,
|
|
118
|
+
void *state) {
|
|
119
|
+
scoped_lock lock{g_runtimeOptionsMutex};
|
|
120
|
+
auto itr = g_runtimeOptionStrings.find(name);
|
|
121
|
+
if (itr != g_runtimeOptionStrings.cend()) {
|
|
122
|
+
callBack(itr->second.c_str(), itr->second.size() * sizeof(char) + 1 /*NULL termination*/, state);
|
|
123
|
+
} else {
|
|
124
|
+
callBack(nullptr, 0, state);
|
|
125
|
+
}
|
|
126
|
+
}
|
package/Shared/RuntimeOptions.h
CHANGED
|
@@ -3,34 +3,58 @@
|
|
|
3
3
|
|
|
4
4
|
#pragma once
|
|
5
5
|
|
|
6
|
-
#
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
#ifdef __cplusplus
|
|
7
|
+
extern "C" {
|
|
8
|
+
#endif
|
|
9
9
|
|
|
10
10
|
/// <summary>
|
|
11
11
|
/// Sets a global boolean value identified by an arbitrary string.
|
|
12
12
|
/// </summary>
|
|
13
13
|
/// <param name="name">Global key</param>
|
|
14
|
-
void __cdecl
|
|
14
|
+
void __cdecl MicrosoftReactSetRuntimeOptionBool(const char *name, bool value) noexcept;
|
|
15
15
|
|
|
16
16
|
/// <summary>
|
|
17
17
|
/// Sets a global signed integer value identified by an arbitrary string.
|
|
18
18
|
/// </summary>
|
|
19
19
|
/// <param name="name">Global boolean key</param>
|
|
20
|
-
void __cdecl
|
|
20
|
+
void __cdecl MicrosoftReactSetRuntimeOptionInt(const char *name, int32_t value) noexcept;
|
|
21
|
+
|
|
22
|
+
/// <summary>
|
|
23
|
+
/// Sets a global signed integer value identified by an arbitrary string.
|
|
24
|
+
/// </summary>
|
|
25
|
+
/// <param name="name">Global string key</param>
|
|
26
|
+
void __cdecl MicrosoftReactSetRuntimeOptionString(const char *name, const char *value) noexcept;
|
|
21
27
|
|
|
22
28
|
/// <summary>
|
|
23
29
|
/// Retrieves a global boolean value for the given key.
|
|
24
30
|
/// </summary>
|
|
25
31
|
/// <param name="name">Global boolean key</param>
|
|
26
32
|
/// <returns>Value stored for the given key, or false if the entry doesn't exist (default)</returns>
|
|
27
|
-
|
|
33
|
+
bool __cdecl MicrosoftReactGetRuntimeOptionBool(const char *name) noexcept;
|
|
28
34
|
|
|
29
35
|
/// <summary>
|
|
30
36
|
/// Retrieves a global boolean value for the given key.
|
|
31
37
|
/// </summary>
|
|
32
38
|
/// <param name="name">Global key</param>
|
|
33
39
|
/// <returns>Value stored for the given key, or 0 if the entry doesn't exist (default)</returns>
|
|
34
|
-
|
|
40
|
+
int32_t __cdecl MicrosoftReactGetRuntimeOptionInt(const char *name) noexcept;
|
|
35
41
|
|
|
36
|
-
|
|
42
|
+
/// <param name="buffer">String contents. nullptr if none found</param>
|
|
43
|
+
/// <param name="length">String length. 0 if none found</param>
|
|
44
|
+
/// <param name="state">Pointer used to pass or retrieve arbitrary data</param>
|
|
45
|
+
typedef void(__cdecl *MicrosoftReactGetStringCallback)(const char *buffer, size_t length, void *state);
|
|
46
|
+
|
|
47
|
+
/// <summary>
|
|
48
|
+
/// Retrieves a global string value for the given key.
|
|
49
|
+
/// </summary>
|
|
50
|
+
/// <param name="name">Global key</param>
|
|
51
|
+
/// <param name="callBack">Handler used to access the obtained string</param>
|
|
52
|
+
/// <param name="state">Arbitrary data to pass on to or retrieve from callBack</param>
|
|
53
|
+
void __cdecl MicrosoftReactGetRuntimeOptionString(
|
|
54
|
+
const char *name,
|
|
55
|
+
MicrosoftReactGetStringCallback callBack,
|
|
56
|
+
void *state);
|
|
57
|
+
|
|
58
|
+
#ifdef __cplusplus
|
|
59
|
+
}
|
|
60
|
+
#endif
|
package/Shared/Shared.vcxitems
CHANGED
|
@@ -45,7 +45,10 @@
|
|
|
45
45
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\AsyncStorageModuleWin32.cpp">
|
|
46
46
|
<ExcludedFromBuild Condition="'$(ApplicationType)' == ''">true</ExcludedFromBuild>
|
|
47
47
|
</ClCompile>
|
|
48
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\BlobModule.cpp" />
|
|
49
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\CxxModuleUtilities.cpp" />
|
|
48
50
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\ExceptionsManagerModule.cpp" />
|
|
51
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\FileReaderModule.cpp" />
|
|
49
52
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\HttpModule.cpp" />
|
|
50
53
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\I18nModule.cpp" />
|
|
51
54
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\NetworkingModule.cpp" />
|
|
@@ -53,6 +56,9 @@
|
|
|
53
56
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\SourceCodeModule.cpp" />
|
|
54
57
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\StatusBarManagerModule.cpp" />
|
|
55
58
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\WebSocketModule.cpp" />
|
|
59
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Networking\OriginPolicyHttpFilter.cpp" />
|
|
60
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Networking\WinRTHttpResource.cpp" />
|
|
61
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Networking\WinRTWebSocketResource.cpp" />
|
|
56
62
|
<ClCompile Include="$(MSBuildThisFileDirectory)OInstance.cpp" />
|
|
57
63
|
<ClCompile Include="$(MSBuildThisFileDirectory)PackagerConnection.cpp" />
|
|
58
64
|
<ClCompile Include="$(MSBuildThisFileDirectory)RuntimeOptions.cpp" />
|
|
@@ -66,8 +72,6 @@
|
|
|
66
72
|
<ClCompile Include="$(MSBuildThisFileDirectory)V8JSIRuntimeHolder.cpp">
|
|
67
73
|
<ExcludedFromBuild Condition="'$(UseV8)' != 'true'">true</ExcludedFromBuild>
|
|
68
74
|
</ClCompile>
|
|
69
|
-
<ClCompile Include="$(MSBuildThisFileDirectory)WinRTHttpResource.cpp" />
|
|
70
|
-
<ClCompile Include="$(MSBuildThisFileDirectory)WinRTWebSocketResource.cpp" />
|
|
71
75
|
</ItemGroup>
|
|
72
76
|
<ItemGroup>
|
|
73
77
|
<ClInclude Include="$(MSBuildThisFileDirectory)..\include\Shared\cdebug.h" />
|
|
@@ -76,6 +80,7 @@
|
|
|
76
80
|
<ClInclude Include="$(MSBuildThisFileDirectory)AsyncStorage\AsyncStorageManager.h" />
|
|
77
81
|
<ClInclude Include="$(MSBuildThisFileDirectory)AsyncStorage\FollyDynamicConverter.h" />
|
|
78
82
|
<ClInclude Include="$(MSBuildThisFileDirectory)AsyncStorage\KeyValueStorage.h" />
|
|
83
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)CppRuntimeOptions.h" />
|
|
79
84
|
<ClInclude Include="$(MSBuildThisFileDirectory)HermesSamplingProfiler.h" />
|
|
80
85
|
<ClInclude Include="$(MSBuildThisFileDirectory)HermesShim.h" />
|
|
81
86
|
<ClInclude Include="$(MSBuildThisFileDirectory)JSI\ByteArrayBuffer.h" />
|
|
@@ -86,8 +91,25 @@
|
|
|
86
91
|
<ClInclude Include="$(MSBuildThisFileDirectory)JSI\NapiJsiV8RuntimeHolder.h" />
|
|
87
92
|
<ClInclude Include="$(MSBuildThisFileDirectory)JSI\RuntimeHolder.h" />
|
|
88
93
|
<ClInclude Include="$(MSBuildThisFileDirectory)JSI\ScriptStore.h" />
|
|
94
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\BlobModule.h" />
|
|
95
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\CxxModuleUtilities.h" />
|
|
96
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\FileReaderModule.h" />
|
|
97
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IBlobPersistor.h" />
|
|
98
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IHttpModuleProxy.h" />
|
|
99
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IRequestBodyHandler.h" />
|
|
100
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IResponseHandler.h" />
|
|
101
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IUriHandler.h" />
|
|
102
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IWebSocketModuleContentHandler.h" />
|
|
103
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IWebSocketModuleProxy.h" />
|
|
89
104
|
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\HttpModule.h" />
|
|
90
105
|
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\NetworkingModule.h" />
|
|
106
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\IHttpResource.h" />
|
|
107
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\IWebSocketResource.h" />
|
|
108
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\OriginPolicy.h" />
|
|
109
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\OriginPolicyHttpFilter.h" />
|
|
110
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\WinRTHttpResource.h" />
|
|
111
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\WinRTTypes.h" />
|
|
112
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\WinRTWebSocketResource.h" />
|
|
91
113
|
<ClInclude Include="$(MSBuildThisFileDirectory)RuntimeOptions.h" />
|
|
92
114
|
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\AsyncStorageModuleWin32.h" />
|
|
93
115
|
<ClInclude Include="$(MSBuildThisFileDirectory)AsyncStorage\StorageFileIO.h" />
|
|
@@ -102,12 +124,9 @@
|
|
|
102
124
|
<ClInclude Include="$(MSBuildThisFileDirectory)HermesRuntimeHolder.h" />
|
|
103
125
|
<ClInclude Include="$(MSBuildThisFileDirectory)InspectorPackagerConnection.h" />
|
|
104
126
|
<ClInclude Include="$(MSBuildThisFileDirectory)IDevSupportManager.h" />
|
|
105
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)IHttpResource.h" />
|
|
106
127
|
<ClInclude Include="$(MSBuildThisFileDirectory)InstanceManager.h" />
|
|
107
128
|
<ClInclude Include="$(MSBuildThisFileDirectory)IReactRootView.h" />
|
|
108
129
|
<ClInclude Include="$(MSBuildThisFileDirectory)IRedBoxHandler.h" />
|
|
109
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)IUIManager.h" />
|
|
110
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)IWebSocketResource.h" />
|
|
111
130
|
<ClInclude Include="$(MSBuildThisFileDirectory)JSBigAbiString.h" />
|
|
112
131
|
<ClInclude Include="$(MSBuildThisFileDirectory)LayoutAnimation.h" />
|
|
113
132
|
<ClInclude Include="$(MSBuildThisFileDirectory)Logging.h" />
|
|
@@ -137,8 +156,6 @@
|
|
|
137
156
|
<ClInclude Include="$(MSBuildThisFileDirectory)Utils\WinRTConversions.h" />
|
|
138
157
|
<ClInclude Include="$(MSBuildThisFileDirectory)V8JSIRuntimeHolder.h" />
|
|
139
158
|
<ClInclude Include="$(MSBuildThisFileDirectory)WebSocketJSExecutorFactory.h" />
|
|
140
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)WinRTHttpResource.h" />
|
|
141
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)WinRTWebSocketResource.h" />
|
|
142
159
|
</ItemGroup>
|
|
143
160
|
<ItemGroup>
|
|
144
161
|
<None Include="$(MSBuildThisFileDirectory)tracing\rnw.wprp" />
|
|
@@ -64,9 +64,6 @@
|
|
|
64
64
|
<ClCompile Include="$(MSBuildThisFileDirectory)V8JSIRuntimeHolder.cpp">
|
|
65
65
|
<Filter>Source Files</Filter>
|
|
66
66
|
</ClCompile>
|
|
67
|
-
<ClCompile Include="$(MSBuildThisFileDirectory)WinRTWebSocketResource.cpp">
|
|
68
|
-
<Filter>Source Files</Filter>
|
|
69
|
-
</ClCompile>
|
|
70
67
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\AsyncStorageModuleWin32.cpp">
|
|
71
68
|
<Filter>Source Files\Modules</Filter>
|
|
72
69
|
</ClCompile>
|
|
@@ -133,15 +130,30 @@
|
|
|
133
130
|
<ClCompile Include="$(MSBuildThisFileDirectory)HermesShim.cpp">
|
|
134
131
|
<Filter>Source Files</Filter>
|
|
135
132
|
</ClCompile>
|
|
136
|
-
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\
|
|
133
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\BlobModule.cpp">
|
|
137
134
|
<Filter>Source Files\Modules</Filter>
|
|
138
135
|
</ClCompile>
|
|
139
|
-
<ClCompile Include="$(MSBuildThisFileDirectory)
|
|
140
|
-
<Filter>Source Files</Filter>
|
|
136
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\HttpModule.cpp">
|
|
137
|
+
<Filter>Source Files\Modules</Filter>
|
|
141
138
|
</ClCompile>
|
|
142
139
|
<ClCompile Include="$(MSBuildThisFileDirectory)Utils\WinRTConversions.cpp">
|
|
143
140
|
<Filter>Source Files\Utils</Filter>
|
|
144
141
|
</ClCompile>
|
|
142
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Networking\OriginPolicyHttpFilter.cpp">
|
|
143
|
+
<Filter>Source Files\Networking</Filter>
|
|
144
|
+
</ClCompile>
|
|
145
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Networking\WinRTHttpResource.cpp">
|
|
146
|
+
<Filter>Source Files\Networking</Filter>
|
|
147
|
+
</ClCompile>
|
|
148
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Networking\WinRTWebSocketResource.cpp">
|
|
149
|
+
<Filter>Source Files\Networking</Filter>
|
|
150
|
+
</ClCompile>
|
|
151
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\CxxModuleUtilities.cpp">
|
|
152
|
+
<Filter>Source Files\Modules</Filter>
|
|
153
|
+
</ClCompile>
|
|
154
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\FileReaderModule.cpp">
|
|
155
|
+
<Filter>Source Files\Modules</Filter>
|
|
156
|
+
</ClCompile>
|
|
145
157
|
</ItemGroup>
|
|
146
158
|
<ItemGroup>
|
|
147
159
|
<Filter Include="Source Files">
|
|
@@ -195,6 +207,12 @@
|
|
|
195
207
|
<Filter Include="Source Files\Utils">
|
|
196
208
|
<UniqueIdentifier>{e78de2f1-a7e5-4a81-b69b-4a1f7fa91cde}</UniqueIdentifier>
|
|
197
209
|
</Filter>
|
|
210
|
+
<Filter Include="Header Files\Networking">
|
|
211
|
+
<UniqueIdentifier>{deefba53-d1ca-457d-9293-1993510e6d5a}</UniqueIdentifier>
|
|
212
|
+
</Filter>
|
|
213
|
+
<Filter Include="Source Files\Networking">
|
|
214
|
+
<UniqueIdentifier>{71196e04-aca0-48d6-99e4-f418c957b50f}</UniqueIdentifier>
|
|
215
|
+
</Filter>
|
|
198
216
|
</ItemGroup>
|
|
199
217
|
<ItemGroup>
|
|
200
218
|
<ClInclude Include="$(MSBuildThisFileDirectory)AsyncStorage\StorageFileIO.h">
|
|
@@ -266,9 +284,6 @@
|
|
|
266
284
|
<ClInclude Include="$(MSBuildThisFileDirectory)IDevSupportManager.h">
|
|
267
285
|
<Filter>Header Files</Filter>
|
|
268
286
|
</ClInclude>
|
|
269
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)IHttpResource.h">
|
|
270
|
-
<Filter>Header Files</Filter>
|
|
271
|
-
</ClInclude>
|
|
272
287
|
<ClInclude Include="$(MSBuildThisFileDirectory)InstanceManager.h">
|
|
273
288
|
<Filter>Header Files</Filter>
|
|
274
289
|
</ClInclude>
|
|
@@ -278,12 +293,6 @@
|
|
|
278
293
|
<ClInclude Include="$(MSBuildThisFileDirectory)IRedBoxHandler.h">
|
|
279
294
|
<Filter>Header Files</Filter>
|
|
280
295
|
</ClInclude>
|
|
281
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)IUIManager.h">
|
|
282
|
-
<Filter>Header Files</Filter>
|
|
283
|
-
</ClInclude>
|
|
284
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)IWebSocketResource.h">
|
|
285
|
-
<Filter>Header Files</Filter>
|
|
286
|
-
</ClInclude>
|
|
287
296
|
<ClInclude Include="$(MSBuildThisFileDirectory)JSBigAbiString.h">
|
|
288
297
|
<Filter>Header Files</Filter>
|
|
289
298
|
</ClInclude>
|
|
@@ -329,9 +338,6 @@
|
|
|
329
338
|
<ClInclude Include="$(MSBuildThisFileDirectory)WebSocketJSExecutorFactory.h">
|
|
330
339
|
<Filter>Header Files</Filter>
|
|
331
340
|
</ClInclude>
|
|
332
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)WinRTWebSocketResource.h">
|
|
333
|
-
<Filter>Header Files</Filter>
|
|
334
|
-
</ClInclude>
|
|
335
341
|
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\AsyncStorageModuleWin32.h">
|
|
336
342
|
<Filter>Header Files\Modules</Filter>
|
|
337
343
|
</ClInclude>
|
|
@@ -393,15 +399,66 @@
|
|
|
393
399
|
<ClInclude Include="$(MSBuildThisFileDirectory)HermesShim.h">
|
|
394
400
|
<Filter>Header Files</Filter>
|
|
395
401
|
</ClInclude>
|
|
396
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\
|
|
402
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IWebSocketModuleContentHandler.h">
|
|
397
403
|
<Filter>Header Files\Modules</Filter>
|
|
398
404
|
</ClInclude>
|
|
399
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)
|
|
400
|
-
<Filter>Header Files</Filter>
|
|
405
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\BlobModule.h">
|
|
406
|
+
<Filter>Header Files\Modules</Filter>
|
|
407
|
+
</ClInclude>
|
|
408
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IWebSocketModuleProxy.h">
|
|
409
|
+
<Filter>Header Files\Modules</Filter>
|
|
410
|
+
</ClInclude>
|
|
411
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\HttpModule.h">
|
|
412
|
+
<Filter>Header Files\Modules</Filter>
|
|
401
413
|
</ClInclude>
|
|
402
414
|
<ClInclude Include="$(MSBuildThisFileDirectory)Utils\WinRTConversions.h">
|
|
403
415
|
<Filter>Header Files\Utils</Filter>
|
|
404
416
|
</ClInclude>
|
|
417
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\OriginPolicyHttpFilter.h">
|
|
418
|
+
<Filter>Header Files\Networking</Filter>
|
|
419
|
+
</ClInclude>
|
|
420
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\OriginPolicy.h">
|
|
421
|
+
<Filter>Header Files\Networking</Filter>
|
|
422
|
+
</ClInclude>
|
|
423
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\IHttpResource.h">
|
|
424
|
+
<Filter>Header Files\Networking</Filter>
|
|
425
|
+
</ClInclude>
|
|
426
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\IWebSocketResource.h">
|
|
427
|
+
<Filter>Header Files\Networking</Filter>
|
|
428
|
+
</ClInclude>
|
|
429
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\WinRTHttpResource.h">
|
|
430
|
+
<Filter>Header Files\Networking</Filter>
|
|
431
|
+
</ClInclude>
|
|
432
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\WinRTWebSocketResource.h">
|
|
433
|
+
<Filter>Header Files\Networking</Filter>
|
|
434
|
+
</ClInclude>
|
|
435
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Networking\WinRTTypes.h">
|
|
436
|
+
<Filter>Header Files\Networking</Filter>
|
|
437
|
+
</ClInclude>
|
|
438
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)CppRuntimeOptions.h">
|
|
439
|
+
<Filter>Header Files</Filter>
|
|
440
|
+
</ClInclude>
|
|
441
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IHttpModuleProxy.h">
|
|
442
|
+
<Filter>Header Files\Modules</Filter>
|
|
443
|
+
</ClInclude>
|
|
444
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IUriHandler.h">
|
|
445
|
+
<Filter>Header Files\Modules</Filter>
|
|
446
|
+
</ClInclude>
|
|
447
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IRequestBodyHandler.h">
|
|
448
|
+
<Filter>Header Files\Modules</Filter>
|
|
449
|
+
</ClInclude>
|
|
450
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IResponseHandler.h">
|
|
451
|
+
<Filter>Header Files\Modules</Filter>
|
|
452
|
+
</ClInclude>
|
|
453
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\IBlobPersistor.h">
|
|
454
|
+
<Filter>Header Files\Modules</Filter>
|
|
455
|
+
</ClInclude>
|
|
456
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\CxxModuleUtilities.h">
|
|
457
|
+
<Filter>Header Files\Modules</Filter>
|
|
458
|
+
</ClInclude>
|
|
459
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)Modules\FileReaderModule.h">
|
|
460
|
+
<Filter>Header Files\Modules</Filter>
|
|
461
|
+
</ClInclude>
|
|
405
462
|
</ItemGroup>
|
|
406
463
|
<ItemGroup>
|
|
407
464
|
<None Include="$(MSBuildThisFileDirectory)tracing\rnw.wprp">
|
package/fmt/fmt.vcxproj
CHANGED
|
@@ -114,11 +114,10 @@
|
|
|
114
114
|
"Registrations": [
|
|
115
115
|
{
|
|
116
116
|
"Component": {
|
|
117
|
-
"Type": "
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"DownloadUrl": "https://github.com/fmtlib/fmt/archive/refs/tags/$(FmtVersion).zip"
|
|
117
|
+
"Type": "git",
|
|
118
|
+
"Git": {
|
|
119
|
+
"RepositoryUrl": "https://github.com/fmtlib/fmt",
|
|
120
|
+
"CommitHash": "$(FmtCommitHash)"
|
|
122
121
|
}
|
|
123
122
|
},
|
|
124
123
|
"DevelopmentDependency": false
|