Skip to content

Commit e516da7

Browse files
committed
Project restructure
1 parent 71869c6 commit e516da7

File tree

2,691 files changed

+173
-288136
lines changed

Some content is hidden

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

2,691 files changed

+173
-288136
lines changed

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
indent_style = space
9+
indent_size = 4
10+
end_of_line = crlf
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true
14+
15+
[*.md]
16+
trim_trailing_whitespace = false
17+
18+
[*.{js,css,yml}]
19+
indent_size = 2

.gitignore

Lines changed: 15 additions & 200 deletions
Original file line numberDiff line numberDiff line change
@@ -1,205 +1,20 @@
1-
#VS2015
2-
/.vs/
1+
.fake/
2+
.nuget/
3+
.vs/
4+
.idea/
35

4-
## Ignore Visual Studio temporary files, build results, and
5-
## files generated by popular Visual Studio add-ons.
6+
/packages/
7+
/artifacts/
68

7-
# User-specific files
8-
*.suo
9-
*.user
10-
*.sln.docstates
11-
12-
# Build results
13-
14-
[Dd]ebug/
15-
[Rr]elease/
16-
x64/
17-
build/
18-
[Oo]bj/
19-
20-
# MSTest test Results
21-
[Tt]est[Rr]esult*/
22-
[Bb]uild[Ll]og.*
9+
bin/
10+
obj/
11+
node_modules/
2312

24-
*_i.c
25-
*_p.c
26-
*.ilk
27-
*.meta
28-
*.obj
29-
*.pch
30-
*.pdb
31-
*.pgc
32-
*.pgd
33-
*.rsp
34-
*.sbr
35-
*.tlb
36-
*.tli
37-
*.tlh
38-
*.tmp
39-
*.tmp_proj
13+
.DS_Store
14+
*.user
15+
*.suo
4016
*.log
41-
*.vspscc
42-
*.vssscc
43-
.builds
44-
*.pidb
17+
*.swp
18+
*.bak
4519
*.log
46-
*.scc
47-
48-
# Visual C++ cache files
49-
ipch/
50-
*.aps
51-
*.ncb
52-
*.opensdf
53-
#*.sdf
54-
*.cachefile
55-
56-
# Visual Studio profiler
57-
*.psess
58-
*.vsp
59-
*.vspx
60-
61-
# Guidance Automation Toolkit
62-
*.gpState
63-
64-
# ReSharper is a .NET coding add-in
65-
_ReSharper*/
66-
*.[Rr]e[Ss]harper
67-
68-
# TeamCity is a build add-in
69-
_TeamCity*
70-
71-
# DotCover is a Code Coverage Tool
72-
*.dotCover
73-
74-
# NCrunch
75-
*.ncrunch*
76-
.*crunch*.local.xml
77-
78-
# Installshield output folder
79-
[Ee]xpress/
80-
81-
# DocProject is a documentation generator add-in
82-
DocProject/buildhelp/
83-
DocProject/Help/*.HxT
84-
DocProject/Help/*.HxC
85-
DocProject/Help/*.hhc
86-
DocProject/Help/*.hhk
87-
DocProject/Help/*.hhp
88-
DocProject/Help/Html2
89-
DocProject/Help/html
90-
91-
# Click-Once directory
92-
publish/
93-
94-
# Publish Web Output
95-
*.Publish.xml
96-
97-
# NuGet Packages Directory
98-
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
99-
packages/
100-
101-
!src/TestSite/App_Data/packages
102-
!src/TestSite/Umbraco/Developer/Packages
103-
104-
# Windows Azure Build Output
105-
csx
106-
*.build.csdef
107-
108-
# Windows Store app package directory
109-
AppPackages/
110-
111-
# Others
112-
sql/
113-
*.Cache
114-
ClientBin/
115-
[Ss]tyle[Cc]op.*
116-
~$*
117-
*~
118-
*.dbmdl
119-
*.[Pp]ublish.xml
120-
*.pfx
121-
*.publishsettings
122-
123-
# RIA/Silverlight projects
124-
Generated_Code/
125-
126-
# Backup & report files from converting an old project file to a newer
127-
# Visual Studio version. Backup files are not needed, because we have git ;-)
128-
_UpgradeReport_Files/
129-
Backup*/
130-
UpgradeLog*.XML
131-
UpgradeLog*.htm
132-
133-
# SQL Server files
134-
#App_Data/*.mdf
135-
#App_Data/*.ldf
136-
137-
138-
#LightSwitch generated files
139-
GeneratedArtifacts/
140-
_Pvt_Extensions/
141-
ModelManifest.xml
142-
143-
# =========================
144-
# Windows detritus
145-
# =========================
146-
147-
# Windows image file caches
148-
Thumbs.db
149-
ehthumbs.db
150-
151-
# Folder config file
152-
Desktop.ini
153-
154-
# Recycle Bin used on file shares
155-
$RECYCLE.BIN/
156-
157-
# Mac desktop service store files
158-
.DS_Store
159-
160-
# =========================
161-
# Bin folders
162-
# =========================
163-
src/TestSite/[Bb]in/*
164-
src/RJP.MultiUrlPicker/[Bb]in/*
165-
166-
# =========================
167-
# Umbraco
168-
# =========================
169-
src/TestSite/App_Data/NuGetBackup/*
170-
src/TestSite/App_Data/umbraco.config
171-
src/TestSite/App_Data/preview/*.config
172-
src/TestSite/App_Data/TEMP/ClientDependency/
173-
src/TestSite/App_Data/ClientDependency/
174-
src/TestSite/App_Data/TEMP/ExamineIndexes/
175-
src/TestSite/App_Data/TEMP/PluginCache/*
176-
src/TestSite/App_Data/TEMP/SEOChecker/
177-
src/TestSite/App_Data/TEMP/FileUploads/
178-
src/TestSite/App_Data/Logs/*
179-
src/TestSite/App_Data/TEMP/Razor/
180-
src/TestSite/App_Data/FeedCache/
181-
src/TestSite/App_Data/courier/revisions/
182-
src/TestSite/App_Data/courier/cache/*
183-
src/TestSite/App_Data/umbraco.licensing.log.txt
184-
src/TestSite/aspnet_client/
185-
src/TestSite/App_Data/*.udt
186-
src/TestSite/media/created-packages/*
187-
188-
# =========================
189-
# ImageProcessor Cache
190-
# =========================
191-
src/TestSite/App_Data/Cache/*
192-
193-
# =========================
194-
# MultiUrlPicker Specific
195-
# =========================
196-
src/TestSite/App_Plugins/RJP.MultiUrlPicker/*
197-
src/RJP.MultiUrlPicker/test-results.testxml
198-
src/RJP.MultiUrlPicker/test/assets/
199-
tmp/
200-
201-
# =========================
202-
# npm
203-
# =========================
204-
node_modules/
205-
20+
*.orig

.jshintrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.nuget/NuGet.Config

Lines changed: 0 additions & 6 deletions
This file was deleted.

.nuget/NuGet.exe

2.49 MB
Binary file not shown.

0 commit comments

Comments
 (0)