Skip to content

Commit ef3ac76

Browse files
fix(windows, crash): try/catch fetching network profile, new windows example app (#511)
* fix(windows) Uses rn-windows 0.65, fixes issue #454 * Set module windows target platform version * New Windows example app on rn-win 0.65
1 parent 096ec16 commit ef3ac76

36 files changed

+1383
-1087
lines changed

example/windows/.gitignore

Lines changed: 92 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,92 @@
1-
*AppPackages*
2-
*BundleArtifacts*
3-
4-
#OS junk files
5-
[Tt]humbs.db
6-
*.DS_Store
7-
8-
#Visual Studio files
9-
*.[Oo]bj
10-
*.user
11-
*.aps
12-
*.pch
13-
*.vspscc
14-
*.vssscc
15-
*_i.c
16-
*_p.c
17-
*.ncb
18-
*.suo
19-
*.tlb
20-
*.tlh
21-
*.bak
22-
*.[Cc]ache
23-
*.ilk
24-
*.log
25-
*.lib
26-
*.sbr
27-
*.sdf
28-
*.opensdf
29-
*.opendb
30-
*.unsuccessfulbuild
31-
ipch/
32-
[Oo]bj/
33-
[Bb]in
34-
[Dd]ebug*/
35-
[Rr]elease*/
36-
Ankh.NoLoad
37-
38-
# Visual C++ cache files
39-
ipch/
40-
*.aps
41-
*.ncb
42-
*.opendb
43-
*.opensdf
44-
*.sdf
45-
*.cachefile
46-
*.VC.db
47-
*.VC.VC.opendb
48-
49-
#MonoDevelop
50-
*.pidb
51-
*.userprefs
52-
53-
#Tooling
54-
_ReSharper*/
55-
*.resharper
56-
[Tt]est[Rr]esult*
57-
*.sass-cache
58-
59-
#Project files
60-
[Bb]uild/
61-
62-
#Subversion files
63-
.svn
64-
65-
# Office Temp Files
66-
~$*
67-
68-
# vim Temp Files
69-
*~
70-
71-
#NuGet
72-
packages/
73-
*.nupkg
74-
75-
#ncrunch
76-
*ncrunch*
77-
*crunch*.local.xml
78-
79-
# visual studio database projects
80-
*.dbmdl
81-
82-
#Test files
83-
*.testsettings
84-
85-
#Other files
86-
*.DotSettings
87-
.vs/
88-
*project.lock.json
89-
90-
#Files generated by the VS build
91-
**/Generated Files/**
92-
1+
*AppPackages*
2+
*BundleArtifacts*
3+
4+
#OS junk files
5+
[Tt]humbs.db
6+
*.DS_Store
7+
8+
#Visual Studio files
9+
*.[Oo]bj
10+
*.user
11+
*.aps
12+
*.pch
13+
*.vspscc
14+
*.vssscc
15+
*_i.c
16+
*_p.c
17+
*.ncb
18+
*.suo
19+
*.tlb
20+
*.tlh
21+
*.bak
22+
*.[Cc]ache
23+
*.ilk
24+
*.log
25+
*.lib
26+
*.sbr
27+
*.sdf
28+
*.opensdf
29+
*.opendb
30+
*.unsuccessfulbuild
31+
ipch/
32+
[Oo]bj/
33+
[Bb]in
34+
[Dd]ebug*/
35+
[Rr]elease*/
36+
Ankh.NoLoad
37+
38+
# Visual C++ cache files
39+
ipch/
40+
*.aps
41+
*.ncb
42+
*.opendb
43+
*.opensdf
44+
*.sdf
45+
*.cachefile
46+
*.VC.db
47+
*.VC.VC.opendb
48+
49+
#MonoDevelop
50+
*.pidb
51+
*.userprefs
52+
53+
#Tooling
54+
_ReSharper*/
55+
*.resharper
56+
[Tt]est[Rr]esult*
57+
*.sass-cache
58+
59+
#Project files
60+
[Bb]uild/
61+
62+
#Subversion files
63+
.svn
64+
65+
# Office Temp Files
66+
~$*
67+
68+
# vim Temp Files
69+
*~
70+
71+
#NuGet
72+
packages/
73+
*.nupkg
74+
75+
#ncrunch
76+
*ncrunch*
77+
*crunch*.local.xml
78+
79+
# visual studio database projects
80+
*.dbmdl
81+
82+
#Test files
83+
*.testsettings
84+
85+
#Other files
86+
*.DotSettings
87+
.vs/
88+
*project.lock.json
89+
90+
#Files generated by the VS build
91+
**/Generated Files/**
92+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<PropertyGroup Label="Microsoft.ReactNative Experimental Features">
5+
6+
<!--
7+
Enables default usage of Hermes.
8+
9+
See https://microsoft.github.io/react-native-windows/docs/hermes
10+
-->
11+
<UseHermes>false</UseHermes>
12+
13+
<!--
14+
Changes compilation to assume use of WinUI 3 instead of System XAML.
15+
Requires creation of new project.
16+
17+
See https://microsoft.github.io/react-native-windows/docs/winui3
18+
-->
19+
<UseWinUI3>false</UseWinUI3>
20+
21+
</PropertyGroup>
22+
23+
</Project>

0 commit comments

Comments
 (0)