Skip to content

Commit beff230

Browse files
committed
Restructured and added Cake as build system
1 parent ba71b6e commit beff230

File tree

111 files changed

+492
-115
lines changed

Some content is hidden

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

111 files changed

+492
-115
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
11+
[*.csproj]
12+
indent_style = space
13+
indent_size = 2

.gitignore

Lines changed: 102 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
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+
135
## Ignore Visual Studio temporary files, build results, and
236
## files generated by popular Visual Studio add-ons.
337

@@ -8,36 +42,21 @@
842

943
# Build results
1044
[Dd]ebug/
11-
[Dd]ebugPublic/
1245
[Rr]elease/
13-
[Rr]eleases/
14-
x64/
15-
x86/
16-
build/
17-
bld/
1846
[Bb]in/
47+
[Bb]uild/
1948
[Oo]bj/
20-
Nuget/lib/
21-
22-
# Roslyn cache directories
23-
*.ide/
24-
25-
# MSTest test Results
26-
[Tt]est[Rr]esult*/
27-
[Bb]uild[Ll]og.*
28-
29-
#NUNIT
30-
*.VisualState.xml
31-
TestResult.xml
32-
33-
# Build Results of an ATL Project
34-
[Dd]ebugPS/
35-
[Rr]eleasePS/
36-
dlldata.c
37-
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
3858
*_i.c
3959
*_p.c
40-
*_i.h
4160
*.ilk
4261
*.meta
4362
*.obj
@@ -51,64 +70,27 @@ dlldata.c
5170
*.tli
5271
*.tlh
5372
*.tmp
54-
*.tmp_proj
55-
*.log
5673
*.vspscc
57-
*.vssscc
5874
.builds
59-
*.pidb
60-
*.svclog
61-
*.scc
62-
63-
# Chutzpah Test files
64-
_Chutzpah*
75+
*.dotCover
76+
*.dotSettings
6577

6678
# Visual C++ cache files
6779
ipch/
6880
*.aps
6981
*.ncb
7082
*.opensdf
7183
*.sdf
72-
*.cachefile
7384

7485
# Visual Studio profiler
7586
*.psess
7687
*.vsp
77-
*.vspx
78-
79-
# TFS 2012 Local Workspace
80-
$tf/
81-
82-
# Guidance Automation Toolkit
83-
*.gpState
8488

8589
# ReSharper is a .NET coding add-in
86-
_ReSharper*/
87-
*.[Rr]e[Ss]harper
88-
*.DotSettings.user
89-
90-
# JustCode is a .NET coding addin-in
91-
.JustCode
92-
93-
# TeamCity is a build add-in
94-
_TeamCity*
95-
96-
# DotCover is a Code Coverage Tool
97-
*.dotCover
98-
99-
# NCrunch
100-
_NCrunch_*
101-
.*crunch*.local.xml
102-
103-
# MightyMoose
104-
*.mm.*
105-
AutoTest.Net/
106-
107-
# Web workbench (sass)
108-
.sass-cache/
90+
_ReSharper*
10991

11092
# Installshield output folder
111-
[Ee]xpress/
93+
[Ee]xpress
11294

11395
# DocProject is a documentation generator add-in
11496
DocProject/buildhelp/
@@ -121,64 +103,69 @@ DocProject/Help/Html2
121103
DocProject/Help/html
122104

123105
# Click-Once directory
124-
publish/
125-
126-
# Publish Web Output
127-
*.[Pp]ublish.xml
128-
*.azurePubxml
129-
# TODO: Comment the next line if you want to checkin your web deploy settings
130-
# but database connection strings (with potential passwords) will be unencrypted
131-
*.pubxml
132-
*.publishproj
133-
134-
# NuGet Packages
135-
*.nupkg
136-
# The packages folder can be ignored because of Package Restore
137-
**/packages/*
138-
# except build/, which is used as an MSBuild target.
139-
!**/packages/build/
140-
# If using the old MSBuild-Integrated Package Restore, uncomment this:
141-
#!**/packages/repositories.config
142-
143-
# Windows Azure Build Output
144-
csx/
145-
*.build.csdef
146-
147-
# Windows Store app package directory
148-
AppPackages/
106+
publish
149107

150108
# Others
151-
sql/
109+
[Bb]in
110+
[Oo]bj
111+
sql
112+
TestResults
152113
*.Cache
153-
ClientBin/
154-
[Ss]tyle[Cc]op.*
114+
ClientBin
115+
stylecop.*
155116
~$*
156-
*~
157117
*.dbmdl
158-
*.dbproj.schemaview
159-
*.pfx
160-
*.publishsettings
161-
node_modules/
162-
163-
# RIA/Silverlight projects
164-
Generated_Code/
118+
Generated_Code #added for RIA/Silverlight projects
165119

166-
# Backup & report files from converting an old project file
167-
# to a newer Visual Studio version. Backup files are not needed,
168-
# because we have git ;-)
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 ;-)
169122
_UpgradeReport_Files/
170123
Backup*/
171124
UpgradeLog*.XML
172-
UpgradeLog*.htm
173125

174-
# SQL Server files
175-
*.mdf
176-
*.ldf
177126

178-
# Business Intelligence projects
179-
*.rdl.data
180-
*.bim.layout
181-
*.bim_*.settings
182127

183-
# Microsoft Fakes
184-
FakesAssemblies/
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

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# 0.4.0
2+
3+
- Fixed some bugs (#24, #20, #17, #16)
4+
- Added (pseudo) view extensions (#15)
5+
- Added XHR object (#14)
6+
- Provided event constructor (#5)
7+
8+
# 0.3.0
9+
10+
- Enhanced C# / JavaScript intergration (#9)
11+
- Enabled extending of `IWindow` (#6)
12+
- Editing of IHtmlInlineFrameElement content (#4)
13+
- Extensibility of scripting engine (#3)
14+
15+
# 0.1.0
16+
17+
- Initial release

0 commit comments

Comments
 (0)