Skip to content

Commit db1bbc2

Browse files
committed
Updated to AngleSharp v0.10
1 parent 609ec22 commit db1bbc2

15 files changed

+314
-429
lines changed

.gitignore

Lines changed: 194 additions & 171 deletions
Original file line numberDiff line numberDiff line change
@@ -1,171 +1,194 @@
1-
#################
2-
## Eclipse
3-
#################
4-
5-
*.pydevproject
6-
.project
7-
.metadata
8-
tmp/
9-
*.tmp
10-
*.bak
11-
*.swp
12-
*~.nib
13-
local.properties
14-
.classpath
15-
.settings/
16-
.loadpath
17-
18-
# External tool builders
19-
.externalToolBuilders/
20-
21-
# Locally stored "Eclipse launch configurations"
22-
*.launch
23-
24-
# CDT-specific
25-
.cproject
26-
27-
# PDT-specific
28-
.buildpath
29-
30-
31-
#################
32-
## Visual Studio
33-
#################
34-
35-
## Ignore Visual Studio temporary files, build results, and
36-
## files generated by popular Visual Studio add-ons.
37-
38-
# User-specific files
39-
*.suo
40-
*.user
41-
*.sln.docstates
42-
43-
# Build results
44-
[Dd]ebug/
45-
[Rr]elease/
46-
[Bb]in/
47-
[Bb]uild/
48-
[Oo]bj/
49-
[Dd]ebug/
50-
[Rr]elease/
51-
[Pp]ackages/
52-
[Tt]ools/
53-
![Tt]ools/packages.config
54-
AngleSharp.sln.ide/
55-
AngleSharp.Core.sln.ide/
56-
TestResults/
57-
*.nupkg
58-
*_i.c
59-
*_p.c
60-
*.ilk
61-
*.meta
62-
*.obj
63-
*.pch
64-
*.pdb
65-
*.pgc
66-
*.pgd
67-
*.rsp
68-
*.sbr
69-
*.tlb
70-
*.tli
71-
*.tlh
72-
*.tmp
73-
*.vspscc
74-
.builds
75-
*.dotCover
76-
*.dotSettings
77-
78-
# Visual C++ cache files
79-
ipch/
80-
*.aps
81-
*.ncb
82-
*.opensdf
83-
*.sdf
84-
85-
# Visual Studio profiler
86-
*.psess
87-
*.vsp
88-
89-
# ReSharper is a .NET coding add-in
90-
_ReSharper*
91-
92-
# Installshield output folder
93-
[Ee]xpress
94-
95-
# DocProject is a documentation generator add-in
96-
DocProject/buildhelp/
97-
DocProject/Help/*.HxT
98-
DocProject/Help/*.HxC
99-
DocProject/Help/*.hhc
100-
DocProject/Help/*.hhk
101-
DocProject/Help/*.hhp
102-
DocProject/Help/Html2
103-
DocProject/Help/html
104-
105-
# Click-Once directory
106-
publish
107-
108-
# Others
109-
[Bb]in
110-
[Oo]bj
111-
sql
112-
TestResults
113-
*.Cache
114-
ClientBin
115-
stylecop.*
116-
~$*
117-
*.dbmdl
118-
Generated_Code #added for RIA/Silverlight projects
119-
120-
# Backup & report files from converting an old project file to a newer
121-
# Visual Studio version. Backup files are not needed, because we have git ;-)
122-
_UpgradeReport_Files/
123-
Backup*/
124-
UpgradeLog*.XML
125-
126-
127-
128-
############
129-
## Windows
130-
############
131-
132-
# Windows image file caches
133-
Thumbs.db
134-
135-
# Folder config file
136-
Desktop.ini
137-
138-
139-
#############
140-
## Python
141-
#############
142-
143-
*.py[co]
144-
145-
# Packages
146-
*.egg
147-
*.egg-info
148-
dist
149-
build
150-
eggs
151-
parts
152-
var
153-
sdist
154-
develop-eggs
155-
.installed.cfg
156-
157-
# Installer logs
158-
pip-log.txt
159-
160-
# Unit test / coverage reports
161-
.coverage
162-
.tox
163-
164-
#Translations
165-
*.mo
166-
167-
#Mr Developer
168-
.mr.developer.cfg
169-
170-
# Mac crap
171-
.DS_Store
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
tmp/
9+
*.tmp
10+
*.bak
11+
*.swp
12+
*~.nib
13+
local.properties
14+
.classpath
15+
.settings/
16+
.loadpath
17+
18+
# External tool builders
19+
.externalToolBuilders/
20+
21+
# Locally stored "Eclipse launch configurations"
22+
*.launch
23+
24+
# CDT-specific
25+
.cproject
26+
27+
# PDT-specific
28+
.buildpath
29+
30+
################
31+
## Rider
32+
################
33+
34+
.idea/
35+
36+
################
37+
## VS Code
38+
################
39+
40+
.vscode/
41+
42+
#################
43+
## Visual Studio
44+
#################
45+
46+
## Ignore Visual Studio temporary files, build results, and
47+
## files generated by popular Visual Studio add-ons.
48+
49+
# User-specific files
50+
*.suo
51+
*.user
52+
*.userosscache
53+
*.sln.docstates
54+
55+
# User-specific files (MonoDevelop/Xamarin Studio)
56+
*.userprefs
57+
58+
# Build results
59+
[Dd]ebug/
60+
[Rr]elease/
61+
[Bb]in/
62+
[Bb]uild/
63+
[Oo]bj/
64+
65+
# Visual Studio 2015 cache/options directory
66+
.vs/
67+
68+
# DNX
69+
*.lock.json
70+
artifacts/
71+
72+
[Dd]ebug/
73+
[Rr]elease/
74+
[Pp]ackages/
75+
[Tt]ools/
76+
![Tt]ools/packages.config
77+
TestResults/
78+
*.nuget.targets
79+
*.nuget.props
80+
*.nupkg
81+
*_i.c
82+
*_p.c
83+
*.ilk
84+
*.meta
85+
*.obj
86+
*.pch
87+
*.pdb
88+
*.pgc
89+
*.pgd
90+
*.rsp
91+
*.sbr
92+
*.tlb
93+
*.tli
94+
*.tlh
95+
*.tmp
96+
*.vspscc
97+
.builds
98+
*.dotCover
99+
*.dotSettings
100+
101+
# Visual C++ cache files
102+
ipch/
103+
*.aps
104+
*.ncb
105+
*.opensdf
106+
*.sdf
107+
108+
# Visual Studio profiler
109+
*.psess
110+
*.vsp
111+
112+
# ReSharper is a .NET coding add-in
113+
_ReSharper*
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+
# Others
132+
[Bb]in
133+
[Oo]bj
134+
sql
135+
TestResults
136+
*.Cache
137+
ClientBin
138+
stylecop.*
139+
~$*
140+
*.dbmdl
141+
Generated_Code #added for RIA/Silverlight projects
142+
143+
# Backup & report files from converting an old project file to a newer
144+
# Visual Studio version. Backup files are not needed, because we have git ;-)
145+
_UpgradeReport_Files/
146+
Backup*/
147+
UpgradeLog*.XML
148+
149+
150+
151+
############
152+
## Windows
153+
############
154+
155+
# Windows image file caches
156+
Thumbs.db
157+
158+
# Folder config file
159+
Desktop.ini
160+
161+
162+
#############
163+
## Python
164+
#############
165+
166+
*.py[co]
167+
168+
# Packages
169+
*.egg
170+
*.egg-info
171+
dist
172+
build
173+
eggs
174+
parts
175+
var
176+
sdist
177+
develop-eggs
178+
.installed.cfg
179+
180+
# Installer logs
181+
pip-log.txt
182+
183+
# Unit test / coverage reports
184+
.coverage
185+
.tox
186+
187+
#Translations
188+
*.mo
189+
190+
#Mr Developer
191+
.mr.developer.cfg
192+
193+
# Mac crap
194+
.DS_Store

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
# AngleSharp.Io
44

5-
[![Build status](https://img.shields.io/appveyor/ci/FlorianRappl/AngleSharp-Io.svg?style=flat-square)](https://ci.appveyor.com/project/FlorianRappl/AngleSharp-Io)
6-
[![GitHub tag](https://img.shields.io/github/tag/AngleSharp/AngleSharp.Io.svg?style=flat-square)](https://github.com/AngleSharp/AngleSharp.Io/releases)
5+
[![Build Status](https://img.shields.io/appveyor/ci/FlorianRappl/AngleSharp-Io.svg?style=flat-square)](https://ci.appveyor.com/project/FlorianRappl/AngleSharp-Io)
6+
[![GitHub Tag](https://img.shields.io/github/tag/AngleSharp/AngleSharp.Io.svg?style=flat-square)](https://github.com/AngleSharp/AngleSharp.Io/releases)
77
[![NuGet Count](https://img.shields.io/nuget/dt/AngleSharp.Io.svg?style=flat-square)](https://www.nuget.org/packages/AngleSharp.Io/)
88
[![Issues Open](https://img.shields.io/github/issues/AngleSharp/AngleSharp.Io.svg?style=flat-square)](https://github.com/AngleSharp/AngleSharp.Io/issues)
9-
[![CLA assistant](https://cla-assistant.io/readme/badge/AngleSharp/AngleSharp.Io?style=flat-square)](https://cla-assistant.io/AngleSharp/AngleSharp.Io)
9+
[![StackOverflow Questions](https://img.shields.io/stackexchange/stackoverflow/t/anglesharp.svg?style=flat-square)](https://stackoverflow.com/tags/anglesharp)
10+
[![CLA Assistant](https://cla-assistant.io/readme/badge/AngleSharp/AngleSharp.Io?style=flat-square)](https://cla-assistant.io/AngleSharp/AngleSharp.Io)
1011

1112
AngleSharp.Io extends AngleSharp with powerful requesters, caching mechanisms, and storage systems. It is coupled more strongly to the underlying operating system than AngleSharp itself. Therefore it has stronger dependencies and demands and cannot be released as a PCL.
1213

0 commit comments

Comments
 (0)