react-native-windows 0.75.4 → 0.76.0-preview.2

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.
Files changed (318) hide show
  1. package/.flowconfig +6 -4
  2. package/Directory.Build.props +4 -0
  3. package/Directory.Build.targets +5 -0
  4. package/Libraries/Alert/Alert.js +3 -0
  5. package/Libraries/Alert/Alert.windows.js +3 -0
  6. package/Libraries/Animated/AnimatedEvent.js +1 -1
  7. package/Libraries/Animated/AnimatedImplementation.js +7 -7
  8. package/Libraries/Animated/NativeAnimatedAllowlist.js +111 -0
  9. package/Libraries/Animated/animations/Animation.js +11 -1
  10. package/Libraries/Animated/animations/DecayAnimation.js +1 -1
  11. package/Libraries/Animated/animations/SpringAnimation.js +1 -1
  12. package/Libraries/Animated/animations/TimingAnimation.js +2 -1
  13. package/Libraries/Animated/components/AnimatedScrollView.js +3 -2
  14. package/Libraries/Animated/createAnimatedComponent.js +10 -9
  15. package/Libraries/Animated/nodes/AnimatedColor.js +1 -1
  16. package/Libraries/Animated/nodes/AnimatedInterpolation.js +3 -2
  17. package/Libraries/Animated/nodes/AnimatedNode.js +42 -33
  18. package/Libraries/Animated/nodes/AnimatedObject.js +56 -50
  19. package/Libraries/Animated/nodes/AnimatedProps.js +77 -40
  20. package/Libraries/Animated/nodes/AnimatedStyle.js +103 -59
  21. package/Libraries/Animated/nodes/AnimatedTracking.js +1 -1
  22. package/Libraries/Animated/nodes/AnimatedTransform.js +102 -67
  23. package/Libraries/Animated/nodes/AnimatedValue.js +2 -1
  24. package/Libraries/Animated/nodes/AnimatedWithChildren.js +21 -22
  25. package/Libraries/Animated/useAnimatedProps.js +142 -7
  26. package/Libraries/BatchedBridge/NativeModules.js +2 -0
  27. package/Libraries/Blob/FileReader.js +1 -1
  28. package/Libraries/Blob/URL.js +2 -62
  29. package/Libraries/Blob/URLSearchParams.js +71 -0
  30. package/Libraries/Components/Button.windows.js +0 -1
  31. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +1 -1
  32. package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +17 -0
  33. package/Libraries/Components/Keyboard/KeyboardExt.js.map +1 -1
  34. package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +1 -1
  35. package/Libraries/Components/ScrollView/ScrollView.js +131 -169
  36. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +3 -0
  37. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.windows.js +3 -0
  38. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +1 -1
  39. package/Libraries/Components/StatusBar/StatusBar.js +3 -1
  40. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
  41. package/Libraries/Components/TextInput/TextInput.d.ts +32 -2
  42. package/Libraries/Components/TextInput/TextInput.js +230 -94
  43. package/Libraries/Components/TextInput/TextInput.windows.js +230 -105
  44. package/Libraries/Components/View/ReactNativeStyleAttributes.js +23 -1
  45. package/Libraries/Components/View/ReactNativeViewAttributes.js +2 -0
  46. package/Libraries/Components/View/ReactNativeViewAttributes.windows.js +2 -0
  47. package/Libraries/Components/View/View.windows.js +32 -30
  48. package/Libraries/Components/View/ViewAccessibility.d.ts +15 -0
  49. package/Libraries/Components/View/ViewNativeComponent.js +0 -1
  50. package/Libraries/Components/View/ViewPropTypes.js +14 -0
  51. package/Libraries/Components/View/ViewPropTypes.windows.js +14 -0
  52. package/Libraries/Core/ExceptionsManager.js +2 -0
  53. package/Libraries/Core/InitializeCore.js +3 -1
  54. package/Libraries/Core/ReactFiberErrorDialog.js +3 -0
  55. package/Libraries/Core/ReactNativeVersion.js +4 -4
  56. package/Libraries/Core/setUpDeveloperTools.js +5 -1
  57. package/Libraries/Core/setUpErrorHandling.js +7 -1
  58. package/Libraries/Core/setUpGlobals.js +1 -0
  59. package/Libraries/Core/setUpReactRefresh.js +0 -4
  60. package/Libraries/Image/AssetSourceResolver.js +28 -1
  61. package/Libraries/Image/AssetSourceResolver.windows.js +28 -1
  62. package/Libraries/Image/Image.android.js +9 -14
  63. package/Libraries/Image/Image.ios.js +11 -22
  64. package/Libraries/Image/Image.windows.js +11 -22
  65. package/Libraries/Image/ImageBackground.js +1 -8
  66. package/Libraries/Image/ImageUtils.js +9 -9
  67. package/Libraries/Image/ImageViewNativeComponent.js +1 -0
  68. package/Libraries/Inspector/Inspector.js +3 -2
  69. package/Libraries/Inspector/InspectorPanel.js +16 -10
  70. package/Libraries/Inspector/NetworkOverlay.js +1 -1
  71. package/Libraries/Interaction/TaskQueue.js +1 -0
  72. package/Libraries/Lists/FlatList.js +1 -1
  73. package/Libraries/Lists/SectionList.js +2 -2
  74. package/Libraries/Lists/SectionListModern.js +3 -3
  75. package/Libraries/LogBox/Data/LogBoxData.js +24 -3
  76. package/Libraries/LogBox/LogBoxNotificationContainer.js +3 -2
  77. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +9 -8
  78. package/Libraries/LogBox/UI/LogBoxInspectorHeader.windows.js +9 -8
  79. package/Libraries/Modal/Modal.js +0 -1
  80. package/Libraries/NativeComponent/BaseViewConfig.android.js +9 -1
  81. package/Libraries/NativeComponent/BaseViewConfig.ios.js +17 -1
  82. package/Libraries/NativeComponent/BaseViewConfig.windows.js +17 -1
  83. package/Libraries/NativeComponent/NativeComponentRegistry.js +22 -22
  84. package/Libraries/NativeComponent/StaticViewConfigValidator.js +0 -21
  85. package/Libraries/Network/XMLHttpRequest.js +4 -2
  86. package/Libraries/ReactNative/AppContainer-dev.js +1 -5
  87. package/Libraries/ReactNative/AppContainer-prod.js +1 -5
  88. package/Libraries/ReactNative/AppContainer.js +1 -2
  89. package/Libraries/ReactNative/AppRegistry.d.ts +0 -4
  90. package/Libraries/ReactNative/AppRegistry.js +1 -7
  91. package/Libraries/ReactNative/BridgelessUIManager.js +1 -0
  92. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +1 -1
  93. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +5 -5
  94. package/Libraries/ReactNative/RendererImplementation.js +26 -4
  95. package/Libraries/ReactNative/getNativeComponentAttributes.js +12 -0
  96. package/Libraries/ReactNative/renderApplication.js +1 -3
  97. package/Libraries/Renderer/shims/ReactNativeTypes.js +11 -4
  98. package/Libraries/StyleSheet/StyleSheet.js +1 -1
  99. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +152 -2
  100. package/Libraries/StyleSheet/StyleSheetTypes.js +60 -5
  101. package/Libraries/StyleSheet/processBackgroundImage.js +384 -0
  102. package/Libraries/StyleSheet/processBoxShadow.js +209 -0
  103. package/Libraries/StyleSheet/processFilter.js +231 -42
  104. package/Libraries/Text/Text.js +394 -196
  105. package/Libraries/Text/Text.windows.js +476 -300
  106. package/Libraries/Text/TextNativeComponent.js +2 -1
  107. package/Libraries/TurboModule/TurboModuleRegistry.js +13 -50
  108. package/Libraries/Types/CodegenTypes.js +3 -1
  109. package/Libraries/Utilities/Appearance.js +108 -84
  110. package/Libraries/Utilities/DevLoadingView.js +2 -4
  111. package/Libraries/Utilities/HMRClient.js +8 -6
  112. package/Libraries/Utilities/ReactNativeTestTools.js +1 -1
  113. package/Libraries/Utilities/createPerformanceLogger.js +0 -9
  114. package/Libraries/Utilities/stringifyViewConfig.js +22 -0
  115. package/Libraries/Utilities/useColorScheme.js +3 -3
  116. package/Libraries/WebSocket/WebSocket.js +1 -1
  117. package/Libraries/promiseRejectionTrackingOptions.js +1 -1
  118. package/Libraries/vendor/emitter/EventEmitter.js +6 -5
  119. package/Microsoft.ReactNative/ComponentView.idl +11 -0
  120. package/Microsoft.ReactNative/Composition.Input.idl +1 -0
  121. package/Microsoft.ReactNative/CompositionSwitcher.idl +3 -0
  122. package/Microsoft.ReactNative/Fabric/AbiComponentDescriptor.cpp +9 -9
  123. package/Microsoft.ReactNative/Fabric/AbiViewComponentDescriptor.cpp +9 -9
  124. package/Microsoft.ReactNative/Fabric/ComponentView.cpp +7 -9
  125. package/Microsoft.ReactNative/Fabric/ComponentView.h +5 -6
  126. package/Microsoft.ReactNative/Fabric/Composition/Composition.Input.cpp +4 -0
  127. package/Microsoft.ReactNative/Fabric/Composition/Composition.Input.h +1 -0
  128. package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.cpp +44 -13
  129. package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.cpp +42 -5
  130. package/Microsoft.ReactNative/Fabric/Composition/CompositionHwndHost.cpp +1 -0
  131. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +81 -63
  132. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +2 -3
  133. package/Microsoft.ReactNative/Fabric/Composition/DebuggingOverlayComponentView.cpp +8 -6
  134. package/Microsoft.ReactNative/Fabric/Composition/DebuggingOverlayComponentView.h +1 -2
  135. package/Microsoft.ReactNative/Fabric/Composition/FocusManager.cpp +20 -6
  136. package/Microsoft.ReactNative/Fabric/Composition/FocusManager.h +13 -6
  137. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +2 -3
  138. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.h +1 -2
  139. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +72 -54
  140. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.h +14 -4
  141. package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +26 -8
  142. package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +5 -2
  143. package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.cpp +18 -7
  144. package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.h +1 -2
  145. package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.cpp +6 -6
  146. package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.h +1 -2
  147. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +97 -140
  148. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.h +8 -4
  149. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.cpp +18 -11
  150. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.h +5 -4
  151. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.cpp +0 -13
  152. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.h +0 -3
  153. package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.cpp +29 -4
  154. package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.h +2 -0
  155. package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.cpp +1 -2
  156. package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.h +1 -2
  157. package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.cpp +28 -12
  158. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/HostPlatformColor.h +33 -0
  159. package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/TextLayoutManager.cpp +26 -9
  160. package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/TextLayoutManager.h +10 -4
  161. package/Microsoft.ReactNative/IReactModuleBuilder.cpp +5 -0
  162. package/Microsoft.ReactNative/IReactModuleBuilder.h +1 -0
  163. package/Microsoft.ReactNative/IReactModuleBuilder.idl +9 -0
  164. package/Microsoft.ReactNative/IReactViewComponentBuilder.idl +8 -1
  165. package/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +2 -0
  166. package/Microsoft.ReactNative/Modules/AlertModule.cpp +3 -1
  167. package/Microsoft.ReactNative/Modules/AppearanceModule.cpp +1 -1
  168. package/Microsoft.ReactNative/Modules/AppearanceModule.h +7 -1
  169. package/Microsoft.ReactNative/Modules/DevSettingsModule.cpp +3 -3
  170. package/Microsoft.ReactNative/Modules/DevSettingsModule.h +1 -1
  171. package/Microsoft.ReactNative/Modules/LinkingManagerModule.cpp +2 -2
  172. package/Microsoft.ReactNative/Modules/LinkingManagerModule.h +1 -1
  173. package/Microsoft.ReactNative/Modules/LogBoxModule.cpp +9 -0
  174. package/Microsoft.ReactNative/Modules/LogBoxModule.h +2 -0
  175. package/Microsoft.ReactNative/Modules/SampleTurboModule.cpp +121 -0
  176. package/Microsoft.ReactNative/Modules/SampleTurboModule.h +90 -0
  177. package/Microsoft.ReactNative/ReactHost/MsoReactContext.cpp +0 -7
  178. package/Microsoft.ReactNative/ReactHost/MsoReactContext.h +0 -5
  179. package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.cpp +5 -1
  180. package/Microsoft.ReactNative/ReactInstanceSettingsBuilder.cpp +59 -0
  181. package/Microsoft.ReactNative/ReactInstanceSettingsBuilder.h +23 -0
  182. package/Microsoft.ReactNative/ReactNativeAppBuilder.cpp +179 -0
  183. package/Microsoft.ReactNative/ReactNativeAppBuilder.h +35 -0
  184. package/Microsoft.ReactNative/ReactNativeAppBuilder.idl +69 -0
  185. package/Microsoft.ReactNative/ReactNativeIsland.idl +2 -0
  186. package/Microsoft.ReactNative/ReactNativeWin32App.cpp +82 -0
  187. package/Microsoft.ReactNative/ReactNativeWin32App.h +38 -0
  188. package/Microsoft.ReactNative/TurboModulesProvider.cpp +45 -0
  189. package/Microsoft.ReactNative/Views/DynamicAutomationPeer.cpp +2 -1
  190. package/Microsoft.ReactNative/Views/FlyoutViewManager.cpp +25 -16
  191. package/Microsoft.ReactNative.Cxx/Microsoft.ReactNative.Cxx.vcxitems +3 -4
  192. package/Microsoft.ReactNative.Cxx/Microsoft.ReactNative.Cxx.vcxitems.filters +3 -0
  193. package/Microsoft.ReactNative.Cxx/ModuleRegistration.cpp +2 -2
  194. package/Microsoft.ReactNative.Cxx/ModuleRegistration.h +62 -4
  195. package/Microsoft.ReactNative.Cxx/NativeModules.h +131 -14
  196. package/Microsoft.ReactNative.Managed.CodeGen/ReactNativeNames.cs +10 -2
  197. package/PropertySheets/Autolink.props +1 -1
  198. package/PropertySheets/Bundle.props +1 -1
  199. package/PropertySheets/Codegen.props +1 -1
  200. package/PropertySheets/Generated/PackageVersion.g.props +4 -4
  201. package/PropertySheets/NuGet.LockFile.props +18 -0
  202. package/README.md +29 -29
  203. package/ReactCommon/ReactCommon.vcxproj +5 -1
  204. package/ReactCommon/ReactCommon.vcxproj.filters +11 -2
  205. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/JSExecutor.cpp +2 -7
  206. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.cpp +441 -0
  207. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.h +266 -0
  208. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/Utf8.h +56 -0
  209. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Base.h +3 -1
  210. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Bridging.h +2 -2
  211. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/CallbackWrapper.h +1 -1
  212. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Convert.h +172 -0
  213. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/EventEmitter.h +4 -5
  214. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Function.h +2 -2
  215. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/core/ReactCommon/TurboModule.h +1 -1
  216. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/core/ReactCommon/TurboModuleUtils.h +3 -2
  217. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/scrollview/ScrollViewProps.cpp +9 -0
  218. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/core/LayoutableShadowNode.cpp +363 -0
  219. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/JSRuntimeFactory.h +22 -2
  220. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/ReactInstance.cpp +118 -51
  221. package/Scripts/NuGetRestoreForceEvaluateAllSolutions.ps1 +8 -1
  222. package/Scripts/Tfs/Layout-MSRN-Headers.ps1 +2 -2
  223. package/Shared/Modules/WebSocketModule.cpp +1 -2
  224. package/Shared/Networking/WinRTWebSocketResource.cpp +4 -1
  225. package/Shared/Shared.vcxitems +38 -2
  226. package/Shared/Shared.vcxitems.filters +6 -1
  227. package/Shared/TurboModuleManager.cpp +0 -3
  228. package/codegen/NativeLinkingManagerSpec.g.h +3 -3
  229. package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +198 -54
  230. package/codegen/NativeSampleTurboModuleSpec.g.h +35 -0
  231. package/codegen/rnwcoreJSI-generated.cpp +245 -101
  232. package/codegen/rnwcoreJSI.h +847 -548
  233. package/index.js +3 -1
  234. package/index.windows.js +3 -1
  235. package/jest/mockComponent.js +4 -1
  236. package/jest/mockModal.js +1 -3
  237. package/jest/mockScrollView.js +1 -1
  238. package/jest/renderer.js +2 -2
  239. package/jest/setup.js +16 -13
  240. package/package.json +34 -30
  241. package/src/private/animated/NativeAnimatedHelper.js +438 -0
  242. package/src/private/animated/NativeAnimatedValidation.js +64 -0
  243. package/src/private/components/HScrollViewNativeComponents.js +56 -0
  244. package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +29 -0
  245. package/src/private/components/VScrollViewNativeComponents.js +48 -0
  246. package/src/private/components/useSyncOnScroll.js +48 -0
  247. package/src/private/featureflags/ReactNativeFeatureFlags.js +166 -16
  248. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +29 -5
  249. package/src/private/fusebox/FuseboxSessionObserver.js +42 -0
  250. package/{Libraries/Core → src/private/renderer/errorhandling}/ErrorHandlers.js +14 -4
  251. package/src/private/setup/setUpDOM.js +28 -0
  252. package/src/private/setup/setUpIntersectionObserver.js +27 -0
  253. package/src/private/setup/setUpMutationObserver.js +26 -0
  254. package/src/private/setup/setUpPerformanceObserver.js +64 -0
  255. package/src/private/specs/modules/NativeAppearance.js +3 -3
  256. package/src/private/specs/modules/NativeLinkingManager.js +1 -1
  257. package/src/private/specs/modules/NativePlatformConstantsWindows.js +7 -0
  258. package/src/private/specs/modules/NativeSampleTurboModule.js +14 -1
  259. package/src/private/webapis/dom/nodes/ReadOnlyNode.js +6 -4
  260. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserver.js +5 -3
  261. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverEntry.js +3 -3
  262. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverManager.js +14 -17
  263. package/src/private/{specs/modules → webapis/intersectionobserver/specs}/NativeIntersectionObserver.js +2 -2
  264. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver/specs}/__mocks__/NativeIntersectionObserver.js +4 -4
  265. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserver.js +5 -3
  266. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserverManager.js +24 -15
  267. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationRecord.js +4 -6
  268. package/src/private/{specs/modules → webapis/mutationobserver/specs}/NativeMutationObserver.js +2 -2
  269. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver/specs}/__mocks__/NativeMutationObserver.js +5 -5
  270. package/src/private/webapis/performance/{EventCounts.js → EventTiming.js} +65 -3
  271. package/src/private/webapis/performance/LongTasks.js +39 -0
  272. package/src/private/webapis/performance/Performance.js +22 -9
  273. package/src/private/webapis/performance/PerformanceEntry.js +36 -18
  274. package/src/private/webapis/performance/PerformanceObserver.js +29 -43
  275. package/src/private/webapis/performance/RawPerformanceEntry.js +24 -1
  276. package/src/private/webapis/performance/UserTiming.js +17 -12
  277. package/src/private/webapis/performance/specs/NativePerformanceObserver.js +1 -1
  278. package/template/cpp-app/src/AutolinkedNativeModules.g.cpp +1 -1
  279. package/template/cpp-app/src/AutolinkedNativeModules.g.h +1 -1
  280. package/template/cs-app/src/AutolinkedNativeModules.g.cs +1 -1
  281. package/template/index.windows.bundle +1 -1
  282. package/template/metro.config.js +2 -2
  283. package/template/shared-app/src/AutolinkedNativeModules.g.props +1 -1
  284. package/template/shared-app/src/AutolinkedNativeModules.g.targets +1 -1
  285. package/templates/cpp-app/metro.config.js +2 -2
  286. package/templates/cpp-app/template.config.js +5 -5
  287. package/templates/cpp-app/windows/MyApp/AutolinkedNativeModules.g.cpp +1 -1
  288. package/templates/cpp-app/windows/MyApp/AutolinkedNativeModules.g.h +1 -1
  289. package/templates/cpp-app/windows/MyApp/MyApp.cpp +2 -0
  290. package/templates/cpp-app/windows/MyApp/MyApp.vcxproj +1 -1
  291. package/templates/cpp-lib/example/metro.config.js +2 -2
  292. package/templates/cpp-lib/template.config.js +3 -3
  293. package/templates/cpp-lib/windows/MyLib/MyLib.h +3 -3
  294. package/templates/cpp-lib/windows/MyLib/MyLib.vcxproj +1 -1
  295. package/types/experimental.d.ts +12 -98
  296. package/Common/packages.lock.json +0 -26
  297. package/Folly/packages.lock.json +0 -23
  298. package/Libraries/Animated/NativeAnimatedHelper.js +0 -615
  299. package/Libraries/Core/setUpIntersectionObserver.js +0 -16
  300. package/Libraries/Core/setUpMutationObserver.js +0 -16
  301. package/Libraries/Core/setUpPerformanceObserver.js +0 -18
  302. package/Libraries/IntersectionObserver/NativeIntersectionObserver.js +0 -13
  303. package/Libraries/MutationObserver/NativeMutationObserver.js +0 -13
  304. package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +0 -135
  305. package/Microsoft.ReactNative/packages.lock.json +0 -132
  306. package/Microsoft.ReactNative.Managed/packages.lock.json +0 -373
  307. package/Microsoft.ReactNative.Managed.CodeGen/packages.lock.json +0 -3197
  308. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/algorithm/CalculateLayout.cpp +0 -2396
  309. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/config/Config.cpp +0 -136
  310. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/config/Config.h +0 -92
  311. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/LayoutResults.cpp +0 -48
  312. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/LayoutResults.h +0 -122
  313. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/Node.cpp +0 -388
  314. package/ReactCommon/packages.lock.json +0 -30
  315. package/fmt/packages.lock.json +0 -13
  316. package/src/private/core/setUpDOM.js +0 -18
  317. package/src/private/webapis/performance/PerformanceEventTiming.js +0 -55
  318. /package/src/private/{core → styles}/composeStyles.js +0 -0
@@ -1,3197 +0,0 @@
1
- {
2
- "version": 1,
3
- "dependencies": {
4
- "net6.0": {
5
- "Humanizer": {
6
- "type": "Direct",
7
- "requested": "[2.14.1, )",
8
- "resolved": "2.14.1",
9
- "contentHash": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
10
- "dependencies": {
11
- "Humanizer.Core.af": "2.14.1",
12
- "Humanizer.Core.ar": "2.14.1",
13
- "Humanizer.Core.az": "2.14.1",
14
- "Humanizer.Core.bg": "2.14.1",
15
- "Humanizer.Core.bn-BD": "2.14.1",
16
- "Humanizer.Core.cs": "2.14.1",
17
- "Humanizer.Core.da": "2.14.1",
18
- "Humanizer.Core.de": "2.14.1",
19
- "Humanizer.Core.el": "2.14.1",
20
- "Humanizer.Core.es": "2.14.1",
21
- "Humanizer.Core.fa": "2.14.1",
22
- "Humanizer.Core.fi-FI": "2.14.1",
23
- "Humanizer.Core.fr": "2.14.1",
24
- "Humanizer.Core.fr-BE": "2.14.1",
25
- "Humanizer.Core.he": "2.14.1",
26
- "Humanizer.Core.hr": "2.14.1",
27
- "Humanizer.Core.hu": "2.14.1",
28
- "Humanizer.Core.hy": "2.14.1",
29
- "Humanizer.Core.id": "2.14.1",
30
- "Humanizer.Core.is": "2.14.1",
31
- "Humanizer.Core.it": "2.14.1",
32
- "Humanizer.Core.ja": "2.14.1",
33
- "Humanizer.Core.ko-KR": "2.14.1",
34
- "Humanizer.Core.ku": "2.14.1",
35
- "Humanizer.Core.lv": "2.14.1",
36
- "Humanizer.Core.ms-MY": "2.14.1",
37
- "Humanizer.Core.mt": "2.14.1",
38
- "Humanizer.Core.nb": "2.14.1",
39
- "Humanizer.Core.nb-NO": "2.14.1",
40
- "Humanizer.Core.nl": "2.14.1",
41
- "Humanizer.Core.pl": "2.14.1",
42
- "Humanizer.Core.pt": "2.14.1",
43
- "Humanizer.Core.ro": "2.14.1",
44
- "Humanizer.Core.ru": "2.14.1",
45
- "Humanizer.Core.sk": "2.14.1",
46
- "Humanizer.Core.sl": "2.14.1",
47
- "Humanizer.Core.sr": "2.14.1",
48
- "Humanizer.Core.sr-Latn": "2.14.1",
49
- "Humanizer.Core.sv": "2.14.1",
50
- "Humanizer.Core.th-TH": "2.14.1",
51
- "Humanizer.Core.tr": "2.14.1",
52
- "Humanizer.Core.uk": "2.14.1",
53
- "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
54
- "Humanizer.Core.uz-Latn-UZ": "2.14.1",
55
- "Humanizer.Core.vi": "2.14.1",
56
- "Humanizer.Core.zh-CN": "2.14.1",
57
- "Humanizer.Core.zh-Hans": "2.14.1",
58
- "Humanizer.Core.zh-Hant": "2.14.1"
59
- }
60
- },
61
- "Microsoft.CodeAnalysis.CSharp": {
62
- "type": "Direct",
63
- "requested": "[4.3.1, )",
64
- "resolved": "4.3.1",
65
- "contentHash": "5C9VHvahL98tumlyaT/loB5rW+K/6q0UU7uLyT1Dv15YjZraRkqML9u2t2e8GaO7XqEOtBVqK/SlxXOPqwzxog==",
66
- "dependencies": {
67
- "Microsoft.CodeAnalysis.Common": "[4.3.1]"
68
- }
69
- },
70
- "Microsoft.CodeAnalysis.CSharp.Workspaces": {
71
- "type": "Direct",
72
- "requested": "[4.3.1, )",
73
- "resolved": "4.3.1",
74
- "contentHash": "mRTePOunrPzWkUT7I/FUQF6EFopAuYt0EiYbznkULOyHFT9eHDtN+gaHxqx9or/edAXgpm0KVeybQ83ri/M9Ww==",
75
- "dependencies": {
76
- "Humanizer.Core": "2.14.1",
77
- "Microsoft.CodeAnalysis.CSharp": "[4.3.1]",
78
- "Microsoft.CodeAnalysis.Common": "[4.3.1]",
79
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.3.1]"
80
- }
81
- },
82
- "RuntimeContracts": {
83
- "type": "Direct",
84
- "requested": "[0.3.0, )",
85
- "resolved": "0.3.0",
86
- "contentHash": "pOQaQ0MJe9ylcIy24BPXyu1NC3XgujLlDxuVqfvws62CUoSqz7lELyU5WdYal5p63D3G/Mop9nnVdNNgPkA/ew==",
87
- "dependencies": {
88
- "NETStandard.Library": "1.6.1",
89
- "RuntimeContracts.Analyzer": "0.3.0"
90
- }
91
- },
92
- "System.Private.Uri": {
93
- "type": "Direct",
94
- "requested": "[4.3.2, )",
95
- "resolved": "4.3.2",
96
- "contentHash": "o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
97
- "dependencies": {
98
- "Microsoft.NETCore.Platforms": "1.1.1",
99
- "Microsoft.NETCore.Targets": "1.1.3"
100
- }
101
- },
102
- "Humanizer.Core": {
103
- "type": "Transitive",
104
- "resolved": "2.14.1",
105
- "contentHash": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw=="
106
- },
107
- "Humanizer.Core.af": {
108
- "type": "Transitive",
109
- "resolved": "2.14.1",
110
- "contentHash": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
111
- "dependencies": {
112
- "Humanizer.Core": "[2.14.1]"
113
- }
114
- },
115
- "Humanizer.Core.ar": {
116
- "type": "Transitive",
117
- "resolved": "2.14.1",
118
- "contentHash": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
119
- "dependencies": {
120
- "Humanizer.Core": "[2.14.1]"
121
- }
122
- },
123
- "Humanizer.Core.az": {
124
- "type": "Transitive",
125
- "resolved": "2.14.1",
126
- "contentHash": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
127
- "dependencies": {
128
- "Humanizer.Core": "[2.14.1]"
129
- }
130
- },
131
- "Humanizer.Core.bg": {
132
- "type": "Transitive",
133
- "resolved": "2.14.1",
134
- "contentHash": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
135
- "dependencies": {
136
- "Humanizer.Core": "[2.14.1]"
137
- }
138
- },
139
- "Humanizer.Core.bn-BD": {
140
- "type": "Transitive",
141
- "resolved": "2.14.1",
142
- "contentHash": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
143
- "dependencies": {
144
- "Humanizer.Core": "[2.14.1]"
145
- }
146
- },
147
- "Humanizer.Core.cs": {
148
- "type": "Transitive",
149
- "resolved": "2.14.1",
150
- "contentHash": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
151
- "dependencies": {
152
- "Humanizer.Core": "[2.14.1]"
153
- }
154
- },
155
- "Humanizer.Core.da": {
156
- "type": "Transitive",
157
- "resolved": "2.14.1",
158
- "contentHash": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
159
- "dependencies": {
160
- "Humanizer.Core": "[2.14.1]"
161
- }
162
- },
163
- "Humanizer.Core.de": {
164
- "type": "Transitive",
165
- "resolved": "2.14.1",
166
- "contentHash": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
167
- "dependencies": {
168
- "Humanizer.Core": "[2.14.1]"
169
- }
170
- },
171
- "Humanizer.Core.el": {
172
- "type": "Transitive",
173
- "resolved": "2.14.1",
174
- "contentHash": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
175
- "dependencies": {
176
- "Humanizer.Core": "[2.14.1]"
177
- }
178
- },
179
- "Humanizer.Core.es": {
180
- "type": "Transitive",
181
- "resolved": "2.14.1",
182
- "contentHash": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
183
- "dependencies": {
184
- "Humanizer.Core": "[2.14.1]"
185
- }
186
- },
187
- "Humanizer.Core.fa": {
188
- "type": "Transitive",
189
- "resolved": "2.14.1",
190
- "contentHash": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
191
- "dependencies": {
192
- "Humanizer.Core": "[2.14.1]"
193
- }
194
- },
195
- "Humanizer.Core.fi-FI": {
196
- "type": "Transitive",
197
- "resolved": "2.14.1",
198
- "contentHash": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
199
- "dependencies": {
200
- "Humanizer.Core": "[2.14.1]"
201
- }
202
- },
203
- "Humanizer.Core.fr": {
204
- "type": "Transitive",
205
- "resolved": "2.14.1",
206
- "contentHash": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
207
- "dependencies": {
208
- "Humanizer.Core": "[2.14.1]"
209
- }
210
- },
211
- "Humanizer.Core.fr-BE": {
212
- "type": "Transitive",
213
- "resolved": "2.14.1",
214
- "contentHash": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
215
- "dependencies": {
216
- "Humanizer.Core": "[2.14.1]"
217
- }
218
- },
219
- "Humanizer.Core.he": {
220
- "type": "Transitive",
221
- "resolved": "2.14.1",
222
- "contentHash": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
223
- "dependencies": {
224
- "Humanizer.Core": "[2.14.1]"
225
- }
226
- },
227
- "Humanizer.Core.hr": {
228
- "type": "Transitive",
229
- "resolved": "2.14.1",
230
- "contentHash": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
231
- "dependencies": {
232
- "Humanizer.Core": "[2.14.1]"
233
- }
234
- },
235
- "Humanizer.Core.hu": {
236
- "type": "Transitive",
237
- "resolved": "2.14.1",
238
- "contentHash": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
239
- "dependencies": {
240
- "Humanizer.Core": "[2.14.1]"
241
- }
242
- },
243
- "Humanizer.Core.hy": {
244
- "type": "Transitive",
245
- "resolved": "2.14.1",
246
- "contentHash": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
247
- "dependencies": {
248
- "Humanizer.Core": "[2.14.1]"
249
- }
250
- },
251
- "Humanizer.Core.id": {
252
- "type": "Transitive",
253
- "resolved": "2.14.1",
254
- "contentHash": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
255
- "dependencies": {
256
- "Humanizer.Core": "[2.14.1]"
257
- }
258
- },
259
- "Humanizer.Core.is": {
260
- "type": "Transitive",
261
- "resolved": "2.14.1",
262
- "contentHash": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
263
- "dependencies": {
264
- "Humanizer.Core": "[2.14.1]"
265
- }
266
- },
267
- "Humanizer.Core.it": {
268
- "type": "Transitive",
269
- "resolved": "2.14.1",
270
- "contentHash": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
271
- "dependencies": {
272
- "Humanizer.Core": "[2.14.1]"
273
- }
274
- },
275
- "Humanizer.Core.ja": {
276
- "type": "Transitive",
277
- "resolved": "2.14.1",
278
- "contentHash": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
279
- "dependencies": {
280
- "Humanizer.Core": "[2.14.1]"
281
- }
282
- },
283
- "Humanizer.Core.ko-KR": {
284
- "type": "Transitive",
285
- "resolved": "2.14.1",
286
- "contentHash": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
287
- "dependencies": {
288
- "Humanizer.Core": "[2.14.1]"
289
- }
290
- },
291
- "Humanizer.Core.ku": {
292
- "type": "Transitive",
293
- "resolved": "2.14.1",
294
- "contentHash": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
295
- "dependencies": {
296
- "Humanizer.Core": "[2.14.1]"
297
- }
298
- },
299
- "Humanizer.Core.lv": {
300
- "type": "Transitive",
301
- "resolved": "2.14.1",
302
- "contentHash": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
303
- "dependencies": {
304
- "Humanizer.Core": "[2.14.1]"
305
- }
306
- },
307
- "Humanizer.Core.ms-MY": {
308
- "type": "Transitive",
309
- "resolved": "2.14.1",
310
- "contentHash": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
311
- "dependencies": {
312
- "Humanizer.Core": "[2.14.1]"
313
- }
314
- },
315
- "Humanizer.Core.mt": {
316
- "type": "Transitive",
317
- "resolved": "2.14.1",
318
- "contentHash": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
319
- "dependencies": {
320
- "Humanizer.Core": "[2.14.1]"
321
- }
322
- },
323
- "Humanizer.Core.nb": {
324
- "type": "Transitive",
325
- "resolved": "2.14.1",
326
- "contentHash": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
327
- "dependencies": {
328
- "Humanizer.Core": "[2.14.1]"
329
- }
330
- },
331
- "Humanizer.Core.nb-NO": {
332
- "type": "Transitive",
333
- "resolved": "2.14.1",
334
- "contentHash": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
335
- "dependencies": {
336
- "Humanizer.Core": "[2.14.1]"
337
- }
338
- },
339
- "Humanizer.Core.nl": {
340
- "type": "Transitive",
341
- "resolved": "2.14.1",
342
- "contentHash": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
343
- "dependencies": {
344
- "Humanizer.Core": "[2.14.1]"
345
- }
346
- },
347
- "Humanizer.Core.pl": {
348
- "type": "Transitive",
349
- "resolved": "2.14.1",
350
- "contentHash": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
351
- "dependencies": {
352
- "Humanizer.Core": "[2.14.1]"
353
- }
354
- },
355
- "Humanizer.Core.pt": {
356
- "type": "Transitive",
357
- "resolved": "2.14.1",
358
- "contentHash": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
359
- "dependencies": {
360
- "Humanizer.Core": "[2.14.1]"
361
- }
362
- },
363
- "Humanizer.Core.ro": {
364
- "type": "Transitive",
365
- "resolved": "2.14.1",
366
- "contentHash": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
367
- "dependencies": {
368
- "Humanizer.Core": "[2.14.1]"
369
- }
370
- },
371
- "Humanizer.Core.ru": {
372
- "type": "Transitive",
373
- "resolved": "2.14.1",
374
- "contentHash": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
375
- "dependencies": {
376
- "Humanizer.Core": "[2.14.1]"
377
- }
378
- },
379
- "Humanizer.Core.sk": {
380
- "type": "Transitive",
381
- "resolved": "2.14.1",
382
- "contentHash": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
383
- "dependencies": {
384
- "Humanizer.Core": "[2.14.1]"
385
- }
386
- },
387
- "Humanizer.Core.sl": {
388
- "type": "Transitive",
389
- "resolved": "2.14.1",
390
- "contentHash": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
391
- "dependencies": {
392
- "Humanizer.Core": "[2.14.1]"
393
- }
394
- },
395
- "Humanizer.Core.sr": {
396
- "type": "Transitive",
397
- "resolved": "2.14.1",
398
- "contentHash": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
399
- "dependencies": {
400
- "Humanizer.Core": "[2.14.1]"
401
- }
402
- },
403
- "Humanizer.Core.sr-Latn": {
404
- "type": "Transitive",
405
- "resolved": "2.14.1",
406
- "contentHash": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
407
- "dependencies": {
408
- "Humanizer.Core": "[2.14.1]"
409
- }
410
- },
411
- "Humanizer.Core.sv": {
412
- "type": "Transitive",
413
- "resolved": "2.14.1",
414
- "contentHash": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
415
- "dependencies": {
416
- "Humanizer.Core": "[2.14.1]"
417
- }
418
- },
419
- "Humanizer.Core.th-TH": {
420
- "type": "Transitive",
421
- "resolved": "2.14.1",
422
- "contentHash": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
423
- "dependencies": {
424
- "Humanizer.Core": "[2.14.1]"
425
- }
426
- },
427
- "Humanizer.Core.tr": {
428
- "type": "Transitive",
429
- "resolved": "2.14.1",
430
- "contentHash": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
431
- "dependencies": {
432
- "Humanizer.Core": "[2.14.1]"
433
- }
434
- },
435
- "Humanizer.Core.uk": {
436
- "type": "Transitive",
437
- "resolved": "2.14.1",
438
- "contentHash": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
439
- "dependencies": {
440
- "Humanizer.Core": "[2.14.1]"
441
- }
442
- },
443
- "Humanizer.Core.uz-Cyrl-UZ": {
444
- "type": "Transitive",
445
- "resolved": "2.14.1",
446
- "contentHash": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
447
- "dependencies": {
448
- "Humanizer.Core": "[2.14.1]"
449
- }
450
- },
451
- "Humanizer.Core.uz-Latn-UZ": {
452
- "type": "Transitive",
453
- "resolved": "2.14.1",
454
- "contentHash": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
455
- "dependencies": {
456
- "Humanizer.Core": "[2.14.1]"
457
- }
458
- },
459
- "Humanizer.Core.vi": {
460
- "type": "Transitive",
461
- "resolved": "2.14.1",
462
- "contentHash": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
463
- "dependencies": {
464
- "Humanizer.Core": "[2.14.1]"
465
- }
466
- },
467
- "Humanizer.Core.zh-CN": {
468
- "type": "Transitive",
469
- "resolved": "2.14.1",
470
- "contentHash": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
471
- "dependencies": {
472
- "Humanizer.Core": "[2.14.1]"
473
- }
474
- },
475
- "Humanizer.Core.zh-Hans": {
476
- "type": "Transitive",
477
- "resolved": "2.14.1",
478
- "contentHash": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
479
- "dependencies": {
480
- "Humanizer.Core": "[2.14.1]"
481
- }
482
- },
483
- "Humanizer.Core.zh-Hant": {
484
- "type": "Transitive",
485
- "resolved": "2.14.1",
486
- "contentHash": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
487
- "dependencies": {
488
- "Humanizer.Core": "[2.14.1]"
489
- }
490
- },
491
- "Microsoft.Bcl.AsyncInterfaces": {
492
- "type": "Transitive",
493
- "resolved": "6.0.0",
494
- "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg=="
495
- },
496
- "Microsoft.CodeAnalysis.Analyzers": {
497
- "type": "Transitive",
498
- "resolved": "3.3.3",
499
- "contentHash": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ=="
500
- },
501
- "Microsoft.CodeAnalysis.Common": {
502
- "type": "Transitive",
503
- "resolved": "4.3.1",
504
- "contentHash": "wexpJffSEEwptwe6UTMxRDZCCtz+XubI4Qewl4JECnNhcQrtb0anhSUEV9Nz7WkoNfWkx1fptR8xh1egoxYrqw==",
505
- "dependencies": {
506
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
507
- "System.Collections.Immutable": "6.0.0",
508
- "System.Memory": "4.5.4",
509
- "System.Reflection.Metadata": "5.0.0",
510
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
511
- "System.Text.Encoding.CodePages": "6.0.0",
512
- "System.Threading.Tasks.Extensions": "4.5.4"
513
- }
514
- },
515
- "Microsoft.CodeAnalysis.Workspaces.Common": {
516
- "type": "Transitive",
517
- "resolved": "4.3.1",
518
- "contentHash": "PtkBobNNtAJ6teR/tzuDGf4829DcIUJJqN4wRtshRG28Xs+DRvnE4znFvZWJ8hsnBWGsywqjpRYjvoAdIYi3NA==",
519
- "dependencies": {
520
- "Humanizer.Core": "2.14.1",
521
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
522
- "Microsoft.CodeAnalysis.Common": "[4.3.1]",
523
- "System.Composition": "6.0.0",
524
- "System.IO.Pipelines": "6.0.3"
525
- }
526
- },
527
- "Microsoft.NETCore.Platforms": {
528
- "type": "Transitive",
529
- "resolved": "1.1.1",
530
- "contentHash": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ=="
531
- },
532
- "Microsoft.NETCore.Targets": {
533
- "type": "Transitive",
534
- "resolved": "1.1.3",
535
- "contentHash": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ=="
536
- },
537
- "Microsoft.Win32.Primitives": {
538
- "type": "Transitive",
539
- "resolved": "4.3.0",
540
- "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
541
- "dependencies": {
542
- "Microsoft.NETCore.Platforms": "1.1.0",
543
- "Microsoft.NETCore.Targets": "1.1.0",
544
- "System.Runtime": "4.3.0"
545
- }
546
- },
547
- "NETStandard.Library": {
548
- "type": "Transitive",
549
- "resolved": "1.6.1",
550
- "contentHash": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
551
- "dependencies": {
552
- "Microsoft.NETCore.Platforms": "1.1.0",
553
- "Microsoft.Win32.Primitives": "4.3.0",
554
- "System.AppContext": "4.3.0",
555
- "System.Collections": "4.3.0",
556
- "System.Collections.Concurrent": "4.3.0",
557
- "System.Console": "4.3.0",
558
- "System.Diagnostics.Debug": "4.3.0",
559
- "System.Diagnostics.Tools": "4.3.0",
560
- "System.Diagnostics.Tracing": "4.3.0",
561
- "System.Globalization": "4.3.0",
562
- "System.Globalization.Calendars": "4.3.0",
563
- "System.IO": "4.3.0",
564
- "System.IO.Compression": "4.3.0",
565
- "System.IO.Compression.ZipFile": "4.3.0",
566
- "System.IO.FileSystem": "4.3.0",
567
- "System.IO.FileSystem.Primitives": "4.3.0",
568
- "System.Linq": "4.3.0",
569
- "System.Linq.Expressions": "4.3.0",
570
- "System.Net.Http": "4.3.0",
571
- "System.Net.Primitives": "4.3.0",
572
- "System.Net.Sockets": "4.3.0",
573
- "System.ObjectModel": "4.3.0",
574
- "System.Reflection": "4.3.0",
575
- "System.Reflection.Extensions": "4.3.0",
576
- "System.Reflection.Primitives": "4.3.0",
577
- "System.Resources.ResourceManager": "4.3.0",
578
- "System.Runtime": "4.3.0",
579
- "System.Runtime.Extensions": "4.3.0",
580
- "System.Runtime.Handles": "4.3.0",
581
- "System.Runtime.InteropServices": "4.3.0",
582
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
583
- "System.Runtime.Numerics": "4.3.0",
584
- "System.Security.Cryptography.Algorithms": "4.3.0",
585
- "System.Security.Cryptography.Encoding": "4.3.0",
586
- "System.Security.Cryptography.Primitives": "4.3.0",
587
- "System.Security.Cryptography.X509Certificates": "4.3.0",
588
- "System.Text.Encoding": "4.3.0",
589
- "System.Text.Encoding.Extensions": "4.3.0",
590
- "System.Text.RegularExpressions": "4.3.0",
591
- "System.Threading": "4.3.0",
592
- "System.Threading.Tasks": "4.3.0",
593
- "System.Threading.Timer": "4.3.0",
594
- "System.Xml.ReaderWriter": "4.3.0",
595
- "System.Xml.XDocument": "4.3.0"
596
- }
597
- },
598
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
599
- "type": "Transitive",
600
- "resolved": "4.3.0",
601
- "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
602
- },
603
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
604
- "type": "Transitive",
605
- "resolved": "4.3.0",
606
- "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
607
- },
608
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
609
- "type": "Transitive",
610
- "resolved": "4.3.0",
611
- "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
612
- },
613
- "runtime.native.System": {
614
- "type": "Transitive",
615
- "resolved": "4.3.0",
616
- "contentHash": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
617
- "dependencies": {
618
- "Microsoft.NETCore.Platforms": "1.1.0",
619
- "Microsoft.NETCore.Targets": "1.1.0"
620
- }
621
- },
622
- "runtime.native.System.IO.Compression": {
623
- "type": "Transitive",
624
- "resolved": "4.3.0",
625
- "contentHash": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
626
- "dependencies": {
627
- "Microsoft.NETCore.Platforms": "1.1.0",
628
- "Microsoft.NETCore.Targets": "1.1.0"
629
- }
630
- },
631
- "runtime.native.System.Net.Http": {
632
- "type": "Transitive",
633
- "resolved": "4.3.0",
634
- "contentHash": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
635
- "dependencies": {
636
- "Microsoft.NETCore.Platforms": "1.1.0",
637
- "Microsoft.NETCore.Targets": "1.1.0"
638
- }
639
- },
640
- "runtime.native.System.Security.Cryptography.Apple": {
641
- "type": "Transitive",
642
- "resolved": "4.3.0",
643
- "contentHash": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
644
- "dependencies": {
645
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
646
- }
647
- },
648
- "runtime.native.System.Security.Cryptography.OpenSsl": {
649
- "type": "Transitive",
650
- "resolved": "4.3.0",
651
- "contentHash": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
652
- "dependencies": {
653
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
654
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
655
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
656
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
657
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
658
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
659
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
660
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
661
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
662
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
663
- }
664
- },
665
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
666
- "type": "Transitive",
667
- "resolved": "4.3.0",
668
- "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
669
- },
670
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
671
- "type": "Transitive",
672
- "resolved": "4.3.0",
673
- "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
674
- },
675
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
676
- "type": "Transitive",
677
- "resolved": "4.3.0",
678
- "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
679
- },
680
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
681
- "type": "Transitive",
682
- "resolved": "4.3.0",
683
- "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
684
- },
685
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
686
- "type": "Transitive",
687
- "resolved": "4.3.0",
688
- "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
689
- },
690
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
691
- "type": "Transitive",
692
- "resolved": "4.3.0",
693
- "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
694
- },
695
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
696
- "type": "Transitive",
697
- "resolved": "4.3.0",
698
- "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
699
- },
700
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
701
- "type": "Transitive",
702
- "resolved": "4.3.0",
703
- "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
704
- },
705
- "RuntimeContracts.Analyzer": {
706
- "type": "Transitive",
707
- "resolved": "0.3.0",
708
- "contentHash": "dcNFLPRXqdzKK/upZqMZFoKgXrA3q/b2uq84aIMI1tRCyyaT6+/4n/eY/0FIhKHhfTBLjMfOzBVVhTDC6o4TmQ=="
709
- },
710
- "System.AppContext": {
711
- "type": "Transitive",
712
- "resolved": "4.3.0",
713
- "contentHash": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
714
- "dependencies": {
715
- "System.Runtime": "4.3.0"
716
- }
717
- },
718
- "System.Buffers": {
719
- "type": "Transitive",
720
- "resolved": "4.3.0",
721
- "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
722
- "dependencies": {
723
- "System.Diagnostics.Debug": "4.3.0",
724
- "System.Diagnostics.Tracing": "4.3.0",
725
- "System.Resources.ResourceManager": "4.3.0",
726
- "System.Runtime": "4.3.0",
727
- "System.Threading": "4.3.0"
728
- }
729
- },
730
- "System.Collections": {
731
- "type": "Transitive",
732
- "resolved": "4.3.0",
733
- "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
734
- "dependencies": {
735
- "Microsoft.NETCore.Platforms": "1.1.0",
736
- "Microsoft.NETCore.Targets": "1.1.0",
737
- "System.Runtime": "4.3.0"
738
- }
739
- },
740
- "System.Collections.Concurrent": {
741
- "type": "Transitive",
742
- "resolved": "4.3.0",
743
- "contentHash": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
744
- "dependencies": {
745
- "System.Collections": "4.3.0",
746
- "System.Diagnostics.Debug": "4.3.0",
747
- "System.Diagnostics.Tracing": "4.3.0",
748
- "System.Globalization": "4.3.0",
749
- "System.Reflection": "4.3.0",
750
- "System.Resources.ResourceManager": "4.3.0",
751
- "System.Runtime": "4.3.0",
752
- "System.Runtime.Extensions": "4.3.0",
753
- "System.Threading": "4.3.0",
754
- "System.Threading.Tasks": "4.3.0"
755
- }
756
- },
757
- "System.Collections.Immutable": {
758
- "type": "Transitive",
759
- "resolved": "6.0.0",
760
- "contentHash": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
761
- "dependencies": {
762
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
763
- }
764
- },
765
- "System.Composition": {
766
- "type": "Transitive",
767
- "resolved": "6.0.0",
768
- "contentHash": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
769
- "dependencies": {
770
- "System.Composition.AttributedModel": "6.0.0",
771
- "System.Composition.Convention": "6.0.0",
772
- "System.Composition.Hosting": "6.0.0",
773
- "System.Composition.Runtime": "6.0.0",
774
- "System.Composition.TypedParts": "6.0.0"
775
- }
776
- },
777
- "System.Composition.AttributedModel": {
778
- "type": "Transitive",
779
- "resolved": "6.0.0",
780
- "contentHash": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w=="
781
- },
782
- "System.Composition.Convention": {
783
- "type": "Transitive",
784
- "resolved": "6.0.0",
785
- "contentHash": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
786
- "dependencies": {
787
- "System.Composition.AttributedModel": "6.0.0"
788
- }
789
- },
790
- "System.Composition.Hosting": {
791
- "type": "Transitive",
792
- "resolved": "6.0.0",
793
- "contentHash": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
794
- "dependencies": {
795
- "System.Composition.Runtime": "6.0.0"
796
- }
797
- },
798
- "System.Composition.Runtime": {
799
- "type": "Transitive",
800
- "resolved": "6.0.0",
801
- "contentHash": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg=="
802
- },
803
- "System.Composition.TypedParts": {
804
- "type": "Transitive",
805
- "resolved": "6.0.0",
806
- "contentHash": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
807
- "dependencies": {
808
- "System.Composition.AttributedModel": "6.0.0",
809
- "System.Composition.Hosting": "6.0.0",
810
- "System.Composition.Runtime": "6.0.0"
811
- }
812
- },
813
- "System.Console": {
814
- "type": "Transitive",
815
- "resolved": "4.3.0",
816
- "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
817
- "dependencies": {
818
- "Microsoft.NETCore.Platforms": "1.1.0",
819
- "Microsoft.NETCore.Targets": "1.1.0",
820
- "System.IO": "4.3.0",
821
- "System.Runtime": "4.3.0",
822
- "System.Text.Encoding": "4.3.0"
823
- }
824
- },
825
- "System.Diagnostics.Debug": {
826
- "type": "Transitive",
827
- "resolved": "4.3.0",
828
- "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
829
- "dependencies": {
830
- "Microsoft.NETCore.Platforms": "1.1.0",
831
- "Microsoft.NETCore.Targets": "1.1.0",
832
- "System.Runtime": "4.3.0"
833
- }
834
- },
835
- "System.Diagnostics.DiagnosticSource": {
836
- "type": "Transitive",
837
- "resolved": "4.3.0",
838
- "contentHash": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
839
- "dependencies": {
840
- "System.Collections": "4.3.0",
841
- "System.Diagnostics.Tracing": "4.3.0",
842
- "System.Reflection": "4.3.0",
843
- "System.Runtime": "4.3.0",
844
- "System.Threading": "4.3.0"
845
- }
846
- },
847
- "System.Diagnostics.Tools": {
848
- "type": "Transitive",
849
- "resolved": "4.3.0",
850
- "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
851
- "dependencies": {
852
- "Microsoft.NETCore.Platforms": "1.1.0",
853
- "Microsoft.NETCore.Targets": "1.1.0",
854
- "System.Runtime": "4.3.0"
855
- }
856
- },
857
- "System.Diagnostics.Tracing": {
858
- "type": "Transitive",
859
- "resolved": "4.3.0",
860
- "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
861
- "dependencies": {
862
- "Microsoft.NETCore.Platforms": "1.1.0",
863
- "Microsoft.NETCore.Targets": "1.1.0",
864
- "System.Runtime": "4.3.0"
865
- }
866
- },
867
- "System.Globalization": {
868
- "type": "Transitive",
869
- "resolved": "4.3.0",
870
- "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
871
- "dependencies": {
872
- "Microsoft.NETCore.Platforms": "1.1.0",
873
- "Microsoft.NETCore.Targets": "1.1.0",
874
- "System.Runtime": "4.3.0"
875
- }
876
- },
877
- "System.Globalization.Calendars": {
878
- "type": "Transitive",
879
- "resolved": "4.3.0",
880
- "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
881
- "dependencies": {
882
- "Microsoft.NETCore.Platforms": "1.1.0",
883
- "Microsoft.NETCore.Targets": "1.1.0",
884
- "System.Globalization": "4.3.0",
885
- "System.Runtime": "4.3.0"
886
- }
887
- },
888
- "System.Globalization.Extensions": {
889
- "type": "Transitive",
890
- "resolved": "4.3.0",
891
- "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
892
- "dependencies": {
893
- "Microsoft.NETCore.Platforms": "1.1.0",
894
- "System.Globalization": "4.3.0",
895
- "System.Resources.ResourceManager": "4.3.0",
896
- "System.Runtime": "4.3.0",
897
- "System.Runtime.Extensions": "4.3.0",
898
- "System.Runtime.InteropServices": "4.3.0"
899
- }
900
- },
901
- "System.IO": {
902
- "type": "Transitive",
903
- "resolved": "4.3.0",
904
- "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
905
- "dependencies": {
906
- "Microsoft.NETCore.Platforms": "1.1.0",
907
- "Microsoft.NETCore.Targets": "1.1.0",
908
- "System.Runtime": "4.3.0",
909
- "System.Text.Encoding": "4.3.0",
910
- "System.Threading.Tasks": "4.3.0"
911
- }
912
- },
913
- "System.IO.Compression": {
914
- "type": "Transitive",
915
- "resolved": "4.3.0",
916
- "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
917
- "dependencies": {
918
- "Microsoft.NETCore.Platforms": "1.1.0",
919
- "System.Buffers": "4.3.0",
920
- "System.Collections": "4.3.0",
921
- "System.Diagnostics.Debug": "4.3.0",
922
- "System.IO": "4.3.0",
923
- "System.Resources.ResourceManager": "4.3.0",
924
- "System.Runtime": "4.3.0",
925
- "System.Runtime.Extensions": "4.3.0",
926
- "System.Runtime.Handles": "4.3.0",
927
- "System.Runtime.InteropServices": "4.3.0",
928
- "System.Text.Encoding": "4.3.0",
929
- "System.Threading": "4.3.0",
930
- "System.Threading.Tasks": "4.3.0",
931
- "runtime.native.System": "4.3.0",
932
- "runtime.native.System.IO.Compression": "4.3.0"
933
- }
934
- },
935
- "System.IO.Compression.ZipFile": {
936
- "type": "Transitive",
937
- "resolved": "4.3.0",
938
- "contentHash": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
939
- "dependencies": {
940
- "System.Buffers": "4.3.0",
941
- "System.IO": "4.3.0",
942
- "System.IO.Compression": "4.3.0",
943
- "System.IO.FileSystem": "4.3.0",
944
- "System.IO.FileSystem.Primitives": "4.3.0",
945
- "System.Resources.ResourceManager": "4.3.0",
946
- "System.Runtime": "4.3.0",
947
- "System.Runtime.Extensions": "4.3.0",
948
- "System.Text.Encoding": "4.3.0"
949
- }
950
- },
951
- "System.IO.FileSystem": {
952
- "type": "Transitive",
953
- "resolved": "4.3.0",
954
- "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
955
- "dependencies": {
956
- "Microsoft.NETCore.Platforms": "1.1.0",
957
- "Microsoft.NETCore.Targets": "1.1.0",
958
- "System.IO": "4.3.0",
959
- "System.IO.FileSystem.Primitives": "4.3.0",
960
- "System.Runtime": "4.3.0",
961
- "System.Runtime.Handles": "4.3.0",
962
- "System.Text.Encoding": "4.3.0",
963
- "System.Threading.Tasks": "4.3.0"
964
- }
965
- },
966
- "System.IO.FileSystem.Primitives": {
967
- "type": "Transitive",
968
- "resolved": "4.3.0",
969
- "contentHash": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
970
- "dependencies": {
971
- "System.Runtime": "4.3.0"
972
- }
973
- },
974
- "System.IO.Pipelines": {
975
- "type": "Transitive",
976
- "resolved": "6.0.3",
977
- "contentHash": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw=="
978
- },
979
- "System.Linq": {
980
- "type": "Transitive",
981
- "resolved": "4.3.0",
982
- "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
983
- "dependencies": {
984
- "System.Collections": "4.3.0",
985
- "System.Diagnostics.Debug": "4.3.0",
986
- "System.Resources.ResourceManager": "4.3.0",
987
- "System.Runtime": "4.3.0",
988
- "System.Runtime.Extensions": "4.3.0"
989
- }
990
- },
991
- "System.Linq.Expressions": {
992
- "type": "Transitive",
993
- "resolved": "4.3.0",
994
- "contentHash": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
995
- "dependencies": {
996
- "System.Collections": "4.3.0",
997
- "System.Diagnostics.Debug": "4.3.0",
998
- "System.Globalization": "4.3.0",
999
- "System.IO": "4.3.0",
1000
- "System.Linq": "4.3.0",
1001
- "System.ObjectModel": "4.3.0",
1002
- "System.Reflection": "4.3.0",
1003
- "System.Reflection.Emit": "4.3.0",
1004
- "System.Reflection.Emit.ILGeneration": "4.3.0",
1005
- "System.Reflection.Emit.Lightweight": "4.3.0",
1006
- "System.Reflection.Extensions": "4.3.0",
1007
- "System.Reflection.Primitives": "4.3.0",
1008
- "System.Reflection.TypeExtensions": "4.3.0",
1009
- "System.Resources.ResourceManager": "4.3.0",
1010
- "System.Runtime": "4.3.0",
1011
- "System.Runtime.Extensions": "4.3.0",
1012
- "System.Threading": "4.3.0"
1013
- }
1014
- },
1015
- "System.Memory": {
1016
- "type": "Transitive",
1017
- "resolved": "4.5.4",
1018
- "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw=="
1019
- },
1020
- "System.Net.Http": {
1021
- "type": "Transitive",
1022
- "resolved": "4.3.0",
1023
- "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
1024
- "dependencies": {
1025
- "Microsoft.NETCore.Platforms": "1.1.0",
1026
- "System.Collections": "4.3.0",
1027
- "System.Diagnostics.Debug": "4.3.0",
1028
- "System.Diagnostics.DiagnosticSource": "4.3.0",
1029
- "System.Diagnostics.Tracing": "4.3.0",
1030
- "System.Globalization": "4.3.0",
1031
- "System.Globalization.Extensions": "4.3.0",
1032
- "System.IO": "4.3.0",
1033
- "System.IO.FileSystem": "4.3.0",
1034
- "System.Net.Primitives": "4.3.0",
1035
- "System.Resources.ResourceManager": "4.3.0",
1036
- "System.Runtime": "4.3.0",
1037
- "System.Runtime.Extensions": "4.3.0",
1038
- "System.Runtime.Handles": "4.3.0",
1039
- "System.Runtime.InteropServices": "4.3.0",
1040
- "System.Security.Cryptography.Algorithms": "4.3.0",
1041
- "System.Security.Cryptography.Encoding": "4.3.0",
1042
- "System.Security.Cryptography.OpenSsl": "4.3.0",
1043
- "System.Security.Cryptography.Primitives": "4.3.0",
1044
- "System.Security.Cryptography.X509Certificates": "4.3.0",
1045
- "System.Text.Encoding": "4.3.0",
1046
- "System.Threading": "4.3.0",
1047
- "System.Threading.Tasks": "4.3.0",
1048
- "runtime.native.System": "4.3.0",
1049
- "runtime.native.System.Net.Http": "4.3.0",
1050
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1051
- }
1052
- },
1053
- "System.Net.Primitives": {
1054
- "type": "Transitive",
1055
- "resolved": "4.3.0",
1056
- "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
1057
- "dependencies": {
1058
- "Microsoft.NETCore.Platforms": "1.1.0",
1059
- "Microsoft.NETCore.Targets": "1.1.0",
1060
- "System.Runtime": "4.3.0",
1061
- "System.Runtime.Handles": "4.3.0"
1062
- }
1063
- },
1064
- "System.Net.Sockets": {
1065
- "type": "Transitive",
1066
- "resolved": "4.3.0",
1067
- "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
1068
- "dependencies": {
1069
- "Microsoft.NETCore.Platforms": "1.1.0",
1070
- "Microsoft.NETCore.Targets": "1.1.0",
1071
- "System.IO": "4.3.0",
1072
- "System.Net.Primitives": "4.3.0",
1073
- "System.Runtime": "4.3.0",
1074
- "System.Threading.Tasks": "4.3.0"
1075
- }
1076
- },
1077
- "System.ObjectModel": {
1078
- "type": "Transitive",
1079
- "resolved": "4.3.0",
1080
- "contentHash": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
1081
- "dependencies": {
1082
- "System.Collections": "4.3.0",
1083
- "System.Diagnostics.Debug": "4.3.0",
1084
- "System.Resources.ResourceManager": "4.3.0",
1085
- "System.Runtime": "4.3.0",
1086
- "System.Threading": "4.3.0"
1087
- }
1088
- },
1089
- "System.Reflection": {
1090
- "type": "Transitive",
1091
- "resolved": "4.3.0",
1092
- "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
1093
- "dependencies": {
1094
- "Microsoft.NETCore.Platforms": "1.1.0",
1095
- "Microsoft.NETCore.Targets": "1.1.0",
1096
- "System.IO": "4.3.0",
1097
- "System.Reflection.Primitives": "4.3.0",
1098
- "System.Runtime": "4.3.0"
1099
- }
1100
- },
1101
- "System.Reflection.Emit": {
1102
- "type": "Transitive",
1103
- "resolved": "4.3.0",
1104
- "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
1105
- "dependencies": {
1106
- "System.IO": "4.3.0",
1107
- "System.Reflection": "4.3.0",
1108
- "System.Reflection.Emit.ILGeneration": "4.3.0",
1109
- "System.Reflection.Primitives": "4.3.0",
1110
- "System.Runtime": "4.3.0"
1111
- }
1112
- },
1113
- "System.Reflection.Emit.ILGeneration": {
1114
- "type": "Transitive",
1115
- "resolved": "4.3.0",
1116
- "contentHash": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
1117
- "dependencies": {
1118
- "System.Reflection": "4.3.0",
1119
- "System.Reflection.Primitives": "4.3.0",
1120
- "System.Runtime": "4.3.0"
1121
- }
1122
- },
1123
- "System.Reflection.Emit.Lightweight": {
1124
- "type": "Transitive",
1125
- "resolved": "4.3.0",
1126
- "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
1127
- "dependencies": {
1128
- "System.Reflection": "4.3.0",
1129
- "System.Reflection.Emit.ILGeneration": "4.3.0",
1130
- "System.Reflection.Primitives": "4.3.0",
1131
- "System.Runtime": "4.3.0"
1132
- }
1133
- },
1134
- "System.Reflection.Extensions": {
1135
- "type": "Transitive",
1136
- "resolved": "4.3.0",
1137
- "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
1138
- "dependencies": {
1139
- "Microsoft.NETCore.Platforms": "1.1.0",
1140
- "Microsoft.NETCore.Targets": "1.1.0",
1141
- "System.Reflection": "4.3.0",
1142
- "System.Runtime": "4.3.0"
1143
- }
1144
- },
1145
- "System.Reflection.Metadata": {
1146
- "type": "Transitive",
1147
- "resolved": "5.0.0",
1148
- "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ=="
1149
- },
1150
- "System.Reflection.Primitives": {
1151
- "type": "Transitive",
1152
- "resolved": "4.3.0",
1153
- "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
1154
- "dependencies": {
1155
- "Microsoft.NETCore.Platforms": "1.1.0",
1156
- "Microsoft.NETCore.Targets": "1.1.0",
1157
- "System.Runtime": "4.3.0"
1158
- }
1159
- },
1160
- "System.Reflection.TypeExtensions": {
1161
- "type": "Transitive",
1162
- "resolved": "4.3.0",
1163
- "contentHash": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
1164
- "dependencies": {
1165
- "System.Reflection": "4.3.0",
1166
- "System.Runtime": "4.3.0"
1167
- }
1168
- },
1169
- "System.Resources.ResourceManager": {
1170
- "type": "Transitive",
1171
- "resolved": "4.3.0",
1172
- "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
1173
- "dependencies": {
1174
- "Microsoft.NETCore.Platforms": "1.1.0",
1175
- "Microsoft.NETCore.Targets": "1.1.0",
1176
- "System.Globalization": "4.3.0",
1177
- "System.Reflection": "4.3.0",
1178
- "System.Runtime": "4.3.0"
1179
- }
1180
- },
1181
- "System.Runtime": {
1182
- "type": "Transitive",
1183
- "resolved": "4.3.0",
1184
- "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
1185
- "dependencies": {
1186
- "Microsoft.NETCore.Platforms": "1.1.0",
1187
- "Microsoft.NETCore.Targets": "1.1.0"
1188
- }
1189
- },
1190
- "System.Runtime.CompilerServices.Unsafe": {
1191
- "type": "Transitive",
1192
- "resolved": "6.0.0",
1193
- "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg=="
1194
- },
1195
- "System.Runtime.Extensions": {
1196
- "type": "Transitive",
1197
- "resolved": "4.3.0",
1198
- "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
1199
- "dependencies": {
1200
- "Microsoft.NETCore.Platforms": "1.1.0",
1201
- "Microsoft.NETCore.Targets": "1.1.0",
1202
- "System.Runtime": "4.3.0"
1203
- }
1204
- },
1205
- "System.Runtime.Handles": {
1206
- "type": "Transitive",
1207
- "resolved": "4.3.0",
1208
- "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
1209
- "dependencies": {
1210
- "Microsoft.NETCore.Platforms": "1.1.0",
1211
- "Microsoft.NETCore.Targets": "1.1.0",
1212
- "System.Runtime": "4.3.0"
1213
- }
1214
- },
1215
- "System.Runtime.InteropServices": {
1216
- "type": "Transitive",
1217
- "resolved": "4.3.0",
1218
- "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
1219
- "dependencies": {
1220
- "Microsoft.NETCore.Platforms": "1.1.0",
1221
- "Microsoft.NETCore.Targets": "1.1.0",
1222
- "System.Reflection": "4.3.0",
1223
- "System.Reflection.Primitives": "4.3.0",
1224
- "System.Runtime": "4.3.0",
1225
- "System.Runtime.Handles": "4.3.0"
1226
- }
1227
- },
1228
- "System.Runtime.InteropServices.RuntimeInformation": {
1229
- "type": "Transitive",
1230
- "resolved": "4.3.0",
1231
- "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
1232
- "dependencies": {
1233
- "System.Reflection": "4.3.0",
1234
- "System.Reflection.Extensions": "4.3.0",
1235
- "System.Resources.ResourceManager": "4.3.0",
1236
- "System.Runtime": "4.3.0",
1237
- "System.Runtime.InteropServices": "4.3.0",
1238
- "System.Threading": "4.3.0",
1239
- "runtime.native.System": "4.3.0"
1240
- }
1241
- },
1242
- "System.Runtime.Numerics": {
1243
- "type": "Transitive",
1244
- "resolved": "4.3.0",
1245
- "contentHash": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
1246
- "dependencies": {
1247
- "System.Globalization": "4.3.0",
1248
- "System.Resources.ResourceManager": "4.3.0",
1249
- "System.Runtime": "4.3.0",
1250
- "System.Runtime.Extensions": "4.3.0"
1251
- }
1252
- },
1253
- "System.Security.Cryptography.Algorithms": {
1254
- "type": "Transitive",
1255
- "resolved": "4.3.0",
1256
- "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
1257
- "dependencies": {
1258
- "Microsoft.NETCore.Platforms": "1.1.0",
1259
- "System.Collections": "4.3.0",
1260
- "System.IO": "4.3.0",
1261
- "System.Resources.ResourceManager": "4.3.0",
1262
- "System.Runtime": "4.3.0",
1263
- "System.Runtime.Extensions": "4.3.0",
1264
- "System.Runtime.Handles": "4.3.0",
1265
- "System.Runtime.InteropServices": "4.3.0",
1266
- "System.Runtime.Numerics": "4.3.0",
1267
- "System.Security.Cryptography.Encoding": "4.3.0",
1268
- "System.Security.Cryptography.Primitives": "4.3.0",
1269
- "System.Text.Encoding": "4.3.0",
1270
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
1271
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1272
- }
1273
- },
1274
- "System.Security.Cryptography.Cng": {
1275
- "type": "Transitive",
1276
- "resolved": "4.3.0",
1277
- "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
1278
- "dependencies": {
1279
- "Microsoft.NETCore.Platforms": "1.1.0",
1280
- "System.IO": "4.3.0",
1281
- "System.Resources.ResourceManager": "4.3.0",
1282
- "System.Runtime": "4.3.0",
1283
- "System.Runtime.Extensions": "4.3.0",
1284
- "System.Runtime.Handles": "4.3.0",
1285
- "System.Runtime.InteropServices": "4.3.0",
1286
- "System.Security.Cryptography.Algorithms": "4.3.0",
1287
- "System.Security.Cryptography.Encoding": "4.3.0",
1288
- "System.Security.Cryptography.Primitives": "4.3.0",
1289
- "System.Text.Encoding": "4.3.0"
1290
- }
1291
- },
1292
- "System.Security.Cryptography.Csp": {
1293
- "type": "Transitive",
1294
- "resolved": "4.3.0",
1295
- "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
1296
- "dependencies": {
1297
- "Microsoft.NETCore.Platforms": "1.1.0",
1298
- "System.IO": "4.3.0",
1299
- "System.Reflection": "4.3.0",
1300
- "System.Resources.ResourceManager": "4.3.0",
1301
- "System.Runtime": "4.3.0",
1302
- "System.Runtime.Extensions": "4.3.0",
1303
- "System.Runtime.Handles": "4.3.0",
1304
- "System.Runtime.InteropServices": "4.3.0",
1305
- "System.Security.Cryptography.Algorithms": "4.3.0",
1306
- "System.Security.Cryptography.Encoding": "4.3.0",
1307
- "System.Security.Cryptography.Primitives": "4.3.0",
1308
- "System.Text.Encoding": "4.3.0",
1309
- "System.Threading": "4.3.0"
1310
- }
1311
- },
1312
- "System.Security.Cryptography.Encoding": {
1313
- "type": "Transitive",
1314
- "resolved": "4.3.0",
1315
- "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
1316
- "dependencies": {
1317
- "Microsoft.NETCore.Platforms": "1.1.0",
1318
- "System.Collections": "4.3.0",
1319
- "System.Collections.Concurrent": "4.3.0",
1320
- "System.Linq": "4.3.0",
1321
- "System.Resources.ResourceManager": "4.3.0",
1322
- "System.Runtime": "4.3.0",
1323
- "System.Runtime.Extensions": "4.3.0",
1324
- "System.Runtime.Handles": "4.3.0",
1325
- "System.Runtime.InteropServices": "4.3.0",
1326
- "System.Security.Cryptography.Primitives": "4.3.0",
1327
- "System.Text.Encoding": "4.3.0",
1328
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1329
- }
1330
- },
1331
- "System.Security.Cryptography.OpenSsl": {
1332
- "type": "Transitive",
1333
- "resolved": "4.3.0",
1334
- "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
1335
- "dependencies": {
1336
- "System.Collections": "4.3.0",
1337
- "System.IO": "4.3.0",
1338
- "System.Resources.ResourceManager": "4.3.0",
1339
- "System.Runtime": "4.3.0",
1340
- "System.Runtime.Extensions": "4.3.0",
1341
- "System.Runtime.Handles": "4.3.0",
1342
- "System.Runtime.InteropServices": "4.3.0",
1343
- "System.Runtime.Numerics": "4.3.0",
1344
- "System.Security.Cryptography.Algorithms": "4.3.0",
1345
- "System.Security.Cryptography.Encoding": "4.3.0",
1346
- "System.Security.Cryptography.Primitives": "4.3.0",
1347
- "System.Text.Encoding": "4.3.0",
1348
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1349
- }
1350
- },
1351
- "System.Security.Cryptography.Primitives": {
1352
- "type": "Transitive",
1353
- "resolved": "4.3.0",
1354
- "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
1355
- "dependencies": {
1356
- "System.Diagnostics.Debug": "4.3.0",
1357
- "System.Globalization": "4.3.0",
1358
- "System.IO": "4.3.0",
1359
- "System.Resources.ResourceManager": "4.3.0",
1360
- "System.Runtime": "4.3.0",
1361
- "System.Threading": "4.3.0",
1362
- "System.Threading.Tasks": "4.3.0"
1363
- }
1364
- },
1365
- "System.Security.Cryptography.X509Certificates": {
1366
- "type": "Transitive",
1367
- "resolved": "4.3.0",
1368
- "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
1369
- "dependencies": {
1370
- "Microsoft.NETCore.Platforms": "1.1.0",
1371
- "System.Collections": "4.3.0",
1372
- "System.Diagnostics.Debug": "4.3.0",
1373
- "System.Globalization": "4.3.0",
1374
- "System.Globalization.Calendars": "4.3.0",
1375
- "System.IO": "4.3.0",
1376
- "System.IO.FileSystem": "4.3.0",
1377
- "System.IO.FileSystem.Primitives": "4.3.0",
1378
- "System.Resources.ResourceManager": "4.3.0",
1379
- "System.Runtime": "4.3.0",
1380
- "System.Runtime.Extensions": "4.3.0",
1381
- "System.Runtime.Handles": "4.3.0",
1382
- "System.Runtime.InteropServices": "4.3.0",
1383
- "System.Runtime.Numerics": "4.3.0",
1384
- "System.Security.Cryptography.Algorithms": "4.3.0",
1385
- "System.Security.Cryptography.Cng": "4.3.0",
1386
- "System.Security.Cryptography.Csp": "4.3.0",
1387
- "System.Security.Cryptography.Encoding": "4.3.0",
1388
- "System.Security.Cryptography.OpenSsl": "4.3.0",
1389
- "System.Security.Cryptography.Primitives": "4.3.0",
1390
- "System.Text.Encoding": "4.3.0",
1391
- "System.Threading": "4.3.0",
1392
- "runtime.native.System": "4.3.0",
1393
- "runtime.native.System.Net.Http": "4.3.0",
1394
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1395
- }
1396
- },
1397
- "System.Text.Encoding": {
1398
- "type": "Transitive",
1399
- "resolved": "4.3.0",
1400
- "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
1401
- "dependencies": {
1402
- "Microsoft.NETCore.Platforms": "1.1.0",
1403
- "Microsoft.NETCore.Targets": "1.1.0",
1404
- "System.Runtime": "4.3.0"
1405
- }
1406
- },
1407
- "System.Text.Encoding.CodePages": {
1408
- "type": "Transitive",
1409
- "resolved": "6.0.0",
1410
- "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
1411
- "dependencies": {
1412
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
1413
- }
1414
- },
1415
- "System.Text.Encoding.Extensions": {
1416
- "type": "Transitive",
1417
- "resolved": "4.3.0",
1418
- "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
1419
- "dependencies": {
1420
- "Microsoft.NETCore.Platforms": "1.1.0",
1421
- "Microsoft.NETCore.Targets": "1.1.0",
1422
- "System.Runtime": "4.3.0",
1423
- "System.Text.Encoding": "4.3.0"
1424
- }
1425
- },
1426
- "System.Text.RegularExpressions": {
1427
- "type": "Transitive",
1428
- "resolved": "4.3.0",
1429
- "contentHash": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
1430
- "dependencies": {
1431
- "System.Runtime": "4.3.0"
1432
- }
1433
- },
1434
- "System.Threading": {
1435
- "type": "Transitive",
1436
- "resolved": "4.3.0",
1437
- "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
1438
- "dependencies": {
1439
- "System.Runtime": "4.3.0",
1440
- "System.Threading.Tasks": "4.3.0"
1441
- }
1442
- },
1443
- "System.Threading.Tasks": {
1444
- "type": "Transitive",
1445
- "resolved": "4.3.0",
1446
- "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
1447
- "dependencies": {
1448
- "Microsoft.NETCore.Platforms": "1.1.0",
1449
- "Microsoft.NETCore.Targets": "1.1.0",
1450
- "System.Runtime": "4.3.0"
1451
- }
1452
- },
1453
- "System.Threading.Tasks.Extensions": {
1454
- "type": "Transitive",
1455
- "resolved": "4.5.4",
1456
- "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
1457
- },
1458
- "System.Threading.Timer": {
1459
- "type": "Transitive",
1460
- "resolved": "4.3.0",
1461
- "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
1462
- "dependencies": {
1463
- "Microsoft.NETCore.Platforms": "1.1.0",
1464
- "Microsoft.NETCore.Targets": "1.1.0",
1465
- "System.Runtime": "4.3.0"
1466
- }
1467
- },
1468
- "System.Xml.ReaderWriter": {
1469
- "type": "Transitive",
1470
- "resolved": "4.3.0",
1471
- "contentHash": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
1472
- "dependencies": {
1473
- "System.Collections": "4.3.0",
1474
- "System.Diagnostics.Debug": "4.3.0",
1475
- "System.Globalization": "4.3.0",
1476
- "System.IO": "4.3.0",
1477
- "System.IO.FileSystem": "4.3.0",
1478
- "System.IO.FileSystem.Primitives": "4.3.0",
1479
- "System.Resources.ResourceManager": "4.3.0",
1480
- "System.Runtime": "4.3.0",
1481
- "System.Runtime.Extensions": "4.3.0",
1482
- "System.Runtime.InteropServices": "4.3.0",
1483
- "System.Text.Encoding": "4.3.0",
1484
- "System.Text.Encoding.Extensions": "4.3.0",
1485
- "System.Text.RegularExpressions": "4.3.0",
1486
- "System.Threading.Tasks": "4.3.0",
1487
- "System.Threading.Tasks.Extensions": "4.3.0"
1488
- }
1489
- },
1490
- "System.Xml.XDocument": {
1491
- "type": "Transitive",
1492
- "resolved": "4.3.0",
1493
- "contentHash": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
1494
- "dependencies": {
1495
- "System.Collections": "4.3.0",
1496
- "System.Diagnostics.Debug": "4.3.0",
1497
- "System.Diagnostics.Tools": "4.3.0",
1498
- "System.Globalization": "4.3.0",
1499
- "System.IO": "4.3.0",
1500
- "System.Reflection": "4.3.0",
1501
- "System.Resources.ResourceManager": "4.3.0",
1502
- "System.Runtime": "4.3.0",
1503
- "System.Runtime.Extensions": "4.3.0",
1504
- "System.Text.Encoding": "4.3.0",
1505
- "System.Threading": "4.3.0",
1506
- "System.Xml.ReaderWriter": "4.3.0"
1507
- }
1508
- }
1509
- },
1510
- "net6.0/win-x64": {
1511
- "Microsoft.Win32.Primitives": {
1512
- "type": "Transitive",
1513
- "resolved": "4.3.0",
1514
- "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
1515
- "dependencies": {
1516
- "Microsoft.NETCore.Platforms": "1.1.0",
1517
- "Microsoft.NETCore.Targets": "1.1.0",
1518
- "System.Runtime": "4.3.0",
1519
- "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
1520
- }
1521
- },
1522
- "runtime.any.System.Collections": {
1523
- "type": "Transitive",
1524
- "resolved": "4.3.0",
1525
- "contentHash": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
1526
- "dependencies": {
1527
- "System.Runtime": "4.3.0"
1528
- }
1529
- },
1530
- "runtime.any.System.Diagnostics.Tools": {
1531
- "type": "Transitive",
1532
- "resolved": "4.3.0",
1533
- "contentHash": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg=="
1534
- },
1535
- "runtime.any.System.Diagnostics.Tracing": {
1536
- "type": "Transitive",
1537
- "resolved": "4.3.0",
1538
- "contentHash": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ=="
1539
- },
1540
- "runtime.any.System.Globalization": {
1541
- "type": "Transitive",
1542
- "resolved": "4.3.0",
1543
- "contentHash": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw=="
1544
- },
1545
- "runtime.any.System.Globalization.Calendars": {
1546
- "type": "Transitive",
1547
- "resolved": "4.3.0",
1548
- "contentHash": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w=="
1549
- },
1550
- "runtime.any.System.IO": {
1551
- "type": "Transitive",
1552
- "resolved": "4.3.0",
1553
- "contentHash": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ=="
1554
- },
1555
- "runtime.any.System.Reflection": {
1556
- "type": "Transitive",
1557
- "resolved": "4.3.0",
1558
- "contentHash": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ=="
1559
- },
1560
- "runtime.any.System.Reflection.Extensions": {
1561
- "type": "Transitive",
1562
- "resolved": "4.3.0",
1563
- "contentHash": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA=="
1564
- },
1565
- "runtime.any.System.Reflection.Primitives": {
1566
- "type": "Transitive",
1567
- "resolved": "4.3.0",
1568
- "contentHash": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg=="
1569
- },
1570
- "runtime.any.System.Resources.ResourceManager": {
1571
- "type": "Transitive",
1572
- "resolved": "4.3.0",
1573
- "contentHash": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ=="
1574
- },
1575
- "runtime.any.System.Runtime": {
1576
- "type": "Transitive",
1577
- "resolved": "4.3.0",
1578
- "contentHash": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
1579
- "dependencies": {
1580
- "System.Private.Uri": "4.3.0"
1581
- }
1582
- },
1583
- "runtime.any.System.Runtime.Handles": {
1584
- "type": "Transitive",
1585
- "resolved": "4.3.0",
1586
- "contentHash": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ=="
1587
- },
1588
- "runtime.any.System.Runtime.InteropServices": {
1589
- "type": "Transitive",
1590
- "resolved": "4.3.0",
1591
- "contentHash": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw=="
1592
- },
1593
- "runtime.any.System.Text.Encoding": {
1594
- "type": "Transitive",
1595
- "resolved": "4.3.0",
1596
- "contentHash": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ=="
1597
- },
1598
- "runtime.any.System.Text.Encoding.Extensions": {
1599
- "type": "Transitive",
1600
- "resolved": "4.3.0",
1601
- "contentHash": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg=="
1602
- },
1603
- "runtime.any.System.Threading.Tasks": {
1604
- "type": "Transitive",
1605
- "resolved": "4.3.0",
1606
- "contentHash": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w=="
1607
- },
1608
- "runtime.any.System.Threading.Timer": {
1609
- "type": "Transitive",
1610
- "resolved": "4.3.0",
1611
- "contentHash": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w=="
1612
- },
1613
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1614
- "type": "Transitive",
1615
- "resolved": "4.3.0",
1616
- "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
1617
- },
1618
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1619
- "type": "Transitive",
1620
- "resolved": "4.3.0",
1621
- "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
1622
- },
1623
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1624
- "type": "Transitive",
1625
- "resolved": "4.3.0",
1626
- "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
1627
- },
1628
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1629
- "type": "Transitive",
1630
- "resolved": "4.3.0",
1631
- "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
1632
- },
1633
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1634
- "type": "Transitive",
1635
- "resolved": "4.3.0",
1636
- "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
1637
- },
1638
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
1639
- "type": "Transitive",
1640
- "resolved": "4.3.0",
1641
- "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
1642
- },
1643
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1644
- "type": "Transitive",
1645
- "resolved": "4.3.0",
1646
- "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
1647
- },
1648
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1649
- "type": "Transitive",
1650
- "resolved": "4.3.0",
1651
- "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
1652
- },
1653
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1654
- "type": "Transitive",
1655
- "resolved": "4.3.0",
1656
- "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
1657
- },
1658
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1659
- "type": "Transitive",
1660
- "resolved": "4.3.0",
1661
- "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
1662
- },
1663
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1664
- "type": "Transitive",
1665
- "resolved": "4.3.0",
1666
- "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
1667
- },
1668
- "runtime.win.Microsoft.Win32.Primitives": {
1669
- "type": "Transitive",
1670
- "resolved": "4.3.0",
1671
- "contentHash": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
1672
- "dependencies": {
1673
- "System.Runtime": "4.3.0",
1674
- "System.Runtime.InteropServices": "4.3.0"
1675
- }
1676
- },
1677
- "runtime.win.System.Console": {
1678
- "type": "Transitive",
1679
- "resolved": "4.3.1",
1680
- "contentHash": "vHPXC3B18dxhyipVce8xQT1MQv1o5srYZqBlCNu9p9MNjhgGOntdQh/Xh2X4o7M2F839YUcQiGwu8Q498FyDjg==",
1681
- "dependencies": {
1682
- "System.IO": "4.3.0",
1683
- "System.IO.FileSystem.Primitives": "4.3.0",
1684
- "System.Resources.ResourceManager": "4.3.0",
1685
- "System.Runtime": "4.3.0",
1686
- "System.Runtime.InteropServices": "4.3.0",
1687
- "System.Text.Encoding": "4.3.0",
1688
- "System.Text.Encoding.Extensions": "4.3.0",
1689
- "System.Threading": "4.3.0",
1690
- "System.Threading.Tasks": "4.3.0"
1691
- }
1692
- },
1693
- "runtime.win.System.Diagnostics.Debug": {
1694
- "type": "Transitive",
1695
- "resolved": "4.3.0",
1696
- "contentHash": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g=="
1697
- },
1698
- "runtime.win.System.IO.FileSystem": {
1699
- "type": "Transitive",
1700
- "resolved": "4.3.0",
1701
- "contentHash": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
1702
- "dependencies": {
1703
- "System.Buffers": "4.3.0",
1704
- "System.Collections": "4.3.0",
1705
- "System.Diagnostics.Debug": "4.3.0",
1706
- "System.IO": "4.3.0",
1707
- "System.IO.FileSystem.Primitives": "4.3.0",
1708
- "System.Resources.ResourceManager": "4.3.0",
1709
- "System.Runtime": "4.3.0",
1710
- "System.Runtime.Extensions": "4.3.0",
1711
- "System.Runtime.Handles": "4.3.0",
1712
- "System.Runtime.InteropServices": "4.3.0",
1713
- "System.Text.Encoding": "4.3.0",
1714
- "System.Text.Encoding.Extensions": "4.3.0",
1715
- "System.Threading": "4.3.0",
1716
- "System.Threading.Overlapped": "4.3.0",
1717
- "System.Threading.Tasks": "4.3.0"
1718
- }
1719
- },
1720
- "runtime.win.System.Net.Primitives": {
1721
- "type": "Transitive",
1722
- "resolved": "4.3.0",
1723
- "contentHash": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
1724
- "dependencies": {
1725
- "Microsoft.Win32.Primitives": "4.3.0",
1726
- "System.Collections": "4.3.0",
1727
- "System.Diagnostics.Tracing": "4.3.0",
1728
- "System.Globalization": "4.3.0",
1729
- "System.Resources.ResourceManager": "4.3.0",
1730
- "System.Runtime": "4.3.0",
1731
- "System.Runtime.Extensions": "4.3.0",
1732
- "System.Runtime.Handles": "4.3.0",
1733
- "System.Runtime.InteropServices": "4.3.0",
1734
- "System.Threading": "4.3.0"
1735
- }
1736
- },
1737
- "runtime.win.System.Net.Sockets": {
1738
- "type": "Transitive",
1739
- "resolved": "4.3.0",
1740
- "contentHash": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
1741
- "dependencies": {
1742
- "System.Collections": "4.3.0",
1743
- "System.Diagnostics.Debug": "4.3.0",
1744
- "System.Diagnostics.Tracing": "4.3.0",
1745
- "System.Globalization": "4.3.0",
1746
- "System.IO": "4.3.0",
1747
- "System.IO.FileSystem": "4.3.0",
1748
- "System.IO.FileSystem.Primitives": "4.3.0",
1749
- "System.Net.NameResolution": "4.3.0",
1750
- "System.Net.Primitives": "4.3.0",
1751
- "System.Resources.ResourceManager": "4.3.0",
1752
- "System.Runtime": "4.3.0",
1753
- "System.Runtime.Extensions": "4.3.0",
1754
- "System.Runtime.Handles": "4.3.0",
1755
- "System.Runtime.InteropServices": "4.3.0",
1756
- "System.Security.Principal.Windows": "4.3.0",
1757
- "System.Threading": "4.3.0",
1758
- "System.Threading.Overlapped": "4.3.0",
1759
- "System.Threading.Tasks": "4.3.0"
1760
- }
1761
- },
1762
- "runtime.win.System.Runtime.Extensions": {
1763
- "type": "Transitive",
1764
- "resolved": "4.3.0",
1765
- "contentHash": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
1766
- "dependencies": {
1767
- "System.Private.Uri": "4.3.0"
1768
- }
1769
- },
1770
- "System.Buffers": {
1771
- "type": "Transitive",
1772
- "resolved": "4.3.0",
1773
- "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
1774
- "dependencies": {
1775
- "System.Diagnostics.Debug": "4.3.0",
1776
- "System.Diagnostics.Tracing": "4.3.0",
1777
- "System.Resources.ResourceManager": "4.3.0",
1778
- "System.Runtime": "4.3.0",
1779
- "System.Threading": "4.3.0"
1780
- }
1781
- },
1782
- "System.Collections": {
1783
- "type": "Transitive",
1784
- "resolved": "4.3.0",
1785
- "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
1786
- "dependencies": {
1787
- "Microsoft.NETCore.Platforms": "1.1.0",
1788
- "Microsoft.NETCore.Targets": "1.1.0",
1789
- "System.Runtime": "4.3.0",
1790
- "runtime.any.System.Collections": "4.3.0"
1791
- }
1792
- },
1793
- "System.Console": {
1794
- "type": "Transitive",
1795
- "resolved": "4.3.0",
1796
- "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
1797
- "dependencies": {
1798
- "Microsoft.NETCore.Platforms": "1.1.0",
1799
- "Microsoft.NETCore.Targets": "1.1.0",
1800
- "System.IO": "4.3.0",
1801
- "System.Runtime": "4.3.0",
1802
- "System.Text.Encoding": "4.3.0",
1803
- "runtime.win.System.Console": "4.3.1"
1804
- }
1805
- },
1806
- "System.Diagnostics.Debug": {
1807
- "type": "Transitive",
1808
- "resolved": "4.3.0",
1809
- "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
1810
- "dependencies": {
1811
- "Microsoft.NETCore.Platforms": "1.1.0",
1812
- "Microsoft.NETCore.Targets": "1.1.0",
1813
- "System.Runtime": "4.3.0",
1814
- "runtime.win.System.Diagnostics.Debug": "4.3.0"
1815
- }
1816
- },
1817
- "System.Diagnostics.Tools": {
1818
- "type": "Transitive",
1819
- "resolved": "4.3.0",
1820
- "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
1821
- "dependencies": {
1822
- "Microsoft.NETCore.Platforms": "1.1.0",
1823
- "Microsoft.NETCore.Targets": "1.1.0",
1824
- "System.Runtime": "4.3.0",
1825
- "runtime.any.System.Diagnostics.Tools": "4.3.0"
1826
- }
1827
- },
1828
- "System.Diagnostics.Tracing": {
1829
- "type": "Transitive",
1830
- "resolved": "4.3.0",
1831
- "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
1832
- "dependencies": {
1833
- "Microsoft.NETCore.Platforms": "1.1.0",
1834
- "Microsoft.NETCore.Targets": "1.1.0",
1835
- "System.Runtime": "4.3.0",
1836
- "runtime.any.System.Diagnostics.Tracing": "4.3.0"
1837
- }
1838
- },
1839
- "System.Globalization": {
1840
- "type": "Transitive",
1841
- "resolved": "4.3.0",
1842
- "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
1843
- "dependencies": {
1844
- "Microsoft.NETCore.Platforms": "1.1.0",
1845
- "Microsoft.NETCore.Targets": "1.1.0",
1846
- "System.Runtime": "4.3.0",
1847
- "runtime.any.System.Globalization": "4.3.0"
1848
- }
1849
- },
1850
- "System.Globalization.Calendars": {
1851
- "type": "Transitive",
1852
- "resolved": "4.3.0",
1853
- "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
1854
- "dependencies": {
1855
- "Microsoft.NETCore.Platforms": "1.1.0",
1856
- "Microsoft.NETCore.Targets": "1.1.0",
1857
- "System.Globalization": "4.3.0",
1858
- "System.Runtime": "4.3.0",
1859
- "runtime.any.System.Globalization.Calendars": "4.3.0"
1860
- }
1861
- },
1862
- "System.Globalization.Extensions": {
1863
- "type": "Transitive",
1864
- "resolved": "4.3.0",
1865
- "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
1866
- "dependencies": {
1867
- "Microsoft.NETCore.Platforms": "1.1.0",
1868
- "System.Globalization": "4.3.0",
1869
- "System.Resources.ResourceManager": "4.3.0",
1870
- "System.Runtime": "4.3.0",
1871
- "System.Runtime.Extensions": "4.3.0",
1872
- "System.Runtime.InteropServices": "4.3.0"
1873
- }
1874
- },
1875
- "System.IO": {
1876
- "type": "Transitive",
1877
- "resolved": "4.3.0",
1878
- "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
1879
- "dependencies": {
1880
- "Microsoft.NETCore.Platforms": "1.1.0",
1881
- "Microsoft.NETCore.Targets": "1.1.0",
1882
- "System.Runtime": "4.3.0",
1883
- "System.Text.Encoding": "4.3.0",
1884
- "System.Threading.Tasks": "4.3.0",
1885
- "runtime.any.System.IO": "4.3.0"
1886
- }
1887
- },
1888
- "System.IO.Compression": {
1889
- "type": "Transitive",
1890
- "resolved": "4.3.0",
1891
- "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
1892
- "dependencies": {
1893
- "Microsoft.NETCore.Platforms": "1.1.0",
1894
- "System.Buffers": "4.3.0",
1895
- "System.Collections": "4.3.0",
1896
- "System.Diagnostics.Debug": "4.3.0",
1897
- "System.IO": "4.3.0",
1898
- "System.Resources.ResourceManager": "4.3.0",
1899
- "System.Runtime": "4.3.0",
1900
- "System.Runtime.Extensions": "4.3.0",
1901
- "System.Runtime.Handles": "4.3.0",
1902
- "System.Runtime.InteropServices": "4.3.0",
1903
- "System.Text.Encoding": "4.3.0",
1904
- "System.Threading": "4.3.0",
1905
- "System.Threading.Tasks": "4.3.0",
1906
- "runtime.native.System": "4.3.0",
1907
- "runtime.native.System.IO.Compression": "4.3.0"
1908
- }
1909
- },
1910
- "System.IO.FileSystem": {
1911
- "type": "Transitive",
1912
- "resolved": "4.3.0",
1913
- "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
1914
- "dependencies": {
1915
- "Microsoft.NETCore.Platforms": "1.1.0",
1916
- "Microsoft.NETCore.Targets": "1.1.0",
1917
- "System.IO": "4.3.0",
1918
- "System.IO.FileSystem.Primitives": "4.3.0",
1919
- "System.Runtime": "4.3.0",
1920
- "System.Runtime.Handles": "4.3.0",
1921
- "System.Text.Encoding": "4.3.0",
1922
- "System.Threading.Tasks": "4.3.0",
1923
- "runtime.win.System.IO.FileSystem": "4.3.0"
1924
- }
1925
- },
1926
- "System.Net.Http": {
1927
- "type": "Transitive",
1928
- "resolved": "4.3.0",
1929
- "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
1930
- "dependencies": {
1931
- "Microsoft.NETCore.Platforms": "1.1.0",
1932
- "System.Collections": "4.3.0",
1933
- "System.Diagnostics.Debug": "4.3.0",
1934
- "System.Diagnostics.DiagnosticSource": "4.3.0",
1935
- "System.Diagnostics.Tracing": "4.3.0",
1936
- "System.Globalization": "4.3.0",
1937
- "System.Globalization.Extensions": "4.3.0",
1938
- "System.IO": "4.3.0",
1939
- "System.IO.FileSystem": "4.3.0",
1940
- "System.Net.Primitives": "4.3.0",
1941
- "System.Resources.ResourceManager": "4.3.0",
1942
- "System.Runtime": "4.3.0",
1943
- "System.Runtime.Extensions": "4.3.0",
1944
- "System.Runtime.Handles": "4.3.0",
1945
- "System.Runtime.InteropServices": "4.3.0",
1946
- "System.Security.Cryptography.Algorithms": "4.3.0",
1947
- "System.Security.Cryptography.Encoding": "4.3.0",
1948
- "System.Security.Cryptography.OpenSsl": "4.3.0",
1949
- "System.Security.Cryptography.Primitives": "4.3.0",
1950
- "System.Security.Cryptography.X509Certificates": "4.3.0",
1951
- "System.Text.Encoding": "4.3.0",
1952
- "System.Threading": "4.3.0",
1953
- "System.Threading.Tasks": "4.3.0",
1954
- "runtime.native.System": "4.3.0",
1955
- "runtime.native.System.Net.Http": "4.3.0",
1956
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1957
- }
1958
- },
1959
- "System.Net.NameResolution": {
1960
- "type": "Transitive",
1961
- "resolved": "4.3.0",
1962
- "contentHash": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
1963
- "dependencies": {
1964
- "Microsoft.NETCore.Platforms": "1.1.0",
1965
- "System.Collections": "4.3.0",
1966
- "System.Diagnostics.Tracing": "4.3.0",
1967
- "System.Globalization": "4.3.0",
1968
- "System.Net.Primitives": "4.3.0",
1969
- "System.Resources.ResourceManager": "4.3.0",
1970
- "System.Runtime": "4.3.0",
1971
- "System.Runtime.Extensions": "4.3.0",
1972
- "System.Runtime.Handles": "4.3.0",
1973
- "System.Runtime.InteropServices": "4.3.0",
1974
- "System.Security.Principal.Windows": "4.3.0",
1975
- "System.Threading": "4.3.0",
1976
- "System.Threading.Tasks": "4.3.0",
1977
- "runtime.native.System": "4.3.0"
1978
- }
1979
- },
1980
- "System.Net.Primitives": {
1981
- "type": "Transitive",
1982
- "resolved": "4.3.0",
1983
- "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
1984
- "dependencies": {
1985
- "Microsoft.NETCore.Platforms": "1.1.0",
1986
- "Microsoft.NETCore.Targets": "1.1.0",
1987
- "System.Runtime": "4.3.0",
1988
- "System.Runtime.Handles": "4.3.0",
1989
- "runtime.win.System.Net.Primitives": "4.3.0"
1990
- }
1991
- },
1992
- "System.Net.Sockets": {
1993
- "type": "Transitive",
1994
- "resolved": "4.3.0",
1995
- "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
1996
- "dependencies": {
1997
- "Microsoft.NETCore.Platforms": "1.1.0",
1998
- "Microsoft.NETCore.Targets": "1.1.0",
1999
- "System.IO": "4.3.0",
2000
- "System.Net.Primitives": "4.3.0",
2001
- "System.Runtime": "4.3.0",
2002
- "System.Threading.Tasks": "4.3.0",
2003
- "runtime.win.System.Net.Sockets": "4.3.0"
2004
- }
2005
- },
2006
- "System.Reflection": {
2007
- "type": "Transitive",
2008
- "resolved": "4.3.0",
2009
- "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
2010
- "dependencies": {
2011
- "Microsoft.NETCore.Platforms": "1.1.0",
2012
- "Microsoft.NETCore.Targets": "1.1.0",
2013
- "System.IO": "4.3.0",
2014
- "System.Reflection.Primitives": "4.3.0",
2015
- "System.Runtime": "4.3.0",
2016
- "runtime.any.System.Reflection": "4.3.0"
2017
- }
2018
- },
2019
- "System.Reflection.Extensions": {
2020
- "type": "Transitive",
2021
- "resolved": "4.3.0",
2022
- "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
2023
- "dependencies": {
2024
- "Microsoft.NETCore.Platforms": "1.1.0",
2025
- "Microsoft.NETCore.Targets": "1.1.0",
2026
- "System.Reflection": "4.3.0",
2027
- "System.Runtime": "4.3.0",
2028
- "runtime.any.System.Reflection.Extensions": "4.3.0"
2029
- }
2030
- },
2031
- "System.Reflection.Primitives": {
2032
- "type": "Transitive",
2033
- "resolved": "4.3.0",
2034
- "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
2035
- "dependencies": {
2036
- "Microsoft.NETCore.Platforms": "1.1.0",
2037
- "Microsoft.NETCore.Targets": "1.1.0",
2038
- "System.Runtime": "4.3.0",
2039
- "runtime.any.System.Reflection.Primitives": "4.3.0"
2040
- }
2041
- },
2042
- "System.Resources.ResourceManager": {
2043
- "type": "Transitive",
2044
- "resolved": "4.3.0",
2045
- "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
2046
- "dependencies": {
2047
- "Microsoft.NETCore.Platforms": "1.1.0",
2048
- "Microsoft.NETCore.Targets": "1.1.0",
2049
- "System.Globalization": "4.3.0",
2050
- "System.Reflection": "4.3.0",
2051
- "System.Runtime": "4.3.0",
2052
- "runtime.any.System.Resources.ResourceManager": "4.3.0"
2053
- }
2054
- },
2055
- "System.Runtime": {
2056
- "type": "Transitive",
2057
- "resolved": "4.3.0",
2058
- "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
2059
- "dependencies": {
2060
- "Microsoft.NETCore.Platforms": "1.1.0",
2061
- "Microsoft.NETCore.Targets": "1.1.0",
2062
- "runtime.any.System.Runtime": "4.3.0"
2063
- }
2064
- },
2065
- "System.Runtime.Extensions": {
2066
- "type": "Transitive",
2067
- "resolved": "4.3.0",
2068
- "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
2069
- "dependencies": {
2070
- "Microsoft.NETCore.Platforms": "1.1.0",
2071
- "Microsoft.NETCore.Targets": "1.1.0",
2072
- "System.Runtime": "4.3.0",
2073
- "runtime.win.System.Runtime.Extensions": "4.3.0"
2074
- }
2075
- },
2076
- "System.Runtime.Handles": {
2077
- "type": "Transitive",
2078
- "resolved": "4.3.0",
2079
- "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
2080
- "dependencies": {
2081
- "Microsoft.NETCore.Platforms": "1.1.0",
2082
- "Microsoft.NETCore.Targets": "1.1.0",
2083
- "System.Runtime": "4.3.0",
2084
- "runtime.any.System.Runtime.Handles": "4.3.0"
2085
- }
2086
- },
2087
- "System.Runtime.InteropServices": {
2088
- "type": "Transitive",
2089
- "resolved": "4.3.0",
2090
- "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
2091
- "dependencies": {
2092
- "Microsoft.NETCore.Platforms": "1.1.0",
2093
- "Microsoft.NETCore.Targets": "1.1.0",
2094
- "System.Reflection": "4.3.0",
2095
- "System.Reflection.Primitives": "4.3.0",
2096
- "System.Runtime": "4.3.0",
2097
- "System.Runtime.Handles": "4.3.0",
2098
- "runtime.any.System.Runtime.InteropServices": "4.3.0"
2099
- }
2100
- },
2101
- "System.Runtime.InteropServices.RuntimeInformation": {
2102
- "type": "Transitive",
2103
- "resolved": "4.3.0",
2104
- "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
2105
- "dependencies": {
2106
- "System.Reflection": "4.3.0",
2107
- "System.Reflection.Extensions": "4.3.0",
2108
- "System.Resources.ResourceManager": "4.3.0",
2109
- "System.Runtime": "4.3.0",
2110
- "System.Runtime.InteropServices": "4.3.0",
2111
- "System.Threading": "4.3.0",
2112
- "runtime.native.System": "4.3.0"
2113
- }
2114
- },
2115
- "System.Security.Claims": {
2116
- "type": "Transitive",
2117
- "resolved": "4.3.0",
2118
- "contentHash": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
2119
- "dependencies": {
2120
- "System.Collections": "4.3.0",
2121
- "System.Globalization": "4.3.0",
2122
- "System.IO": "4.3.0",
2123
- "System.Resources.ResourceManager": "4.3.0",
2124
- "System.Runtime": "4.3.0",
2125
- "System.Runtime.Extensions": "4.3.0",
2126
- "System.Security.Principal": "4.3.0"
2127
- }
2128
- },
2129
- "System.Security.Cryptography.Algorithms": {
2130
- "type": "Transitive",
2131
- "resolved": "4.3.0",
2132
- "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
2133
- "dependencies": {
2134
- "Microsoft.NETCore.Platforms": "1.1.0",
2135
- "System.Collections": "4.3.0",
2136
- "System.IO": "4.3.0",
2137
- "System.Resources.ResourceManager": "4.3.0",
2138
- "System.Runtime": "4.3.0",
2139
- "System.Runtime.Extensions": "4.3.0",
2140
- "System.Runtime.Handles": "4.3.0",
2141
- "System.Runtime.InteropServices": "4.3.0",
2142
- "System.Runtime.Numerics": "4.3.0",
2143
- "System.Security.Cryptography.Encoding": "4.3.0",
2144
- "System.Security.Cryptography.Primitives": "4.3.0",
2145
- "System.Text.Encoding": "4.3.0",
2146
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
2147
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2148
- }
2149
- },
2150
- "System.Security.Cryptography.Cng": {
2151
- "type": "Transitive",
2152
- "resolved": "4.3.0",
2153
- "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
2154
- "dependencies": {
2155
- "Microsoft.NETCore.Platforms": "1.1.0",
2156
- "System.IO": "4.3.0",
2157
- "System.Resources.ResourceManager": "4.3.0",
2158
- "System.Runtime": "4.3.0",
2159
- "System.Runtime.Extensions": "4.3.0",
2160
- "System.Runtime.Handles": "4.3.0",
2161
- "System.Runtime.InteropServices": "4.3.0",
2162
- "System.Security.Cryptography.Algorithms": "4.3.0",
2163
- "System.Security.Cryptography.Encoding": "4.3.0",
2164
- "System.Security.Cryptography.Primitives": "4.3.0",
2165
- "System.Text.Encoding": "4.3.0"
2166
- }
2167
- },
2168
- "System.Security.Cryptography.Csp": {
2169
- "type": "Transitive",
2170
- "resolved": "4.3.0",
2171
- "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
2172
- "dependencies": {
2173
- "Microsoft.NETCore.Platforms": "1.1.0",
2174
- "System.IO": "4.3.0",
2175
- "System.Reflection": "4.3.0",
2176
- "System.Resources.ResourceManager": "4.3.0",
2177
- "System.Runtime": "4.3.0",
2178
- "System.Runtime.Extensions": "4.3.0",
2179
- "System.Runtime.Handles": "4.3.0",
2180
- "System.Runtime.InteropServices": "4.3.0",
2181
- "System.Security.Cryptography.Algorithms": "4.3.0",
2182
- "System.Security.Cryptography.Encoding": "4.3.0",
2183
- "System.Security.Cryptography.Primitives": "4.3.0",
2184
- "System.Text.Encoding": "4.3.0",
2185
- "System.Threading": "4.3.0"
2186
- }
2187
- },
2188
- "System.Security.Cryptography.Encoding": {
2189
- "type": "Transitive",
2190
- "resolved": "4.3.0",
2191
- "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
2192
- "dependencies": {
2193
- "Microsoft.NETCore.Platforms": "1.1.0",
2194
- "System.Collections": "4.3.0",
2195
- "System.Collections.Concurrent": "4.3.0",
2196
- "System.Linq": "4.3.0",
2197
- "System.Resources.ResourceManager": "4.3.0",
2198
- "System.Runtime": "4.3.0",
2199
- "System.Runtime.Extensions": "4.3.0",
2200
- "System.Runtime.Handles": "4.3.0",
2201
- "System.Runtime.InteropServices": "4.3.0",
2202
- "System.Security.Cryptography.Primitives": "4.3.0",
2203
- "System.Text.Encoding": "4.3.0",
2204
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2205
- }
2206
- },
2207
- "System.Security.Cryptography.OpenSsl": {
2208
- "type": "Transitive",
2209
- "resolved": "4.3.0",
2210
- "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
2211
- "dependencies": {
2212
- "System.Collections": "4.3.0",
2213
- "System.IO": "4.3.0",
2214
- "System.Resources.ResourceManager": "4.3.0",
2215
- "System.Runtime": "4.3.0",
2216
- "System.Runtime.Extensions": "4.3.0",
2217
- "System.Runtime.Handles": "4.3.0",
2218
- "System.Runtime.InteropServices": "4.3.0",
2219
- "System.Runtime.Numerics": "4.3.0",
2220
- "System.Security.Cryptography.Algorithms": "4.3.0",
2221
- "System.Security.Cryptography.Encoding": "4.3.0",
2222
- "System.Security.Cryptography.Primitives": "4.3.0",
2223
- "System.Text.Encoding": "4.3.0",
2224
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2225
- }
2226
- },
2227
- "System.Security.Cryptography.X509Certificates": {
2228
- "type": "Transitive",
2229
- "resolved": "4.3.0",
2230
- "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
2231
- "dependencies": {
2232
- "Microsoft.NETCore.Platforms": "1.1.0",
2233
- "System.Collections": "4.3.0",
2234
- "System.Diagnostics.Debug": "4.3.0",
2235
- "System.Globalization": "4.3.0",
2236
- "System.Globalization.Calendars": "4.3.0",
2237
- "System.IO": "4.3.0",
2238
- "System.IO.FileSystem": "4.3.0",
2239
- "System.IO.FileSystem.Primitives": "4.3.0",
2240
- "System.Resources.ResourceManager": "4.3.0",
2241
- "System.Runtime": "4.3.0",
2242
- "System.Runtime.Extensions": "4.3.0",
2243
- "System.Runtime.Handles": "4.3.0",
2244
- "System.Runtime.InteropServices": "4.3.0",
2245
- "System.Runtime.Numerics": "4.3.0",
2246
- "System.Security.Cryptography.Algorithms": "4.3.0",
2247
- "System.Security.Cryptography.Cng": "4.3.0",
2248
- "System.Security.Cryptography.Csp": "4.3.0",
2249
- "System.Security.Cryptography.Encoding": "4.3.0",
2250
- "System.Security.Cryptography.OpenSsl": "4.3.0",
2251
- "System.Security.Cryptography.Primitives": "4.3.0",
2252
- "System.Text.Encoding": "4.3.0",
2253
- "System.Threading": "4.3.0",
2254
- "runtime.native.System": "4.3.0",
2255
- "runtime.native.System.Net.Http": "4.3.0",
2256
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2257
- }
2258
- },
2259
- "System.Security.Principal": {
2260
- "type": "Transitive",
2261
- "resolved": "4.3.0",
2262
- "contentHash": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
2263
- "dependencies": {
2264
- "System.Runtime": "4.3.0"
2265
- }
2266
- },
2267
- "System.Security.Principal.Windows": {
2268
- "type": "Transitive",
2269
- "resolved": "4.3.0",
2270
- "contentHash": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
2271
- "dependencies": {
2272
- "Microsoft.NETCore.Platforms": "1.1.0",
2273
- "Microsoft.Win32.Primitives": "4.3.0",
2274
- "System.Collections": "4.3.0",
2275
- "System.Diagnostics.Debug": "4.3.0",
2276
- "System.Reflection": "4.3.0",
2277
- "System.Resources.ResourceManager": "4.3.0",
2278
- "System.Runtime": "4.3.0",
2279
- "System.Runtime.Extensions": "4.3.0",
2280
- "System.Runtime.Handles": "4.3.0",
2281
- "System.Runtime.InteropServices": "4.3.0",
2282
- "System.Security.Claims": "4.3.0",
2283
- "System.Security.Principal": "4.3.0",
2284
- "System.Text.Encoding": "4.3.0",
2285
- "System.Threading": "4.3.0"
2286
- }
2287
- },
2288
- "System.Text.Encoding": {
2289
- "type": "Transitive",
2290
- "resolved": "4.3.0",
2291
- "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
2292
- "dependencies": {
2293
- "Microsoft.NETCore.Platforms": "1.1.0",
2294
- "Microsoft.NETCore.Targets": "1.1.0",
2295
- "System.Runtime": "4.3.0",
2296
- "runtime.any.System.Text.Encoding": "4.3.0"
2297
- }
2298
- },
2299
- "System.Text.Encoding.CodePages": {
2300
- "type": "Transitive",
2301
- "resolved": "6.0.0",
2302
- "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
2303
- "dependencies": {
2304
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
2305
- }
2306
- },
2307
- "System.Text.Encoding.Extensions": {
2308
- "type": "Transitive",
2309
- "resolved": "4.3.0",
2310
- "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
2311
- "dependencies": {
2312
- "Microsoft.NETCore.Platforms": "1.1.0",
2313
- "Microsoft.NETCore.Targets": "1.1.0",
2314
- "System.Runtime": "4.3.0",
2315
- "System.Text.Encoding": "4.3.0",
2316
- "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
2317
- }
2318
- },
2319
- "System.Threading.Overlapped": {
2320
- "type": "Transitive",
2321
- "resolved": "4.3.0",
2322
- "contentHash": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
2323
- "dependencies": {
2324
- "Microsoft.NETCore.Platforms": "1.1.0",
2325
- "System.Resources.ResourceManager": "4.3.0",
2326
- "System.Runtime": "4.3.0",
2327
- "System.Runtime.Handles": "4.3.0"
2328
- }
2329
- },
2330
- "System.Threading.Tasks": {
2331
- "type": "Transitive",
2332
- "resolved": "4.3.0",
2333
- "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
2334
- "dependencies": {
2335
- "Microsoft.NETCore.Platforms": "1.1.0",
2336
- "Microsoft.NETCore.Targets": "1.1.0",
2337
- "System.Runtime": "4.3.0",
2338
- "runtime.any.System.Threading.Tasks": "4.3.0"
2339
- }
2340
- },
2341
- "System.Threading.Timer": {
2342
- "type": "Transitive",
2343
- "resolved": "4.3.0",
2344
- "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
2345
- "dependencies": {
2346
- "Microsoft.NETCore.Platforms": "1.1.0",
2347
- "Microsoft.NETCore.Targets": "1.1.0",
2348
- "System.Runtime": "4.3.0",
2349
- "runtime.any.System.Threading.Timer": "4.3.0"
2350
- }
2351
- }
2352
- },
2353
- "net6.0/win-x86": {
2354
- "Microsoft.Win32.Primitives": {
2355
- "type": "Transitive",
2356
- "resolved": "4.3.0",
2357
- "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
2358
- "dependencies": {
2359
- "Microsoft.NETCore.Platforms": "1.1.0",
2360
- "Microsoft.NETCore.Targets": "1.1.0",
2361
- "System.Runtime": "4.3.0",
2362
- "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
2363
- }
2364
- },
2365
- "runtime.any.System.Collections": {
2366
- "type": "Transitive",
2367
- "resolved": "4.3.0",
2368
- "contentHash": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
2369
- "dependencies": {
2370
- "System.Runtime": "4.3.0"
2371
- }
2372
- },
2373
- "runtime.any.System.Diagnostics.Tools": {
2374
- "type": "Transitive",
2375
- "resolved": "4.3.0",
2376
- "contentHash": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg=="
2377
- },
2378
- "runtime.any.System.Diagnostics.Tracing": {
2379
- "type": "Transitive",
2380
- "resolved": "4.3.0",
2381
- "contentHash": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ=="
2382
- },
2383
- "runtime.any.System.Globalization": {
2384
- "type": "Transitive",
2385
- "resolved": "4.3.0",
2386
- "contentHash": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw=="
2387
- },
2388
- "runtime.any.System.Globalization.Calendars": {
2389
- "type": "Transitive",
2390
- "resolved": "4.3.0",
2391
- "contentHash": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w=="
2392
- },
2393
- "runtime.any.System.IO": {
2394
- "type": "Transitive",
2395
- "resolved": "4.3.0",
2396
- "contentHash": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ=="
2397
- },
2398
- "runtime.any.System.Reflection": {
2399
- "type": "Transitive",
2400
- "resolved": "4.3.0",
2401
- "contentHash": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ=="
2402
- },
2403
- "runtime.any.System.Reflection.Extensions": {
2404
- "type": "Transitive",
2405
- "resolved": "4.3.0",
2406
- "contentHash": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA=="
2407
- },
2408
- "runtime.any.System.Reflection.Primitives": {
2409
- "type": "Transitive",
2410
- "resolved": "4.3.0",
2411
- "contentHash": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg=="
2412
- },
2413
- "runtime.any.System.Resources.ResourceManager": {
2414
- "type": "Transitive",
2415
- "resolved": "4.3.0",
2416
- "contentHash": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ=="
2417
- },
2418
- "runtime.any.System.Runtime": {
2419
- "type": "Transitive",
2420
- "resolved": "4.3.0",
2421
- "contentHash": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
2422
- "dependencies": {
2423
- "System.Private.Uri": "4.3.0"
2424
- }
2425
- },
2426
- "runtime.any.System.Runtime.Handles": {
2427
- "type": "Transitive",
2428
- "resolved": "4.3.0",
2429
- "contentHash": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ=="
2430
- },
2431
- "runtime.any.System.Runtime.InteropServices": {
2432
- "type": "Transitive",
2433
- "resolved": "4.3.0",
2434
- "contentHash": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw=="
2435
- },
2436
- "runtime.any.System.Text.Encoding": {
2437
- "type": "Transitive",
2438
- "resolved": "4.3.0",
2439
- "contentHash": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ=="
2440
- },
2441
- "runtime.any.System.Text.Encoding.Extensions": {
2442
- "type": "Transitive",
2443
- "resolved": "4.3.0",
2444
- "contentHash": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg=="
2445
- },
2446
- "runtime.any.System.Threading.Tasks": {
2447
- "type": "Transitive",
2448
- "resolved": "4.3.0",
2449
- "contentHash": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w=="
2450
- },
2451
- "runtime.any.System.Threading.Timer": {
2452
- "type": "Transitive",
2453
- "resolved": "4.3.0",
2454
- "contentHash": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w=="
2455
- },
2456
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2457
- "type": "Transitive",
2458
- "resolved": "4.3.0",
2459
- "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
2460
- },
2461
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2462
- "type": "Transitive",
2463
- "resolved": "4.3.0",
2464
- "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
2465
- },
2466
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2467
- "type": "Transitive",
2468
- "resolved": "4.3.0",
2469
- "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
2470
- },
2471
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2472
- "type": "Transitive",
2473
- "resolved": "4.3.0",
2474
- "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
2475
- },
2476
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2477
- "type": "Transitive",
2478
- "resolved": "4.3.0",
2479
- "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
2480
- },
2481
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
2482
- "type": "Transitive",
2483
- "resolved": "4.3.0",
2484
- "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
2485
- },
2486
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2487
- "type": "Transitive",
2488
- "resolved": "4.3.0",
2489
- "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
2490
- },
2491
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2492
- "type": "Transitive",
2493
- "resolved": "4.3.0",
2494
- "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
2495
- },
2496
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2497
- "type": "Transitive",
2498
- "resolved": "4.3.0",
2499
- "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
2500
- },
2501
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2502
- "type": "Transitive",
2503
- "resolved": "4.3.0",
2504
- "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
2505
- },
2506
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2507
- "type": "Transitive",
2508
- "resolved": "4.3.0",
2509
- "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
2510
- },
2511
- "runtime.win.Microsoft.Win32.Primitives": {
2512
- "type": "Transitive",
2513
- "resolved": "4.3.0",
2514
- "contentHash": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
2515
- "dependencies": {
2516
- "System.Runtime": "4.3.0",
2517
- "System.Runtime.InteropServices": "4.3.0"
2518
- }
2519
- },
2520
- "runtime.win.System.Console": {
2521
- "type": "Transitive",
2522
- "resolved": "4.3.1",
2523
- "contentHash": "vHPXC3B18dxhyipVce8xQT1MQv1o5srYZqBlCNu9p9MNjhgGOntdQh/Xh2X4o7M2F839YUcQiGwu8Q498FyDjg==",
2524
- "dependencies": {
2525
- "System.IO": "4.3.0",
2526
- "System.IO.FileSystem.Primitives": "4.3.0",
2527
- "System.Resources.ResourceManager": "4.3.0",
2528
- "System.Runtime": "4.3.0",
2529
- "System.Runtime.InteropServices": "4.3.0",
2530
- "System.Text.Encoding": "4.3.0",
2531
- "System.Text.Encoding.Extensions": "4.3.0",
2532
- "System.Threading": "4.3.0",
2533
- "System.Threading.Tasks": "4.3.0"
2534
- }
2535
- },
2536
- "runtime.win.System.Diagnostics.Debug": {
2537
- "type": "Transitive",
2538
- "resolved": "4.3.0",
2539
- "contentHash": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g=="
2540
- },
2541
- "runtime.win.System.IO.FileSystem": {
2542
- "type": "Transitive",
2543
- "resolved": "4.3.0",
2544
- "contentHash": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
2545
- "dependencies": {
2546
- "System.Buffers": "4.3.0",
2547
- "System.Collections": "4.3.0",
2548
- "System.Diagnostics.Debug": "4.3.0",
2549
- "System.IO": "4.3.0",
2550
- "System.IO.FileSystem.Primitives": "4.3.0",
2551
- "System.Resources.ResourceManager": "4.3.0",
2552
- "System.Runtime": "4.3.0",
2553
- "System.Runtime.Extensions": "4.3.0",
2554
- "System.Runtime.Handles": "4.3.0",
2555
- "System.Runtime.InteropServices": "4.3.0",
2556
- "System.Text.Encoding": "4.3.0",
2557
- "System.Text.Encoding.Extensions": "4.3.0",
2558
- "System.Threading": "4.3.0",
2559
- "System.Threading.Overlapped": "4.3.0",
2560
- "System.Threading.Tasks": "4.3.0"
2561
- }
2562
- },
2563
- "runtime.win.System.Net.Primitives": {
2564
- "type": "Transitive",
2565
- "resolved": "4.3.0",
2566
- "contentHash": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
2567
- "dependencies": {
2568
- "Microsoft.Win32.Primitives": "4.3.0",
2569
- "System.Collections": "4.3.0",
2570
- "System.Diagnostics.Tracing": "4.3.0",
2571
- "System.Globalization": "4.3.0",
2572
- "System.Resources.ResourceManager": "4.3.0",
2573
- "System.Runtime": "4.3.0",
2574
- "System.Runtime.Extensions": "4.3.0",
2575
- "System.Runtime.Handles": "4.3.0",
2576
- "System.Runtime.InteropServices": "4.3.0",
2577
- "System.Threading": "4.3.0"
2578
- }
2579
- },
2580
- "runtime.win.System.Net.Sockets": {
2581
- "type": "Transitive",
2582
- "resolved": "4.3.0",
2583
- "contentHash": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
2584
- "dependencies": {
2585
- "System.Collections": "4.3.0",
2586
- "System.Diagnostics.Debug": "4.3.0",
2587
- "System.Diagnostics.Tracing": "4.3.0",
2588
- "System.Globalization": "4.3.0",
2589
- "System.IO": "4.3.0",
2590
- "System.IO.FileSystem": "4.3.0",
2591
- "System.IO.FileSystem.Primitives": "4.3.0",
2592
- "System.Net.NameResolution": "4.3.0",
2593
- "System.Net.Primitives": "4.3.0",
2594
- "System.Resources.ResourceManager": "4.3.0",
2595
- "System.Runtime": "4.3.0",
2596
- "System.Runtime.Extensions": "4.3.0",
2597
- "System.Runtime.Handles": "4.3.0",
2598
- "System.Runtime.InteropServices": "4.3.0",
2599
- "System.Security.Principal.Windows": "4.3.0",
2600
- "System.Threading": "4.3.0",
2601
- "System.Threading.Overlapped": "4.3.0",
2602
- "System.Threading.Tasks": "4.3.0"
2603
- }
2604
- },
2605
- "runtime.win.System.Runtime.Extensions": {
2606
- "type": "Transitive",
2607
- "resolved": "4.3.0",
2608
- "contentHash": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
2609
- "dependencies": {
2610
- "System.Private.Uri": "4.3.0"
2611
- }
2612
- },
2613
- "System.Buffers": {
2614
- "type": "Transitive",
2615
- "resolved": "4.3.0",
2616
- "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
2617
- "dependencies": {
2618
- "System.Diagnostics.Debug": "4.3.0",
2619
- "System.Diagnostics.Tracing": "4.3.0",
2620
- "System.Resources.ResourceManager": "4.3.0",
2621
- "System.Runtime": "4.3.0",
2622
- "System.Threading": "4.3.0"
2623
- }
2624
- },
2625
- "System.Collections": {
2626
- "type": "Transitive",
2627
- "resolved": "4.3.0",
2628
- "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
2629
- "dependencies": {
2630
- "Microsoft.NETCore.Platforms": "1.1.0",
2631
- "Microsoft.NETCore.Targets": "1.1.0",
2632
- "System.Runtime": "4.3.0",
2633
- "runtime.any.System.Collections": "4.3.0"
2634
- }
2635
- },
2636
- "System.Console": {
2637
- "type": "Transitive",
2638
- "resolved": "4.3.0",
2639
- "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
2640
- "dependencies": {
2641
- "Microsoft.NETCore.Platforms": "1.1.0",
2642
- "Microsoft.NETCore.Targets": "1.1.0",
2643
- "System.IO": "4.3.0",
2644
- "System.Runtime": "4.3.0",
2645
- "System.Text.Encoding": "4.3.0",
2646
- "runtime.win.System.Console": "4.3.1"
2647
- }
2648
- },
2649
- "System.Diagnostics.Debug": {
2650
- "type": "Transitive",
2651
- "resolved": "4.3.0",
2652
- "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
2653
- "dependencies": {
2654
- "Microsoft.NETCore.Platforms": "1.1.0",
2655
- "Microsoft.NETCore.Targets": "1.1.0",
2656
- "System.Runtime": "4.3.0",
2657
- "runtime.win.System.Diagnostics.Debug": "4.3.0"
2658
- }
2659
- },
2660
- "System.Diagnostics.Tools": {
2661
- "type": "Transitive",
2662
- "resolved": "4.3.0",
2663
- "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
2664
- "dependencies": {
2665
- "Microsoft.NETCore.Platforms": "1.1.0",
2666
- "Microsoft.NETCore.Targets": "1.1.0",
2667
- "System.Runtime": "4.3.0",
2668
- "runtime.any.System.Diagnostics.Tools": "4.3.0"
2669
- }
2670
- },
2671
- "System.Diagnostics.Tracing": {
2672
- "type": "Transitive",
2673
- "resolved": "4.3.0",
2674
- "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
2675
- "dependencies": {
2676
- "Microsoft.NETCore.Platforms": "1.1.0",
2677
- "Microsoft.NETCore.Targets": "1.1.0",
2678
- "System.Runtime": "4.3.0",
2679
- "runtime.any.System.Diagnostics.Tracing": "4.3.0"
2680
- }
2681
- },
2682
- "System.Globalization": {
2683
- "type": "Transitive",
2684
- "resolved": "4.3.0",
2685
- "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
2686
- "dependencies": {
2687
- "Microsoft.NETCore.Platforms": "1.1.0",
2688
- "Microsoft.NETCore.Targets": "1.1.0",
2689
- "System.Runtime": "4.3.0",
2690
- "runtime.any.System.Globalization": "4.3.0"
2691
- }
2692
- },
2693
- "System.Globalization.Calendars": {
2694
- "type": "Transitive",
2695
- "resolved": "4.3.0",
2696
- "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
2697
- "dependencies": {
2698
- "Microsoft.NETCore.Platforms": "1.1.0",
2699
- "Microsoft.NETCore.Targets": "1.1.0",
2700
- "System.Globalization": "4.3.0",
2701
- "System.Runtime": "4.3.0",
2702
- "runtime.any.System.Globalization.Calendars": "4.3.0"
2703
- }
2704
- },
2705
- "System.Globalization.Extensions": {
2706
- "type": "Transitive",
2707
- "resolved": "4.3.0",
2708
- "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
2709
- "dependencies": {
2710
- "Microsoft.NETCore.Platforms": "1.1.0",
2711
- "System.Globalization": "4.3.0",
2712
- "System.Resources.ResourceManager": "4.3.0",
2713
- "System.Runtime": "4.3.0",
2714
- "System.Runtime.Extensions": "4.3.0",
2715
- "System.Runtime.InteropServices": "4.3.0"
2716
- }
2717
- },
2718
- "System.IO": {
2719
- "type": "Transitive",
2720
- "resolved": "4.3.0",
2721
- "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
2722
- "dependencies": {
2723
- "Microsoft.NETCore.Platforms": "1.1.0",
2724
- "Microsoft.NETCore.Targets": "1.1.0",
2725
- "System.Runtime": "4.3.0",
2726
- "System.Text.Encoding": "4.3.0",
2727
- "System.Threading.Tasks": "4.3.0",
2728
- "runtime.any.System.IO": "4.3.0"
2729
- }
2730
- },
2731
- "System.IO.Compression": {
2732
- "type": "Transitive",
2733
- "resolved": "4.3.0",
2734
- "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
2735
- "dependencies": {
2736
- "Microsoft.NETCore.Platforms": "1.1.0",
2737
- "System.Buffers": "4.3.0",
2738
- "System.Collections": "4.3.0",
2739
- "System.Diagnostics.Debug": "4.3.0",
2740
- "System.IO": "4.3.0",
2741
- "System.Resources.ResourceManager": "4.3.0",
2742
- "System.Runtime": "4.3.0",
2743
- "System.Runtime.Extensions": "4.3.0",
2744
- "System.Runtime.Handles": "4.3.0",
2745
- "System.Runtime.InteropServices": "4.3.0",
2746
- "System.Text.Encoding": "4.3.0",
2747
- "System.Threading": "4.3.0",
2748
- "System.Threading.Tasks": "4.3.0",
2749
- "runtime.native.System": "4.3.0",
2750
- "runtime.native.System.IO.Compression": "4.3.0"
2751
- }
2752
- },
2753
- "System.IO.FileSystem": {
2754
- "type": "Transitive",
2755
- "resolved": "4.3.0",
2756
- "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
2757
- "dependencies": {
2758
- "Microsoft.NETCore.Platforms": "1.1.0",
2759
- "Microsoft.NETCore.Targets": "1.1.0",
2760
- "System.IO": "4.3.0",
2761
- "System.IO.FileSystem.Primitives": "4.3.0",
2762
- "System.Runtime": "4.3.0",
2763
- "System.Runtime.Handles": "4.3.0",
2764
- "System.Text.Encoding": "4.3.0",
2765
- "System.Threading.Tasks": "4.3.0",
2766
- "runtime.win.System.IO.FileSystem": "4.3.0"
2767
- }
2768
- },
2769
- "System.Net.Http": {
2770
- "type": "Transitive",
2771
- "resolved": "4.3.0",
2772
- "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
2773
- "dependencies": {
2774
- "Microsoft.NETCore.Platforms": "1.1.0",
2775
- "System.Collections": "4.3.0",
2776
- "System.Diagnostics.Debug": "4.3.0",
2777
- "System.Diagnostics.DiagnosticSource": "4.3.0",
2778
- "System.Diagnostics.Tracing": "4.3.0",
2779
- "System.Globalization": "4.3.0",
2780
- "System.Globalization.Extensions": "4.3.0",
2781
- "System.IO": "4.3.0",
2782
- "System.IO.FileSystem": "4.3.0",
2783
- "System.Net.Primitives": "4.3.0",
2784
- "System.Resources.ResourceManager": "4.3.0",
2785
- "System.Runtime": "4.3.0",
2786
- "System.Runtime.Extensions": "4.3.0",
2787
- "System.Runtime.Handles": "4.3.0",
2788
- "System.Runtime.InteropServices": "4.3.0",
2789
- "System.Security.Cryptography.Algorithms": "4.3.0",
2790
- "System.Security.Cryptography.Encoding": "4.3.0",
2791
- "System.Security.Cryptography.OpenSsl": "4.3.0",
2792
- "System.Security.Cryptography.Primitives": "4.3.0",
2793
- "System.Security.Cryptography.X509Certificates": "4.3.0",
2794
- "System.Text.Encoding": "4.3.0",
2795
- "System.Threading": "4.3.0",
2796
- "System.Threading.Tasks": "4.3.0",
2797
- "runtime.native.System": "4.3.0",
2798
- "runtime.native.System.Net.Http": "4.3.0",
2799
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2800
- }
2801
- },
2802
- "System.Net.NameResolution": {
2803
- "type": "Transitive",
2804
- "resolved": "4.3.0",
2805
- "contentHash": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
2806
- "dependencies": {
2807
- "Microsoft.NETCore.Platforms": "1.1.0",
2808
- "System.Collections": "4.3.0",
2809
- "System.Diagnostics.Tracing": "4.3.0",
2810
- "System.Globalization": "4.3.0",
2811
- "System.Net.Primitives": "4.3.0",
2812
- "System.Resources.ResourceManager": "4.3.0",
2813
- "System.Runtime": "4.3.0",
2814
- "System.Runtime.Extensions": "4.3.0",
2815
- "System.Runtime.Handles": "4.3.0",
2816
- "System.Runtime.InteropServices": "4.3.0",
2817
- "System.Security.Principal.Windows": "4.3.0",
2818
- "System.Threading": "4.3.0",
2819
- "System.Threading.Tasks": "4.3.0",
2820
- "runtime.native.System": "4.3.0"
2821
- }
2822
- },
2823
- "System.Net.Primitives": {
2824
- "type": "Transitive",
2825
- "resolved": "4.3.0",
2826
- "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
2827
- "dependencies": {
2828
- "Microsoft.NETCore.Platforms": "1.1.0",
2829
- "Microsoft.NETCore.Targets": "1.1.0",
2830
- "System.Runtime": "4.3.0",
2831
- "System.Runtime.Handles": "4.3.0",
2832
- "runtime.win.System.Net.Primitives": "4.3.0"
2833
- }
2834
- },
2835
- "System.Net.Sockets": {
2836
- "type": "Transitive",
2837
- "resolved": "4.3.0",
2838
- "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
2839
- "dependencies": {
2840
- "Microsoft.NETCore.Platforms": "1.1.0",
2841
- "Microsoft.NETCore.Targets": "1.1.0",
2842
- "System.IO": "4.3.0",
2843
- "System.Net.Primitives": "4.3.0",
2844
- "System.Runtime": "4.3.0",
2845
- "System.Threading.Tasks": "4.3.0",
2846
- "runtime.win.System.Net.Sockets": "4.3.0"
2847
- }
2848
- },
2849
- "System.Reflection": {
2850
- "type": "Transitive",
2851
- "resolved": "4.3.0",
2852
- "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
2853
- "dependencies": {
2854
- "Microsoft.NETCore.Platforms": "1.1.0",
2855
- "Microsoft.NETCore.Targets": "1.1.0",
2856
- "System.IO": "4.3.0",
2857
- "System.Reflection.Primitives": "4.3.0",
2858
- "System.Runtime": "4.3.0",
2859
- "runtime.any.System.Reflection": "4.3.0"
2860
- }
2861
- },
2862
- "System.Reflection.Extensions": {
2863
- "type": "Transitive",
2864
- "resolved": "4.3.0",
2865
- "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
2866
- "dependencies": {
2867
- "Microsoft.NETCore.Platforms": "1.1.0",
2868
- "Microsoft.NETCore.Targets": "1.1.0",
2869
- "System.Reflection": "4.3.0",
2870
- "System.Runtime": "4.3.0",
2871
- "runtime.any.System.Reflection.Extensions": "4.3.0"
2872
- }
2873
- },
2874
- "System.Reflection.Primitives": {
2875
- "type": "Transitive",
2876
- "resolved": "4.3.0",
2877
- "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
2878
- "dependencies": {
2879
- "Microsoft.NETCore.Platforms": "1.1.0",
2880
- "Microsoft.NETCore.Targets": "1.1.0",
2881
- "System.Runtime": "4.3.0",
2882
- "runtime.any.System.Reflection.Primitives": "4.3.0"
2883
- }
2884
- },
2885
- "System.Resources.ResourceManager": {
2886
- "type": "Transitive",
2887
- "resolved": "4.3.0",
2888
- "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
2889
- "dependencies": {
2890
- "Microsoft.NETCore.Platforms": "1.1.0",
2891
- "Microsoft.NETCore.Targets": "1.1.0",
2892
- "System.Globalization": "4.3.0",
2893
- "System.Reflection": "4.3.0",
2894
- "System.Runtime": "4.3.0",
2895
- "runtime.any.System.Resources.ResourceManager": "4.3.0"
2896
- }
2897
- },
2898
- "System.Runtime": {
2899
- "type": "Transitive",
2900
- "resolved": "4.3.0",
2901
- "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
2902
- "dependencies": {
2903
- "Microsoft.NETCore.Platforms": "1.1.0",
2904
- "Microsoft.NETCore.Targets": "1.1.0",
2905
- "runtime.any.System.Runtime": "4.3.0"
2906
- }
2907
- },
2908
- "System.Runtime.Extensions": {
2909
- "type": "Transitive",
2910
- "resolved": "4.3.0",
2911
- "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
2912
- "dependencies": {
2913
- "Microsoft.NETCore.Platforms": "1.1.0",
2914
- "Microsoft.NETCore.Targets": "1.1.0",
2915
- "System.Runtime": "4.3.0",
2916
- "runtime.win.System.Runtime.Extensions": "4.3.0"
2917
- }
2918
- },
2919
- "System.Runtime.Handles": {
2920
- "type": "Transitive",
2921
- "resolved": "4.3.0",
2922
- "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
2923
- "dependencies": {
2924
- "Microsoft.NETCore.Platforms": "1.1.0",
2925
- "Microsoft.NETCore.Targets": "1.1.0",
2926
- "System.Runtime": "4.3.0",
2927
- "runtime.any.System.Runtime.Handles": "4.3.0"
2928
- }
2929
- },
2930
- "System.Runtime.InteropServices": {
2931
- "type": "Transitive",
2932
- "resolved": "4.3.0",
2933
- "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
2934
- "dependencies": {
2935
- "Microsoft.NETCore.Platforms": "1.1.0",
2936
- "Microsoft.NETCore.Targets": "1.1.0",
2937
- "System.Reflection": "4.3.0",
2938
- "System.Reflection.Primitives": "4.3.0",
2939
- "System.Runtime": "4.3.0",
2940
- "System.Runtime.Handles": "4.3.0",
2941
- "runtime.any.System.Runtime.InteropServices": "4.3.0"
2942
- }
2943
- },
2944
- "System.Runtime.InteropServices.RuntimeInformation": {
2945
- "type": "Transitive",
2946
- "resolved": "4.3.0",
2947
- "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
2948
- "dependencies": {
2949
- "System.Reflection": "4.3.0",
2950
- "System.Reflection.Extensions": "4.3.0",
2951
- "System.Resources.ResourceManager": "4.3.0",
2952
- "System.Runtime": "4.3.0",
2953
- "System.Runtime.InteropServices": "4.3.0",
2954
- "System.Threading": "4.3.0",
2955
- "runtime.native.System": "4.3.0"
2956
- }
2957
- },
2958
- "System.Security.Claims": {
2959
- "type": "Transitive",
2960
- "resolved": "4.3.0",
2961
- "contentHash": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
2962
- "dependencies": {
2963
- "System.Collections": "4.3.0",
2964
- "System.Globalization": "4.3.0",
2965
- "System.IO": "4.3.0",
2966
- "System.Resources.ResourceManager": "4.3.0",
2967
- "System.Runtime": "4.3.0",
2968
- "System.Runtime.Extensions": "4.3.0",
2969
- "System.Security.Principal": "4.3.0"
2970
- }
2971
- },
2972
- "System.Security.Cryptography.Algorithms": {
2973
- "type": "Transitive",
2974
- "resolved": "4.3.0",
2975
- "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
2976
- "dependencies": {
2977
- "Microsoft.NETCore.Platforms": "1.1.0",
2978
- "System.Collections": "4.3.0",
2979
- "System.IO": "4.3.0",
2980
- "System.Resources.ResourceManager": "4.3.0",
2981
- "System.Runtime": "4.3.0",
2982
- "System.Runtime.Extensions": "4.3.0",
2983
- "System.Runtime.Handles": "4.3.0",
2984
- "System.Runtime.InteropServices": "4.3.0",
2985
- "System.Runtime.Numerics": "4.3.0",
2986
- "System.Security.Cryptography.Encoding": "4.3.0",
2987
- "System.Security.Cryptography.Primitives": "4.3.0",
2988
- "System.Text.Encoding": "4.3.0",
2989
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
2990
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2991
- }
2992
- },
2993
- "System.Security.Cryptography.Cng": {
2994
- "type": "Transitive",
2995
- "resolved": "4.3.0",
2996
- "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
2997
- "dependencies": {
2998
- "Microsoft.NETCore.Platforms": "1.1.0",
2999
- "System.IO": "4.3.0",
3000
- "System.Resources.ResourceManager": "4.3.0",
3001
- "System.Runtime": "4.3.0",
3002
- "System.Runtime.Extensions": "4.3.0",
3003
- "System.Runtime.Handles": "4.3.0",
3004
- "System.Runtime.InteropServices": "4.3.0",
3005
- "System.Security.Cryptography.Algorithms": "4.3.0",
3006
- "System.Security.Cryptography.Encoding": "4.3.0",
3007
- "System.Security.Cryptography.Primitives": "4.3.0",
3008
- "System.Text.Encoding": "4.3.0"
3009
- }
3010
- },
3011
- "System.Security.Cryptography.Csp": {
3012
- "type": "Transitive",
3013
- "resolved": "4.3.0",
3014
- "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
3015
- "dependencies": {
3016
- "Microsoft.NETCore.Platforms": "1.1.0",
3017
- "System.IO": "4.3.0",
3018
- "System.Reflection": "4.3.0",
3019
- "System.Resources.ResourceManager": "4.3.0",
3020
- "System.Runtime": "4.3.0",
3021
- "System.Runtime.Extensions": "4.3.0",
3022
- "System.Runtime.Handles": "4.3.0",
3023
- "System.Runtime.InteropServices": "4.3.0",
3024
- "System.Security.Cryptography.Algorithms": "4.3.0",
3025
- "System.Security.Cryptography.Encoding": "4.3.0",
3026
- "System.Security.Cryptography.Primitives": "4.3.0",
3027
- "System.Text.Encoding": "4.3.0",
3028
- "System.Threading": "4.3.0"
3029
- }
3030
- },
3031
- "System.Security.Cryptography.Encoding": {
3032
- "type": "Transitive",
3033
- "resolved": "4.3.0",
3034
- "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
3035
- "dependencies": {
3036
- "Microsoft.NETCore.Platforms": "1.1.0",
3037
- "System.Collections": "4.3.0",
3038
- "System.Collections.Concurrent": "4.3.0",
3039
- "System.Linq": "4.3.0",
3040
- "System.Resources.ResourceManager": "4.3.0",
3041
- "System.Runtime": "4.3.0",
3042
- "System.Runtime.Extensions": "4.3.0",
3043
- "System.Runtime.Handles": "4.3.0",
3044
- "System.Runtime.InteropServices": "4.3.0",
3045
- "System.Security.Cryptography.Primitives": "4.3.0",
3046
- "System.Text.Encoding": "4.3.0",
3047
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
3048
- }
3049
- },
3050
- "System.Security.Cryptography.OpenSsl": {
3051
- "type": "Transitive",
3052
- "resolved": "4.3.0",
3053
- "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
3054
- "dependencies": {
3055
- "System.Collections": "4.3.0",
3056
- "System.IO": "4.3.0",
3057
- "System.Resources.ResourceManager": "4.3.0",
3058
- "System.Runtime": "4.3.0",
3059
- "System.Runtime.Extensions": "4.3.0",
3060
- "System.Runtime.Handles": "4.3.0",
3061
- "System.Runtime.InteropServices": "4.3.0",
3062
- "System.Runtime.Numerics": "4.3.0",
3063
- "System.Security.Cryptography.Algorithms": "4.3.0",
3064
- "System.Security.Cryptography.Encoding": "4.3.0",
3065
- "System.Security.Cryptography.Primitives": "4.3.0",
3066
- "System.Text.Encoding": "4.3.0",
3067
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
3068
- }
3069
- },
3070
- "System.Security.Cryptography.X509Certificates": {
3071
- "type": "Transitive",
3072
- "resolved": "4.3.0",
3073
- "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
3074
- "dependencies": {
3075
- "Microsoft.NETCore.Platforms": "1.1.0",
3076
- "System.Collections": "4.3.0",
3077
- "System.Diagnostics.Debug": "4.3.0",
3078
- "System.Globalization": "4.3.0",
3079
- "System.Globalization.Calendars": "4.3.0",
3080
- "System.IO": "4.3.0",
3081
- "System.IO.FileSystem": "4.3.0",
3082
- "System.IO.FileSystem.Primitives": "4.3.0",
3083
- "System.Resources.ResourceManager": "4.3.0",
3084
- "System.Runtime": "4.3.0",
3085
- "System.Runtime.Extensions": "4.3.0",
3086
- "System.Runtime.Handles": "4.3.0",
3087
- "System.Runtime.InteropServices": "4.3.0",
3088
- "System.Runtime.Numerics": "4.3.0",
3089
- "System.Security.Cryptography.Algorithms": "4.3.0",
3090
- "System.Security.Cryptography.Cng": "4.3.0",
3091
- "System.Security.Cryptography.Csp": "4.3.0",
3092
- "System.Security.Cryptography.Encoding": "4.3.0",
3093
- "System.Security.Cryptography.OpenSsl": "4.3.0",
3094
- "System.Security.Cryptography.Primitives": "4.3.0",
3095
- "System.Text.Encoding": "4.3.0",
3096
- "System.Threading": "4.3.0",
3097
- "runtime.native.System": "4.3.0",
3098
- "runtime.native.System.Net.Http": "4.3.0",
3099
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
3100
- }
3101
- },
3102
- "System.Security.Principal": {
3103
- "type": "Transitive",
3104
- "resolved": "4.3.0",
3105
- "contentHash": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
3106
- "dependencies": {
3107
- "System.Runtime": "4.3.0"
3108
- }
3109
- },
3110
- "System.Security.Principal.Windows": {
3111
- "type": "Transitive",
3112
- "resolved": "4.3.0",
3113
- "contentHash": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
3114
- "dependencies": {
3115
- "Microsoft.NETCore.Platforms": "1.1.0",
3116
- "Microsoft.Win32.Primitives": "4.3.0",
3117
- "System.Collections": "4.3.0",
3118
- "System.Diagnostics.Debug": "4.3.0",
3119
- "System.Reflection": "4.3.0",
3120
- "System.Resources.ResourceManager": "4.3.0",
3121
- "System.Runtime": "4.3.0",
3122
- "System.Runtime.Extensions": "4.3.0",
3123
- "System.Runtime.Handles": "4.3.0",
3124
- "System.Runtime.InteropServices": "4.3.0",
3125
- "System.Security.Claims": "4.3.0",
3126
- "System.Security.Principal": "4.3.0",
3127
- "System.Text.Encoding": "4.3.0",
3128
- "System.Threading": "4.3.0"
3129
- }
3130
- },
3131
- "System.Text.Encoding": {
3132
- "type": "Transitive",
3133
- "resolved": "4.3.0",
3134
- "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
3135
- "dependencies": {
3136
- "Microsoft.NETCore.Platforms": "1.1.0",
3137
- "Microsoft.NETCore.Targets": "1.1.0",
3138
- "System.Runtime": "4.3.0",
3139
- "runtime.any.System.Text.Encoding": "4.3.0"
3140
- }
3141
- },
3142
- "System.Text.Encoding.CodePages": {
3143
- "type": "Transitive",
3144
- "resolved": "6.0.0",
3145
- "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
3146
- "dependencies": {
3147
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
3148
- }
3149
- },
3150
- "System.Text.Encoding.Extensions": {
3151
- "type": "Transitive",
3152
- "resolved": "4.3.0",
3153
- "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
3154
- "dependencies": {
3155
- "Microsoft.NETCore.Platforms": "1.1.0",
3156
- "Microsoft.NETCore.Targets": "1.1.0",
3157
- "System.Runtime": "4.3.0",
3158
- "System.Text.Encoding": "4.3.0",
3159
- "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
3160
- }
3161
- },
3162
- "System.Threading.Overlapped": {
3163
- "type": "Transitive",
3164
- "resolved": "4.3.0",
3165
- "contentHash": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
3166
- "dependencies": {
3167
- "Microsoft.NETCore.Platforms": "1.1.0",
3168
- "System.Resources.ResourceManager": "4.3.0",
3169
- "System.Runtime": "4.3.0",
3170
- "System.Runtime.Handles": "4.3.0"
3171
- }
3172
- },
3173
- "System.Threading.Tasks": {
3174
- "type": "Transitive",
3175
- "resolved": "4.3.0",
3176
- "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
3177
- "dependencies": {
3178
- "Microsoft.NETCore.Platforms": "1.1.0",
3179
- "Microsoft.NETCore.Targets": "1.1.0",
3180
- "System.Runtime": "4.3.0",
3181
- "runtime.any.System.Threading.Tasks": "4.3.0"
3182
- }
3183
- },
3184
- "System.Threading.Timer": {
3185
- "type": "Transitive",
3186
- "resolved": "4.3.0",
3187
- "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
3188
- "dependencies": {
3189
- "Microsoft.NETCore.Platforms": "1.1.0",
3190
- "Microsoft.NETCore.Targets": "1.1.0",
3191
- "System.Runtime": "4.3.0",
3192
- "runtime.any.System.Threading.Timer": "4.3.0"
3193
- }
3194
- }
3195
- }
3196
- }
3197
- }