Skip to content

Commit 7f222be

Browse files
authored
Merge pull request #337 from rozele/windows
Adds react-native-windows support for UWP
2 parents abb8272 + 5c5c0db commit 7f222be

27 files changed

Lines changed: 3163 additions & 0 deletions

windows/.gitignore

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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+
#MonoDevelop
40+
*.pidb
41+
*.userprefs
42+
43+
#Tooling
44+
_ReSharper*/
45+
*.resharper
46+
[Tt]est[Rr]esult*
47+
*.sass-cache
48+
49+
#Project files
50+
[Bb]uild/
51+
52+
#Subversion files
53+
.svn
54+
55+
# Office Temp Files
56+
~$*
57+
58+
# vim Temp Files
59+
*~
60+
61+
#NuGet
62+
packages/
63+
*.nupkg
64+
65+
#ncrunch
66+
*ncrunch*
67+
*crunch*.local.xml
68+
69+
# visual studio database projects
70+
*.dbmdl
71+
72+
#Test files
73+
*.testsettings
74+
75+
#Other files
76+
*.DotSettings
77+
.vs/
78+
*project.lock.json

windows/.npmignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# Make sure we don't publish build artifacts to NPM
3+
ARM/
4+
Debug/
5+
x64/
6+
x86/
7+
bin/
8+
obj/
9+
.vs/
1.4 KB
Loading
7.52 KB
Loading
2.87 KB
Loading
1.61 KB
Loading
1.23 KB
Loading
1.42 KB
Loading
3.13 KB
Loading
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Package
3+
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
4+
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
5+
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
6+
IgnorableNamespaces="uap mp">
7+
8+
<Identity Name="ad16a47e-d1a1-4328-9c43-c9609e328e36"
9+
Publisher="CN=ericroz"
10+
Version="1.0.0.0" />
11+
12+
<mp:PhoneIdentity PhoneProductId="ad16a47e-d1a1-4328-9c43-c9609e328e36" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
13+
14+
<Properties>
15+
<DisplayName>RNFS.Tests</DisplayName>
16+
<PublisherDisplayName>ericroz</PublisherDisplayName>
17+
<Logo>Assets\StoreLogo.png</Logo>
18+
</Properties>
19+
20+
<Dependencies>
21+
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
22+
</Dependencies>
23+
24+
<Resources>
25+
<Resource Language="x-generate" />
26+
</Resources>
27+
<Applications>
28+
<Application Id="vstest.executionengine.universal.App"
29+
Executable="$targetnametoken$.exe"
30+
EntryPoint="RNFS.Tests.App">
31+
<uap:VisualElements
32+
DisplayName="RNFS.Tests"
33+
Square150x150Logo="Assets\Square150x150Logo.png"
34+
Square44x44Logo="Assets\Square44x44Logo.png"
35+
Description="RNFS.Tests"
36+
BackgroundColor="transparent">
37+
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
38+
<uap:SplashScreen Image="Assets\SplashScreen.png" />
39+
</uap:VisualElements>
40+
</Application>
41+
</Applications>
42+
<Capabilities>
43+
<Capability Name="internetClientServer" />
44+
</Capabilities>
45+
</Package>

0 commit comments

Comments
 (0)