react-native-share 7.6.6 → 7.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/EmailShare.m +1 -1
- package/ios/FacebookStories.m +6 -3
- package/ios/GenericShare.m +1 -1
- package/ios/GooglePlusShare.m +7 -2
- package/ios/InstagramShare.m +22 -13
- package/ios/InstagramStories.m +6 -3
- package/ios/RNShare.m +1 -1
- package/ios/TelegramShare.m +1 -1
- package/ios/ViberShare.m +1 -1
- package/ios/WhatsAppShare.m +3 -3
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/package.json +5 -2
- package/src/index.tsx +1 -1
- package/windows/.gitignore +16 -2
- package/windows/ExperimentalFeatures.props +10 -0
- package/windows/NuGet.Config +14 -0
- package/windows/ReactNativeShare/PropertySheet.props +16 -0
- package/windows/ReactNativeShare/ReactNativeModule.h +108 -0
- package/windows/ReactNativeShare/ReactNativeShare.def +3 -0
- package/windows/ReactNativeShare/ReactNativeShare.vcxproj +160 -0
- package/windows/ReactNativeShare/ReactNativeShare.vcxproj.filters +20 -0
- package/windows/ReactNativeShare/ReactPackageProvider.cpp +19 -0
- package/windows/ReactNativeShare/ReactPackageProvider.h +21 -0
- package/windows/ReactNativeShare/ReactPackageProvider.idl +9 -0
- package/windows/ReactNativeShare/packages.config +6 -0
- package/windows/ReactNativeShare/pch.cpp +1 -0
- package/windows/ReactNativeShare/pch.h +18 -0
- package/windows/ReactNativeShare.sln +156 -0
- package/windows/RNShare/Properties/AssemblyInfo.cs +0 -29
- package/windows/RNShare/Properties/RNShare.rd.xml +0 -33
- package/windows/RNShare/RNShare.csproj +0 -183
- package/windows/RNShare/RNShareModule.cs +0 -118
- package/windows/RNShare/RNSharePackage.cs +0 -53
- package/windows/RNShare/project.json +0 -16
- package/windows/RNShare.sln +0 -86
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<Import Project="$(SolutionDir)\ExperimentalFeatures.props" Condition="Exists('$(SolutionDir)\ExperimentalFeatures.props')" />
|
|
4
|
+
<Import Project="$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.props')" />
|
|
5
|
+
<PropertyGroup Label="Globals">
|
|
6
|
+
<CppWinRTOptimized>true</CppWinRTOptimized>
|
|
7
|
+
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
|
|
8
|
+
<MinimalCoreWin>true</MinimalCoreWin>
|
|
9
|
+
<ProjectGuid>{bd58576e-3205-4762-8b1b-ea33774079b7}</ProjectGuid>
|
|
10
|
+
<ProjectName>ReactNativeShare</ProjectName>
|
|
11
|
+
<RootNamespace>ReactNativeShare</RootNamespace>
|
|
12
|
+
<DefaultLanguage>en-US</DefaultLanguage>
|
|
13
|
+
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
|
14
|
+
<AppContainerApplication>true</AppContainerApplication>
|
|
15
|
+
<ApplicationType>Windows Store</ApplicationType>
|
|
16
|
+
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
|
17
|
+
</PropertyGroup>
|
|
18
|
+
<PropertyGroup Label="ReactNativeWindowsProps">
|
|
19
|
+
<ReactNativeWindowsDir Condition="'$(ReactNativeWindowsDir)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(SolutionDir), 'node_modules\react-native-windows\package.json'))\node_modules\react-native-windows\</ReactNativeWindowsDir>
|
|
20
|
+
</PropertyGroup>
|
|
21
|
+
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.WindowsSdk.Default.props" Condition="Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.WindowsSdk.Default.props')" />
|
|
22
|
+
<PropertyGroup Label="Fallback Windows SDK Versions">
|
|
23
|
+
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.19041.0</WindowsTargetPlatformVersion>
|
|
24
|
+
<WindowsTargetPlatformMinVersion Condition=" '$(WindowsTargetPlatformMinVersion)' == '' ">10.0.15063.0</WindowsTargetPlatformMinVersion>
|
|
25
|
+
</PropertyGroup>
|
|
26
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
27
|
+
<ItemGroup Label="ProjectConfigurations">
|
|
28
|
+
<ProjectConfiguration Include="Debug|ARM64">
|
|
29
|
+
<Configuration>Debug</Configuration>
|
|
30
|
+
<Platform>ARM64</Platform>
|
|
31
|
+
</ProjectConfiguration>
|
|
32
|
+
<ProjectConfiguration Include="Debug|Win32">
|
|
33
|
+
<Configuration>Debug</Configuration>
|
|
34
|
+
<Platform>Win32</Platform>
|
|
35
|
+
</ProjectConfiguration>
|
|
36
|
+
<ProjectConfiguration Include="Debug|x64">
|
|
37
|
+
<Configuration>Debug</Configuration>
|
|
38
|
+
<Platform>x64</Platform>
|
|
39
|
+
</ProjectConfiguration>
|
|
40
|
+
<ProjectConfiguration Include="Release|ARM64">
|
|
41
|
+
<Configuration>Release</Configuration>
|
|
42
|
+
<Platform>ARM64</Platform>
|
|
43
|
+
</ProjectConfiguration>
|
|
44
|
+
<ProjectConfiguration Include="Release|Win32">
|
|
45
|
+
<Configuration>Release</Configuration>
|
|
46
|
+
<Platform>Win32</Platform>
|
|
47
|
+
</ProjectConfiguration>
|
|
48
|
+
<ProjectConfiguration Include="Release|x64">
|
|
49
|
+
<Configuration>Release</Configuration>
|
|
50
|
+
<Platform>x64</Platform>
|
|
51
|
+
</ProjectConfiguration>
|
|
52
|
+
</ItemGroup>
|
|
53
|
+
<PropertyGroup Label="Configuration">
|
|
54
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
55
|
+
<CharacterSet>Unicode</CharacterSet>
|
|
56
|
+
<GenerateManifest>false</GenerateManifest>
|
|
57
|
+
</PropertyGroup>
|
|
58
|
+
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
|
59
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
60
|
+
<LinkIncremental>true</LinkIncremental>
|
|
61
|
+
</PropertyGroup>
|
|
62
|
+
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
|
63
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
64
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
65
|
+
<LinkIncremental>false</LinkIncremental>
|
|
66
|
+
</PropertyGroup>
|
|
67
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
68
|
+
<ImportGroup Label="ExtensionSettings"></ImportGroup>
|
|
69
|
+
<ImportGroup Label="PropertySheets">
|
|
70
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
71
|
+
</ImportGroup>
|
|
72
|
+
<ImportGroup Label="PropertySheets">
|
|
73
|
+
<Import Project="PropertySheet.props" />
|
|
74
|
+
</ImportGroup>
|
|
75
|
+
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
|
76
|
+
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\external\Microsoft.ReactNative.Uwp.CppLib.props" Condition="Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppLib.props')" />
|
|
77
|
+
<Import Project="$(SolutionDir)\packages\$(WinUIPackageProps)" Condition="'$(WinUIPackageProps)'!='' And Exists('$(SolutionDir)\packages\$(WinUIPackageProps)')" />
|
|
78
|
+
</ImportGroup>
|
|
79
|
+
|
|
80
|
+
<PropertyGroup Label="UserMacros" />
|
|
81
|
+
<ItemDefinitionGroup>
|
|
82
|
+
<ClCompile>
|
|
83
|
+
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
84
|
+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
|
85
|
+
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
|
|
86
|
+
<WarningLevel>Level4</WarningLevel>
|
|
87
|
+
<AdditionalOptions>%(AdditionalOptions) /bigobj</AdditionalOptions>
|
|
88
|
+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
|
|
89
|
+
<PreprocessorDefinitions>_WINRT_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
90
|
+
<AdditionalUsingDirectories>$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
|
|
91
|
+
</ClCompile>
|
|
92
|
+
<Midl>
|
|
93
|
+
<!-- This allows applications targetting older Windows SDKs (e.g. RNW 0.65 apps) to consume the library generated WinMD -->
|
|
94
|
+
<AdditionalOptions>%(AdditionalOptions) /noattributename</AdditionalOptions>
|
|
95
|
+
</Midl>
|
|
96
|
+
<Link>
|
|
97
|
+
<SubSystem>Console</SubSystem>
|
|
98
|
+
<GenerateWindowsMetadata>true</GenerateWindowsMetadata>
|
|
99
|
+
<ModuleDefinitionFile>ReactNativeShare.def</ModuleDefinitionFile>
|
|
100
|
+
</Link>
|
|
101
|
+
</ItemDefinitionGroup>
|
|
102
|
+
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
|
|
103
|
+
<ClCompile>
|
|
104
|
+
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
105
|
+
</ClCompile>
|
|
106
|
+
</ItemDefinitionGroup>
|
|
107
|
+
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
|
108
|
+
<ClCompile>
|
|
109
|
+
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
110
|
+
</ClCompile>
|
|
111
|
+
</ItemDefinitionGroup>
|
|
112
|
+
<ItemGroup>
|
|
113
|
+
<ClInclude Include="ReactPackageProvider.h">
|
|
114
|
+
<DependentUpon>ReactPackageProvider.idl</DependentUpon>
|
|
115
|
+
</ClInclude>
|
|
116
|
+
<ClInclude Include="ReactNativeModule.h" />
|
|
117
|
+
<ClInclude Include="pch.h" />
|
|
118
|
+
</ItemGroup>
|
|
119
|
+
<ItemGroup>
|
|
120
|
+
<ClCompile Include="pch.cpp">
|
|
121
|
+
<PrecompiledHeader>Create</PrecompiledHeader>
|
|
122
|
+
</ClCompile>
|
|
123
|
+
<ClCompile Include="ReactPackageProvider.cpp">
|
|
124
|
+
<DependentUpon>ReactPackageProvider.idl</DependentUpon>
|
|
125
|
+
</ClCompile>
|
|
126
|
+
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp" />
|
|
127
|
+
</ItemGroup>
|
|
128
|
+
<ItemGroup>
|
|
129
|
+
<Midl Include="ReactPackageProvider.idl" />
|
|
130
|
+
</ItemGroup>
|
|
131
|
+
<ItemGroup>
|
|
132
|
+
<None Include="packages.config" />
|
|
133
|
+
<None Include="PropertySheet.props" />
|
|
134
|
+
</ItemGroup>
|
|
135
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
136
|
+
<ImportGroup Label="ReactNativeWindowsTargets">
|
|
137
|
+
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppLib.targets" Condition="Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppLib.targets')" />
|
|
138
|
+
</ImportGroup>
|
|
139
|
+
<Target Name="EnsureReactNativeWindowsTargets" BeforeTargets="PrepareForBuild">
|
|
140
|
+
<PropertyGroup>
|
|
141
|
+
<ErrorText>This project references targets in your node_modules\react-native-windows folder that are missing. The missing file is {0}.</ErrorText>
|
|
142
|
+
</PropertyGroup>
|
|
143
|
+
<Error Condition="!Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppLib.props')" Text="$([System.String]::Format('$(ErrorText)', '$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppLib.props'))" />
|
|
144
|
+
<Error Condition="!Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppLib.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppLib.targets'))" />
|
|
145
|
+
</Target>
|
|
146
|
+
<ImportGroup Label="ExtensionTargets">
|
|
147
|
+
<Import Project="$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.targets')" />
|
|
148
|
+
<Import Project="$(SolutionDir)\packages\ReactNative.Hermes.Windows.0.9.0-ms.4\build\native\ReactNative.Hermes.Windows.targets" Condition="Exists('$(SolutionDir)\packages\ReactNative.Hermes.Windows.0.9.0-ms.4\build\native\ReactNative.Hermes.Windows.targets')" />
|
|
149
|
+
<Import Project="$(SolutionDir)\packages\$(WinUIPackageName).$(WinUIPackageVersion)\build\native\$(WinUIPackageName).targets" Condition="Exists('$(SolutionDir)\packages\$(WinUIPackageName).$(WinUIPackageVersion)\build\native\$(WinUIPackageName).targets')" />
|
|
150
|
+
</ImportGroup>
|
|
151
|
+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
152
|
+
<PropertyGroup>
|
|
153
|
+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|
154
|
+
</PropertyGroup>
|
|
155
|
+
<Error Condition="!Exists('$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.props')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.props'))" />
|
|
156
|
+
<Error Condition="!Exists('$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.targets'))" />
|
|
157
|
+
<Error Condition="!Exists('$(SolutionDir)\packages\ReactNative.Hermes.Windows.0.9.0-ms.4\build\native\ReactNative.Hermes.Windows.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\ReactNative.Hermes.Windows.0.9.0-ms.4\build\native\ReactNative.Hermes.Windows.targets'))" />
|
|
158
|
+
<Error Condition="!Exists('$(SolutionDir)\packages\$(WinUIPackageName).$(WinUIPackageVersion)\build\native\$(WinUIPackageName).targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\$(WinUIPackageName).$(WinUIPackageVersion)\build\native\$(WinUIPackageName).targets'))" />
|
|
159
|
+
</Target>
|
|
160
|
+
</Project>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<ItemGroup>
|
|
4
|
+
<Midl Include="ReactPackageProvider.idl" />
|
|
5
|
+
</ItemGroup>
|
|
6
|
+
<ItemGroup>
|
|
7
|
+
<ClCompile Include="pch.cpp" />
|
|
8
|
+
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp" />
|
|
9
|
+
<ClCompile Include="ReactPackageProvider.cpp" />
|
|
10
|
+
</ItemGroup>
|
|
11
|
+
<ItemGroup>
|
|
12
|
+
<ClInclude Include="pch.h" />
|
|
13
|
+
<ClInclude Include="ReactPackageProvider.h" />
|
|
14
|
+
<ClInclude Include="ReactNativeModule.h" />
|
|
15
|
+
</ItemGroup>
|
|
16
|
+
<ItemGroup>
|
|
17
|
+
<None Include="PropertySheet.props" />
|
|
18
|
+
<None Include="packages.config" />
|
|
19
|
+
</ItemGroup>
|
|
20
|
+
</Project>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#include "pch.h"
|
|
2
|
+
#include "ReactPackageProvider.h"
|
|
3
|
+
#if __has_include("ReactPackageProvider.g.cpp")
|
|
4
|
+
#include "ReactPackageProvider.g.cpp"
|
|
5
|
+
#endif
|
|
6
|
+
|
|
7
|
+
#include "ReactNativeModule.h"
|
|
8
|
+
|
|
9
|
+
using namespace winrt::Microsoft::ReactNative;
|
|
10
|
+
|
|
11
|
+
namespace winrt::ReactNativeShare::implementation
|
|
12
|
+
{
|
|
13
|
+
|
|
14
|
+
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
|
|
15
|
+
{
|
|
16
|
+
AddAttributedModules(packageBuilder);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
} // namespace winrt::ReactNativeShare::implementation
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#pragma once
|
|
2
|
+
#include "ReactPackageProvider.g.h"
|
|
3
|
+
|
|
4
|
+
using namespace winrt::Microsoft::ReactNative;
|
|
5
|
+
|
|
6
|
+
namespace winrt::ReactNativeShare::implementation
|
|
7
|
+
{
|
|
8
|
+
struct ReactPackageProvider : ReactPackageProviderT<ReactPackageProvider>
|
|
9
|
+
{
|
|
10
|
+
ReactPackageProvider() = default;
|
|
11
|
+
|
|
12
|
+
void CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept;
|
|
13
|
+
};
|
|
14
|
+
} // namespace winrt::ReactNativeShare::implementation
|
|
15
|
+
|
|
16
|
+
namespace winrt::ReactNativeShare::factory_implementation
|
|
17
|
+
{
|
|
18
|
+
|
|
19
|
+
struct ReactPackageProvider : ReactPackageProviderT<ReactPackageProvider, implementation::ReactPackageProvider> {};
|
|
20
|
+
|
|
21
|
+
} // namespace winrt::ReactNativeShare::factory_implementation
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<packages>
|
|
3
|
+
<package id="Microsoft.Windows.CppWinRT" version="2.0.210312.4" targetFramework="native" />
|
|
4
|
+
<package id="ReactNative.Hermes.Windows" version="0.9.0-ms.4" targetFramework="native" />
|
|
5
|
+
<package id="Microsoft.UI.Xaml" version="2.6.0" targetFramework="native" />
|
|
6
|
+
</packages>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#include "pch.h"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#pragma once
|
|
2
|
+
|
|
3
|
+
#define NOMINMAX
|
|
4
|
+
|
|
5
|
+
#include <hstring.h>
|
|
6
|
+
#include <restrictederrorinfo.h>
|
|
7
|
+
#include <unknwn.h>
|
|
8
|
+
#include <windows.h>
|
|
9
|
+
#include <CppWinRTIncludes.h>
|
|
10
|
+
|
|
11
|
+
#include <winrt/Microsoft.ReactNative.h>
|
|
12
|
+
|
|
13
|
+
#include <winrt/Microsoft.UI.Xaml.Automation.Peers.h>
|
|
14
|
+
#include <winrt/Microsoft.UI.Xaml.Controls.Primitives.h>
|
|
15
|
+
#include <winrt/Microsoft.UI.Xaml.Controls.h>
|
|
16
|
+
#include <winrt/Microsoft.UI.Xaml.Media.h>
|
|
17
|
+
#include <winrt/Microsoft.UI.Xaml.XamlTypeInfo.h>
|
|
18
|
+
using namespace winrt::Windows::Foundation;
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
|
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
+
# Visual Studio Version 16
|
|
4
|
+
VisualStudioVersion = 16.0.29215.179
|
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
|
6
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ReactNativeShare", "ReactNativeShare\ReactNativeShare.vcxproj", "{BD58576E-3205-4762-8B1B-EA33774079B7}"
|
|
7
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
8
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136} = {F7D32BD0-2749-483E-9A0D-1635EF7E3136}
|
|
9
|
+
EndProjectSection
|
|
10
|
+
EndProject
|
|
11
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Folly", "..\node_modules\react-native-windows\Folly\Folly.vcxproj", "{A990658C-CE31-4BCC-976F-0FC6B1AF693D}"
|
|
12
|
+
EndProject
|
|
13
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmt", "..\node_modules\react-native-windows\fmt\fmt.vcxproj", "{14B93DC8-FD93-4A6D-81CB-8BC96644501C}"
|
|
14
|
+
EndProject
|
|
15
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ReactCommon", "..\node_modules\react-native-windows\ReactCommon\ReactCommon.vcxproj", "{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}"
|
|
16
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
17
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D} = {A990658C-CE31-4BCC-976F-0FC6B1AF693D}
|
|
18
|
+
EndProjectSection
|
|
19
|
+
EndProject
|
|
20
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Chakra", "..\node_modules\react-native-windows\Chakra\Chakra.vcxitems", "{C38970C0-5FBF-4D69-90D8-CBAC225AE895}"
|
|
21
|
+
EndProject
|
|
22
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.ReactNative", "..\node_modules\react-native-windows\Microsoft.ReactNative\Microsoft.ReactNative.vcxproj", "{F7D32BD0-2749-483E-9A0D-1635EF7E3136}"
|
|
23
|
+
EndProject
|
|
24
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.ReactNative.Cxx", "..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems", "{DA8B35B3-DA00-4B02-BDE6-6A397B3FD46B}"
|
|
25
|
+
EndProject
|
|
26
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Common", "..\node_modules\react-native-windows\Common\Common.vcxproj", "{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}"
|
|
27
|
+
EndProject
|
|
28
|
+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ReactNative", "ReactNative", "{5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}"
|
|
29
|
+
EndProject
|
|
30
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.ReactNative.Shared", "..\node_modules\react-native-windows\Shared\Shared.vcxitems", "{2049DBE9-8D13-42C9-AE4B-413AE38FFFD0}"
|
|
31
|
+
EndProject
|
|
32
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Mso", "..\node_modules\react-native-windows\Mso\Mso.vcxitems", "{84E05BFA-CBAF-4F0D-BFB6-4CE85742A57E}"
|
|
33
|
+
EndProject
|
|
34
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Include", "..\node_modules\react-native-windows\include\Include.vcxitems", "{EF074BA1-2D54-4D49-A28E-5E040B47CD2E}"
|
|
35
|
+
EndProject
|
|
36
|
+
Global
|
|
37
|
+
GlobalSection(SharedMSBuildProjectFiles) = preSolution
|
|
38
|
+
..\node_modules\react-native-windows\Shared\Shared.vcxitems*{2049dbe9-8d13-42c9-ae4b-413ae38fffd0}*SharedItemsImports = 9
|
|
39
|
+
..\node_modules\react-native-windows\Mso\Mso.vcxitems*{84e05bfa-cbaf-4f0d-bfb6-4ce85742a57e}*SharedItemsImports = 9
|
|
40
|
+
..\node_modules\react-native-windows\Chakra\Chakra.vcxitems*{c38970c0-5fbf-4d69-90d8-cbac225ae895}*SharedItemsImports = 9
|
|
41
|
+
..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems*{da8b35b3-da00-4b02-bde6-6a397b3fd46b}*SharedItemsImports = 9
|
|
42
|
+
..\node_modules\react-native-windows\include\Include.vcxitems*{ef074ba1-2d54-4d49-a28e-5e040b47cd2e}*SharedItemsImports = 9
|
|
43
|
+
..\node_modules\react-native-windows\Chakra\Chakra.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
44
|
+
..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
45
|
+
..\node_modules\react-native-windows\Mso\Mso.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
46
|
+
..\node_modules\react-native-windows\Shared\Shared.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
47
|
+
EndGlobalSection
|
|
48
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
49
|
+
Debug|ARM64 = Debug|ARM64
|
|
50
|
+
Debug|x64 = Debug|x64
|
|
51
|
+
Debug|x86 = Debug|x86
|
|
52
|
+
Release|ARM64 = Release|ARM64
|
|
53
|
+
Release|x64 = Release|x64
|
|
54
|
+
Release|x86 = Release|x86
|
|
55
|
+
EndGlobalSection
|
|
56
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
57
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
58
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
59
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
|
60
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|x64.ActiveCfg = Debug|x64
|
|
61
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|x64.Build.0 = Debug|x64
|
|
62
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|x64.Deploy.0 = Debug|x64
|
|
63
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|x86.ActiveCfg = Debug|Win32
|
|
64
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|x86.Build.0 = Debug|Win32
|
|
65
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Debug|x86.Deploy.0 = Debug|Win32
|
|
66
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
67
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|ARM64.Build.0 = Release|ARM64
|
|
68
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|ARM64.Deploy.0 = Release|ARM64
|
|
69
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|x64.ActiveCfg = Release|x64
|
|
70
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|x64.Build.0 = Release|x64
|
|
71
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|x64.Deploy.0 = Release|x64
|
|
72
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|x86.ActiveCfg = Release|Win32
|
|
73
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|x86.Build.0 = Release|Win32
|
|
74
|
+
{BD58576E-3205-4762-8B1B-EA33774079B7}.Release|x86.Deploy.0 = Release|Win32
|
|
75
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
76
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
77
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x64.ActiveCfg = Debug|x64
|
|
78
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x64.Build.0 = Debug|x64
|
|
79
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x86.ActiveCfg = Debug|Win32
|
|
80
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x86.Build.0 = Debug|Win32
|
|
81
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
82
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|ARM64.Build.0 = Release|ARM64
|
|
83
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x64.ActiveCfg = Release|x64
|
|
84
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x64.Build.0 = Release|x64
|
|
85
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x86.ActiveCfg = Release|Win32
|
|
86
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x86.Build.0 = Release|Win32
|
|
87
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
88
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
89
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x64.ActiveCfg = Debug|x64
|
|
90
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x64.Build.0 = Debug|x64
|
|
91
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x86.ActiveCfg = Debug|Win32
|
|
92
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x86.Build.0 = Debug|Win32
|
|
93
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
94
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|ARM64.Build.0 = Release|ARM64
|
|
95
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x64.ActiveCfg = Release|x64
|
|
96
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x64.Build.0 = Release|x64
|
|
97
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x86.ActiveCfg = Release|Win32
|
|
98
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x86.Build.0 = Release|Win32
|
|
99
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
100
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
101
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x64.ActiveCfg = Debug|x64
|
|
102
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x64.Build.0 = Debug|x64
|
|
103
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x86.ActiveCfg = Debug|Win32
|
|
104
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x86.Build.0 = Debug|Win32
|
|
105
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
106
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|ARM64.Build.0 = Release|ARM64
|
|
107
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x64.ActiveCfg = Release|x64
|
|
108
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x64.Build.0 = Release|x64
|
|
109
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x86.ActiveCfg = Release|Win32
|
|
110
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x86.Build.0 = Release|Win32
|
|
111
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
112
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
113
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x64.ActiveCfg = Debug|x64
|
|
114
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x64.Build.0 = Debug|x64
|
|
115
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x86.ActiveCfg = Debug|Win32
|
|
116
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x86.Build.0 = Debug|Win32
|
|
117
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
118
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|ARM64.Build.0 = Release|ARM64
|
|
119
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x64.ActiveCfg = Release|x64
|
|
120
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x64.Build.0 = Release|x64
|
|
121
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x86.ActiveCfg = Release|Win32
|
|
122
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x86.Build.0 = Release|Win32
|
|
123
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
124
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
125
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Debug|x64.ActiveCfg = Debug|x64
|
|
126
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Debug|x64.Build.0 = Debug|x64
|
|
127
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Debug|x86.ActiveCfg = Debug|Win32
|
|
128
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Debug|x86.Build.0 = Debug|Win32
|
|
129
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Debug|x86.Deploy.0 = Debug|Win32
|
|
130
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
131
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|ARM64.Build.0 = Release|ARM64
|
|
132
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x64.ActiveCfg = Release|x64
|
|
133
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x64.Build.0 = Release|x64
|
|
134
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x86.ActiveCfg = Release|Win32
|
|
135
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x86.Build.0 = Release|Win32
|
|
136
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x86.Deploy.0 = Release|Win32
|
|
137
|
+
EndGlobalSection
|
|
138
|
+
GlobalSection(SolutionProperties) = preSolution
|
|
139
|
+
HideSolutionNode = FALSE
|
|
140
|
+
EndGlobalSection
|
|
141
|
+
GlobalSection(NestedProjects) = preSolution
|
|
142
|
+
{A990658C-CE31-4BCC-976F-0FC6B1AF693D} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
143
|
+
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
144
|
+
{C38970C0-5FBF-4D69-90D8-CBAC225AE895} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
145
|
+
{F7D32BD0-2749-483E-9A0D-1635EF7E3136} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
146
|
+
{DA8B35B3-DA00-4B02-BDE6-6A397B3FD46B} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
147
|
+
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
148
|
+
{2049DBE9-8D13-42C9-AE4B-413AE38FFFD0} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
149
|
+
{84E05BFA-CBAF-4F0D-BFB6-4CE85742A57E} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
150
|
+
{EF074BA1-2D54-4D49-A28E-5E040B47CD2E} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
151
|
+
{14B93DC8-FD93-4A6D-81CB-8BC96644501C} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
152
|
+
EndGlobalSection
|
|
153
|
+
GlobalSection(ExtensibilityGlobals) = postSolution
|
|
154
|
+
SolutionGuid = {D43FAD39-F619-437D-BB40-04A3982ACB6A}
|
|
155
|
+
EndGlobalSection
|
|
156
|
+
EndGlobal
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
using System.Reflection;
|
|
2
|
-
using System.Runtime.CompilerServices;
|
|
3
|
-
using System.Runtime.InteropServices;
|
|
4
|
-
|
|
5
|
-
// General Information about an assembly is controlled through the following
|
|
6
|
-
// set of attributes. Change these attribute values to modify the information
|
|
7
|
-
// associated with an assembly.
|
|
8
|
-
[assembly: AssemblyTitle("RNShare")]
|
|
9
|
-
[assembly: AssemblyDescription("")]
|
|
10
|
-
[assembly: AssemblyConfiguration("")]
|
|
11
|
-
[assembly: AssemblyCompany("")]
|
|
12
|
-
[assembly: AssemblyProduct("RNShare")]
|
|
13
|
-
[assembly: AssemblyCopyright("Copyright © 2016")]
|
|
14
|
-
[assembly: AssemblyTrademark("")]
|
|
15
|
-
[assembly: AssemblyCulture("")]
|
|
16
|
-
|
|
17
|
-
// Version information for an assembly consists of the following four values:
|
|
18
|
-
//
|
|
19
|
-
// Major Version
|
|
20
|
-
// Minor Version
|
|
21
|
-
// Build Number
|
|
22
|
-
// Revision
|
|
23
|
-
//
|
|
24
|
-
// You can specify all the values or you can default the Build and Revision Numbers
|
|
25
|
-
// by using the '*' as shown below:
|
|
26
|
-
// [assembly: AssemblyVersion("1.0.*")]
|
|
27
|
-
[assembly: AssemblyVersion("1.0.0.0")]
|
|
28
|
-
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
29
|
-
[assembly: ComVisible(false)]
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!--
|
|
3
|
-
This file contains Runtime Directives, specifications about types your application accesses
|
|
4
|
-
through reflection and other dynamic code patterns. Runtime Directives are used to control the
|
|
5
|
-
.NET Native optimizer and ensure that it does not remove code accessed by your library. If your
|
|
6
|
-
library does not do any reflection, then you generally do not need to edit this file. However,
|
|
7
|
-
if your library reflects over types, especially types passed to it or derived from its types,
|
|
8
|
-
then you should write Runtime Directives.
|
|
9
|
-
|
|
10
|
-
The most common use of reflection in libraries is to discover information about types passed
|
|
11
|
-
to the library. Runtime Directives have three ways to express requirements on types passed to
|
|
12
|
-
your library.
|
|
13
|
-
|
|
14
|
-
1. Parameter, GenericParameter, TypeParameter, TypeEnumerableParameter
|
|
15
|
-
Use these directives to reflect over types passed as a parameter.
|
|
16
|
-
|
|
17
|
-
2. SubTypes
|
|
18
|
-
Use a SubTypes directive to reflect over types derived from another type.
|
|
19
|
-
|
|
20
|
-
3. AttributeImplies
|
|
21
|
-
Use an AttributeImplies directive to indicate that your library needs to reflect over
|
|
22
|
-
types or methods decorated with an attribute.
|
|
23
|
-
|
|
24
|
-
For more information on writing Runtime Directives for libraries, please visit
|
|
25
|
-
http://go.microsoft.com/fwlink/?LinkID=391919
|
|
26
|
-
-->
|
|
27
|
-
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
|
|
28
|
-
<Library Name="RNShare">
|
|
29
|
-
|
|
30
|
-
<!-- add directives for your library here -->
|
|
31
|
-
|
|
32
|
-
</Library>
|
|
33
|
-
</Directives>
|