Skip to content

Commit 4771afb

Browse files
committed
Changes to fork mono-native code to our repo from corefx
Copy over the pal_io files to our bugfix location and update the Makefile to use the forked files.
1 parent 2df3b19 commit 4771afb

File tree

4 files changed

+2563
-6
lines changed

4 files changed

+2563
-6
lines changed

external/corefx-bugfix/.gitignore

Lines changed: 280 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,280 @@
1+
syntax: glob
2+
3+
### VisualStudio ###
4+
5+
# Tool Runtime Dir
6+
/[Tt]ools/
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.userosscache
12+
*.sln.docstates
13+
14+
# Build results
15+
.idea/
16+
[Dd]ebug/
17+
[Dd]ebugPublic/
18+
[Rr]elease/
19+
[Rr]eleases/
20+
x64/
21+
x86/
22+
build/
23+
bld/
24+
[Bb]in/
25+
[Oo]bj/
26+
msbuild.log
27+
msbuild.err
28+
msbuild.wrn
29+
msbuild.binlog
30+
.deps/
31+
.dirstamp
32+
.libs/
33+
*.lo
34+
*.o
35+
36+
# Cross building rootfs
37+
cross/rootfs/
38+
cross/android-rootfs/
39+
# add x86 as it is ignored in 'Build results'
40+
!cross/x86
41+
42+
# Visual Studio 2015
43+
.vs/
44+
45+
# Visual Studio 2015 Pre-CTP6
46+
*.sln.ide
47+
*.ide/
48+
49+
# MSTest test Results
50+
[Tt]est[Rr]esult*/
51+
[Bb]uild[Ll]og.*
52+
53+
#NUNIT
54+
*.VisualState.xml
55+
TestResult.xml
56+
57+
# Build Results of an ATL Project
58+
[Dd]ebugPS/
59+
[Rr]eleasePS/
60+
dlldata.c
61+
62+
*_i.c
63+
*_p.c
64+
*_i.h
65+
*.ilk
66+
*.meta
67+
*.obj
68+
*.pch
69+
*.pdb
70+
*.pgc
71+
*.pgd
72+
*.rsp
73+
*.sbr
74+
*.tlb
75+
*.tli
76+
*.tlh
77+
*.tmp
78+
*.tmp_proj
79+
*.log
80+
*.vspscc
81+
*.vssscc
82+
.builds
83+
*.pidb
84+
*.svclog
85+
*.scc
86+
87+
# Chutzpah Test files
88+
_Chutzpah*
89+
90+
# Visual C++ cache files
91+
ipch/
92+
*.aps
93+
*.ncb
94+
*.opendb
95+
*.opensdf
96+
*.sdf
97+
*.cachefile
98+
*.VC.db
99+
100+
# Visual Studio profiler
101+
*.psess
102+
*.vsp
103+
*.vspx
104+
105+
# TFS 2012 Local Workspace
106+
$tf/
107+
108+
# Guidance Automation Toolkit
109+
*.gpState
110+
111+
# ReSharper is a .NET coding add-in
112+
_ReSharper*/
113+
*.[Rr]e[Ss]harper
114+
*.DotSettings.user
115+
116+
# JustCode is a .NET coding addin-in
117+
.JustCode
118+
119+
# TeamCity is a build add-in
120+
_TeamCity*
121+
122+
# DotCover is a Code Coverage Tool
123+
*.dotCover
124+
125+
# NCrunch
126+
_NCrunch_*
127+
.*crunch*.local.xml
128+
129+
# MightyMoose
130+
*.mm.*
131+
AutoTest.Net/
132+
133+
# Web workbench (sass)
134+
.sass-cache/
135+
136+
# Installshield output folder
137+
[Ee]xpress/
138+
139+
# DocProject is a documentation generator add-in
140+
DocProject/buildhelp/
141+
DocProject/Help/*.HxT
142+
DocProject/Help/*.HxC
143+
DocProject/Help/*.hhc
144+
DocProject/Help/*.hhk
145+
DocProject/Help/*.hhp
146+
DocProject/Help/Html2
147+
DocProject/Help/html
148+
149+
# Click-Once directory
150+
publish/
151+
152+
# Publish Web Output
153+
*.[Pp]ublish.xml
154+
*.azurePubxml
155+
*.pubxml
156+
*.publishproj
157+
158+
# NuGet Packages
159+
*.nuget.props
160+
*.nuget.targets
161+
*.nupkg
162+
**/packages/*
163+
164+
# NuGet package restore lockfiles
165+
project.lock.json
166+
167+
# Windows Azure Build Output
168+
csx/
169+
*.build.csdef
170+
171+
# Windows Store app package directory
172+
AppPackages/
173+
174+
# Others
175+
*.Cache
176+
ClientBin/
177+
[Ss]tyle[Cc]op.*
178+
~$*
179+
*.dbmdl
180+
*.dbproj.schemaview
181+
*.pfx
182+
*.publishsettings
183+
node_modules/
184+
*.metaproj
185+
*.metaproj.tmp
186+
bin.localpkg/
187+
188+
# RIA/Silverlight projects
189+
Generated_Code/
190+
191+
# Backup & report files from converting an old project file
192+
# to a newer Visual Studio version. Backup files are not needed,
193+
# because we have git ;-)
194+
_UpgradeReport_Files/
195+
Backup*/
196+
UpgradeLog*.XML
197+
UpgradeLog*.htm
198+
199+
# SQL Server files
200+
*.mdf
201+
*.ldf
202+
203+
# Business Intelligence projects
204+
*.rdl.data
205+
*.bim.layout
206+
*.bim_*.settings
207+
208+
# Microsoft Fakes
209+
FakesAssemblies/
210+
211+
### MonoDevelop ###
212+
213+
*.pidb
214+
*.userprefs
215+
216+
### Windows ###
217+
218+
# Windows image file caches
219+
Thumbs.db
220+
ehthumbs.db
221+
222+
# Folder config file
223+
Desktop.ini
224+
225+
# Recycle Bin used on file shares
226+
$RECYCLE.BIN/
227+
228+
# Windows Installer files
229+
*.cab
230+
*.msi
231+
*.msm
232+
*.msp
233+
234+
# Windows shortcuts
235+
*.lnk
236+
237+
### Linux ###
238+
239+
*~
240+
241+
# KDE directory preferences
242+
.directory
243+
244+
### OSX ###
245+
246+
.DS_Store
247+
.AppleDouble
248+
.LSOverride
249+
250+
# Icon must end with two \r
251+
Icon
252+
253+
# Thumbnails
254+
._*
255+
256+
# Files that might appear on external disk
257+
.Spotlight-V100
258+
.Trashes
259+
260+
# Directories potentially created on remote AFP share
261+
.AppleDB
262+
.AppleDesktop
263+
Network Trash Folder
264+
Temporary Items
265+
.apdisk
266+
267+
# vim temporary files
268+
[._]*.s[a-w][a-z]
269+
[._]s[a-w][a-z]
270+
*.un~
271+
Session.vim
272+
.netrwhist
273+
*~
274+
275+
# Visual Studio Code
276+
.vscode/
277+
278+
# Private test configuration and binaries.
279+
config.ps1
280+
**/IISApplications

0 commit comments

Comments
 (0)