Skip to content

Commit 20fd598

Browse files
authored
Merge pull request #5 from Kudo/feature/wpf
Add WPF support
2 parents 6bfeb57 + d3a5135 commit 20fd598

File tree

9 files changed

+840
-479
lines changed

9 files changed

+840
-479
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,18 @@ In Xcode, add `libsqlite3.tbd` to your project's `Build Phases` ➜ `Link Binary
5858
#### Windows
5959
1. Open the solution in `Visual Studio` for your Windows apps.
6060
- Right click your in the Explorer and click `Add` > `Existing Project...`.
61-
- Navigate to `./<app-name>/windows/RNSqlite2/` and add `RNSqlite2.csproj`.
61+
- [UWP] Navigate to `./<app-name>/windows/RNSqlite2/` and add `RNSqlite2.csproj`.
62+
63+
[WPF] Navigate to `./<app-name>/windows/RNSqlite2.Net46/` and add `RNSqlite2.Net46.csproj`.
6264
- Right click on your React Native Windows app under your solutions directory and click `Add` > `Reference...`.
63-
- Check the `RNSqlite2` you just added and press `Ok`.
65+
- [UWP] Check the `RNSqlite2` you just added and press `Ok`.
66+
67+
[WPF] Check the `RNSqlite2.Net46` you just added and press `Ok`.
6468
2. Open `MainPage.cs` in your app
6569
- Edit it like below:
6670

6771
```
68-
using RNFileSystem;
72+
using RNSqlite2;
6973
7074
get
7175
{

windows/.gitignore

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
*AppPackages*
2+
*BundleArtifacts*
3+
*ReactAssets*
4+
5+
#OS junk files
6+
[Tt]humbs.db
7+
*.DS_Store
8+
9+
#Visual Studio files
10+
*.[Oo]bj
11+
*.user
12+
*.aps
13+
*.pch
14+
*.vspscc
15+
*.vssscc
16+
*_i.c
17+
*_p.c
18+
*.ncb
19+
*.suo
20+
*.tlb
21+
*.tlh
22+
*.bak
23+
*.[Cc]ache
24+
*.ilk
25+
*.log
26+
*.lib
27+
*.sbr
28+
*.sdf
29+
*.opensdf
30+
*.opendb
31+
*.unsuccessfulbuild
32+
ipch/
33+
[Oo]bj/
34+
[Bb]in
35+
[Dd]ebug*/
36+
[Rr]elease*/
37+
Ankh.NoLoad
38+
39+
# Visual C++ cache files
40+
ipch/
41+
*.aps
42+
*.ncb
43+
*.opendb
44+
*.opensdf
45+
*.sdf
46+
*.cachefile
47+
*.VC.db
48+
*.VC.VC.opendb
49+
50+
#MonoDevelop
51+
*.pidb
52+
*.userprefs
53+
54+
#Tooling
55+
_ReSharper*/
56+
*.resharper
57+
[Tt]est[Rr]esult*
58+
*.sass-cache
59+
60+
#Project files
61+
[Bb]uild/
62+
63+
#Subversion files
64+
.svn
65+
66+
# Office Temp Files
67+
~$*
68+
69+
# vim Temp Files
70+
*~
71+
72+
#NuGet
73+
packages/
74+
*.nupkg
75+
76+
#ncrunch
77+
*ncrunch*
78+
*crunch*.local.xml
79+
80+
# visual studio database projects
81+
*.dbmdl
82+
83+
#Test files
84+
*.testsettings
85+
86+
#Other files
87+
*.DotSettings
88+
.vs/
89+
*project.lock.json
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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("RNSqlite2.Net46")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("RNSqlite2.Net46")]
13+
[assembly: AssemblyCopyright("Copyright © 2017")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("b2dced9a-bde1-4eae-8c69-c562448aca2c")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]
Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(SolutionDir)\packages\SQLite.3.13.0\build\net45\SQLite.props" Condition="Exists('$(SolutionDir)\packages\SQLite.3.13.0\build\net45\SQLite.props')" />
4+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
5+
<PropertyGroup>
6+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8+
<ProjectGuid>{B2DCED9A-BDE1-4EAE-8C69-C562448ACA2C}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>RNSqlite2.Net46</RootNamespace>
12+
<AssemblyName>RNSqlite2.Net46</AssemblyName>
13+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
<NuGetPackageImportStamp>
16+
</NuGetPackageImportStamp>
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<DefineConstants>TRACE;DEBUG</DefineConstants>
24+
<ErrorReport>prompt</ErrorReport>
25+
<WarningLevel>4</WarningLevel>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="Microsoft.Data.Sqlite, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
37+
<HintPath>$(SolutionDir)\packages\Microsoft.Data.Sqlite.1.1.1\lib\net451\Microsoft.Data.Sqlite.dll</HintPath>
38+
<Private>True</Private>
39+
</Reference>
40+
<Reference Include="Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
41+
<HintPath>$(SolutionDir)\packages\Microsoft.Win32.Primitives.4.3.0\lib\net46\Microsoft.Win32.Primitives.dll</HintPath>
42+
<Private>True</Private>
43+
</Reference>
44+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
45+
<HintPath>$(SolutionDir)\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
46+
<Private>True</Private>
47+
</Reference>
48+
<Reference Include="PCLStorage, Version=1.0.2.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
49+
<HintPath>$(SolutionDir)\packages\PCLStorage.1.0.2\lib\net45\PCLStorage.dll</HintPath>
50+
<Private>True</Private>
51+
</Reference>
52+
<Reference Include="PCLStorage.Abstractions, Version=1.0.2.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
53+
<HintPath>$(SolutionDir)\packages\PCLStorage.1.0.2\lib\net45\PCLStorage.Abstractions.dll</HintPath>
54+
<Private>True</Private>
55+
</Reference>
56+
<Reference Include="System" />
57+
<Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
58+
<HintPath>$(SolutionDir)\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
59+
<Private>True</Private>
60+
</Reference>
61+
<Reference Include="System.ComponentModel.Composition" />
62+
<Reference Include="System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
63+
<HintPath>$(SolutionDir)\packages\System.Console.4.3.0\lib\net46\System.Console.dll</HintPath>
64+
<Private>True</Private>
65+
</Reference>
66+
<Reference Include="System.Core" />
67+
<Reference Include="System.Diagnostics.DiagnosticSource, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
68+
<HintPath>$(SolutionDir)\packages\System.Diagnostics.DiagnosticSource.4.3.0\lib\net46\System.Diagnostics.DiagnosticSource.dll</HintPath>
69+
<Private>True</Private>
70+
</Reference>
71+
<Reference Include="System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
72+
<HintPath>$(SolutionDir)\packages\System.Globalization.Calendars.4.3.0\lib\net46\System.Globalization.Calendars.dll</HintPath>
73+
<Private>True</Private>
74+
</Reference>
75+
<Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
76+
<HintPath>$(SolutionDir)\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
77+
<Private>True</Private>
78+
</Reference>
79+
<Reference Include="System.IO.Compression.FileSystem" />
80+
<Reference Include="System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
81+
<HintPath>$(SolutionDir)\packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll</HintPath>
82+
<Private>True</Private>
83+
</Reference>
84+
<Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
85+
<HintPath>$(SolutionDir)\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll</HintPath>
86+
<Private>True</Private>
87+
</Reference>
88+
<Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
89+
<HintPath>$(SolutionDir)\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
90+
<Private>True</Private>
91+
</Reference>
92+
<Reference Include="System.Net.Http, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
93+
<HintPath>$(SolutionDir)\packages\System.Net.Http.4.3.0\lib\net46\System.Net.Http.dll</HintPath>
94+
<Private>True</Private>
95+
</Reference>
96+
<Reference Include="System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
97+
<HintPath>$(SolutionDir)\packages\System.Net.Sockets.4.3.0\lib\net46\System.Net.Sockets.dll</HintPath>
98+
<Private>True</Private>
99+
</Reference>
100+
<Reference Include="System.Numerics" />
101+
<Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
102+
<HintPath>$(SolutionDir)\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
103+
<Private>True</Private>
104+
</Reference>
105+
<Reference Include="System.Security.Cryptography.Algorithms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
106+
<HintPath>$(SolutionDir)\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net46\System.Security.Cryptography.Algorithms.dll</HintPath>
107+
<Private>True</Private>
108+
</Reference>
109+
<Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
110+
<HintPath>$(SolutionDir)\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
111+
<Private>True</Private>
112+
</Reference>
113+
<Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
114+
<HintPath>$(SolutionDir)\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
115+
<Private>True</Private>
116+
</Reference>
117+
<Reference Include="System.Security.Cryptography.X509Certificates, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
118+
<HintPath>$(SolutionDir)\packages\System.Security.Cryptography.X509Certificates.4.3.0\lib\net46\System.Security.Cryptography.X509Certificates.dll</HintPath>
119+
<Private>True</Private>
120+
</Reference>
121+
<Reference Include="System.Xml.Linq" />
122+
<Reference Include="System.Data.DataSetExtensions" />
123+
<Reference Include="Microsoft.CSharp" />
124+
<Reference Include="System.Data" />
125+
<Reference Include="System.Xml" />
126+
<Reference Include="System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
127+
<HintPath>$(SolutionDir)\packages\System.Xml.ReaderWriter.4.3.0\lib\net46\System.Xml.ReaderWriter.dll</HintPath>
128+
<Private>True</Private>
129+
</Reference>
130+
</ItemGroup>
131+
<ItemGroup>
132+
<Compile Include="Properties\AssemblyInfo.cs" />
133+
<Compile Include="..\RNSqlite2Module.cs" />
134+
<Compile Include="..\RNSqlite2Package.cs" />
135+
</ItemGroup>
136+
<ItemGroup>
137+
<ProjectReference Include="$(SolutionDir)\..\node_modules\react-native-windows\ReactWindows\ReactNative.Net46\ReactNative.Net46.csproj">
138+
<Project>{22cbff9c-fe36-43e8-a246-266c7635e662}</Project>
139+
<Name>ReactNative.Net46</Name>
140+
</ProjectReference>
141+
</ItemGroup>
142+
<ItemGroup>
143+
<None Include="app.config" />
144+
<None Include="packages.config" />
145+
</ItemGroup>
146+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
147+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
148+
<PropertyGroup>
149+
<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>
150+
</PropertyGroup>
151+
<Error Condition="!Exists('$(SolutionDir)\packages\SQLite.3.13.0\build\net45\SQLite.props')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\SQLite.3.13.0\build\net45\SQLite.props'))" />
152+
</Target>
153+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
154+
Other similar extension points exist, see Microsoft.Common.targets.
155+
<Target Name="BeforeBuild">
156+
</Target>
157+
<Target Name="AfterBuild">
158+
</Target>
159+
-->
160+
</Project>

windows/RNSqlite2.Net46/app.config

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="System.Reactive.Core" publicKeyToken="94bc3704cddfc263" culture="neutral" />
7+
<bindingRedirect oldVersion="0.0.0.0-3.0.3000.0" newVersion="3.0.3000.0" />
8+
</dependentAssembly>
9+
<dependentAssembly>
10+
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
11+
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
12+
</dependentAssembly>
13+
</assemblyBinding>
14+
</runtime>
15+
</configuration>
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Microsoft.Data.Sqlite" version="1.1.1" targetFramework="net46" />
4+
<package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="net46" />
5+
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="net46" />
6+
<package id="NETStandard.Library" version="1.6.1" targetFramework="net46" />
7+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net46" />
8+
<package id="PCLStorage" version="1.0.2" targetFramework="net46" />
9+
<package id="SQLite" version="3.13.0" targetFramework="net46" />
10+
<package id="System.AppContext" version="4.3.0" targetFramework="net46" />
11+
<package id="System.Collections" version="4.3.0" targetFramework="net46" />
12+
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net46" />
13+
<package id="System.Console" version="4.3.0" targetFramework="net46" />
14+
<package id="System.Diagnostics.Debug" version="4.3.0" targetFramework="net46" />
15+
<package id="System.Diagnostics.DiagnosticSource" version="4.3.0" targetFramework="net46" />
16+
<package id="System.Diagnostics.Tools" version="4.3.0" targetFramework="net46" />
17+
<package id="System.Diagnostics.Tracing" version="4.3.0" targetFramework="net46" />
18+
<package id="System.Globalization" version="4.3.0" targetFramework="net46" />
19+
<package id="System.Globalization.Calendars" version="4.3.0" targetFramework="net46" />
20+
<package id="System.IO" version="4.3.0" targetFramework="net46" />
21+
<package id="System.IO.Compression" version="4.3.0" targetFramework="net46" />
22+
<package id="System.IO.Compression.ZipFile" version="4.3.0" targetFramework="net46" />
23+
<package id="System.IO.FileSystem" version="4.3.0" targetFramework="net46" />
24+
<package id="System.IO.FileSystem.Primitives" version="4.3.0" targetFramework="net46" />
25+
<package id="System.Linq" version="4.3.0" targetFramework="net46" />
26+
<package id="System.Linq.Expressions" version="4.3.0" targetFramework="net46" />
27+
<package id="System.Net.Http" version="4.3.0" targetFramework="net46" />
28+
<package id="System.Net.Primitives" version="4.3.0" targetFramework="net46" />
29+
<package id="System.Net.Sockets" version="4.3.0" targetFramework="net46" />
30+
<package id="System.ObjectModel" version="4.3.0" targetFramework="net46" />
31+
<package id="System.Reflection" version="4.3.0" targetFramework="net46" />
32+
<package id="System.Reflection.Extensions" version="4.3.0" targetFramework="net46" />
33+
<package id="System.Reflection.Primitives" version="4.3.0" targetFramework="net46" />
34+
<package id="System.Resources.ResourceManager" version="4.3.0" targetFramework="net46" />
35+
<package id="System.Runtime" version="4.3.0" targetFramework="net46" />
36+
<package id="System.Runtime.Extensions" version="4.3.0" targetFramework="net46" />
37+
<package id="System.Runtime.Handles" version="4.3.0" targetFramework="net46" />
38+
<package id="System.Runtime.InteropServices" version="4.3.0" targetFramework="net46" />
39+
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net46" />
40+
<package id="System.Runtime.Numerics" version="4.3.0" targetFramework="net46" />
41+
<package id="System.Security.Cryptography.Algorithms" version="4.3.0" targetFramework="net46" />
42+
<package id="System.Security.Cryptography.Encoding" version="4.3.0" targetFramework="net46" />
43+
<package id="System.Security.Cryptography.Primitives" version="4.3.0" targetFramework="net46" />
44+
<package id="System.Security.Cryptography.X509Certificates" version="4.3.0" targetFramework="net46" />
45+
<package id="System.Text.Encoding" version="4.3.0" targetFramework="net46" />
46+
<package id="System.Text.Encoding.Extensions" version="4.3.0" targetFramework="net46" />
47+
<package id="System.Text.RegularExpressions" version="4.3.0" targetFramework="net46" />
48+
<package id="System.Threading" version="4.3.0" targetFramework="net46" />
49+
<package id="System.Threading.Tasks" version="4.3.0" targetFramework="net46" />
50+
<package id="System.Threading.Timer" version="4.3.0" targetFramework="net46" />
51+
<package id="System.Xml.ReaderWriter" version="4.3.0" targetFramework="net46" />
52+
<package id="System.Xml.XDocument" version="4.3.0" targetFramework="net46" />
53+
</packages>

windows/RNSqlite2/RNSqlite2.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@
108108
</ItemGroup>
109109
<ItemGroup>
110110
<Compile Include="Properties\AssemblyInfo.cs" />
111-
<Compile Include="RNSqlite2Module.cs" />
112-
<Compile Include="RNSqlite2Package.cs" />
111+
<Compile Include="..\RNSqlite2Module.cs" />
112+
<Compile Include="..\RNSqlite2Package.cs" />
113113
</ItemGroup>
114114
<ItemGroup>
115115
<ProjectReference Include="..\..\..\..\node_modules\react-native-windows\ReactWindows\ReactNative\ReactNative.csproj">

0 commit comments

Comments
 (0)