Skip to content

Commit f8cf778

Browse files
committed
Initial commit
0 parents  commit f8cf778

File tree

3 files changed

+289
-0
lines changed

3 files changed

+289
-0
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto
2+
3+
# patch files need lf line-endings, even on Windows
4+
*.patch text eol=lf

.gitignore

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

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# .NET Source-build Reference Packages
2+
3+
This repository contains source and build scripts for source-buildable reference versions of historical .NET Core packages that are referenced by the [source-build](https://github.com/dotnet/source-build) repo. These are used only when building the source-build repo.
4+
5+
### Build on Linux or MacOS
6+
7+
```
8+
./build.sh
9+
```

0 commit comments

Comments
 (0)