Skip to content

Commit ef1e2ab

Browse files
committed
Initial commit to populate CoreCLR repo
[tfs-changeset: 1407945]
0 parents  commit ef1e2ab

File tree

7,751 files changed

+2769596
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,751 files changed

+2769596
-0
lines changed

.gitattributes

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain
64+
65+
*.in text eol=lf
66+
*.sh text eol=lf

.gitignore

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

.gitmirror

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror.

0 commit comments

Comments
 (0)