Skip to content

Commit d6363f8

Browse files
committed
Release 5.0.0
1 parent 3597f21 commit d6363f8

623 files changed

Lines changed: 10028 additions & 12973 deletions

File tree

Some content is hidden

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

.editorconfig

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Suppress: EC112
2+
root=true
3+
4+
[*]
5+
trim_trailing_whitespace = true
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
10+
[*.{config,xml,js,json,html,css,sql,csproj,props,yml}]
11+
indent_size = 2
12+
13+
[*.sh]
14+
end_of_line = lf
15+
16+
[*.{cmd, bat}]
17+
end_of_line = crlf
18+
19+
[{**/tests/**,**/Tests/**,**/*.Tests/**}.cs]
20+
resharper_class_never_instantiated_global_highlighting=do_not_show
21+
resharper_consider_using_configure_await_highlighting=do_not_show
22+
resharper_event_exception_not_documented_highlighting=do_not_show
23+
resharper_exception_not_documented_highlighting=do_not_show
24+
resharper_exception_not_documented_optional_highlighting=do_not_show
25+
resharper_heap_view_boxing_allocation=do_not_show
26+
resharper_heap_view_boxing_allocation_highlighting=do_not_show
27+
resharper_heap_view_closure_allocation_highlighting=do_not_show
28+
resharper_heap_view_delegate_allocation_highlighting=do_not_show
29+
resharper_heap_view_object_allocation_highlighting=do_not_show
30+
resharper_heap_view_object_allocation_evident_highlighting=do_not_show
31+
resharper_possible_null_reference_exception_highlighting=do_not_show
32+
resharper_private_field_can_be_converted_to_local_variable_highlighting=do_not_show
33+
resharper_return_value_of_pure_method_is_not_used_highlighting=do_not_show
34+
resharper_suggest_base_type_for_parameter_highlighting=do_not_show
35+
resharper_class_with_virtual_members_never_inherited_local_highlighting=do_not_show
36+
resharper_class_with_virtual_members_never_inherited_global_highlighting=do_not_show
37+
38+
[**/{Startup,Program}.cs]
39+
resharper_event_exception_not_documented_highlighting=do_not_show
40+
resharper_exception_not_documented_highlighting=do_not_show
41+
resharper_exception_not_documented_optional_highlighting=do_not_show
42+
resharper_heap_view_object_allocation_evident_highlighting=do_not_show

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.DotSettings eol=lf
2+
*.sh text eol=lf

.gitignore

Lines changed: 283 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,293 @@
1-
packages/**/*
2-
Drops
3-
obj
4-
bin
5-
debug
6-
.vs
7-
_Resharper.*
8-
_ReSharper.*
9-
*.csproj.user
10-
*.resharper.user
11-
*.ReSharper.user
12-
*.resharper
13-
*.ReSharper
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
6+
# User-specific files
147
*.suo
15-
*.cache
8+
*.user
9+
*.userosscache
10+
*.sln.docstates
11+
*.vcxproj.filters
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Build results
17+
[Dd]ebug/
18+
[Dd]ebugPublic/
19+
[Rr]elease/
20+
[Rr]eleases/
21+
x64/
22+
x86/
23+
bld/
24+
[Bb]in/
25+
[Oo]bj/
26+
[Ll]og/
27+
tools/
28+
.ReSharperCaches/
29+
30+
# Visual Studio 2015 cache/options directory
31+
.vs/
32+
# Uncomment if you have tasks that create the project's static files in wwwroot
33+
#wwwroot/
34+
35+
# MSTest test Results
36+
[Tt]est[Rr]esult*/
37+
[Bb]uild[Ll]og.*
38+
39+
# NUNIT
40+
*.VisualState.xml
41+
TestResult.xml
42+
43+
# Build Results of an ATL Project
44+
[Dd]ebugPS/
45+
[Rr]eleasePS/
46+
dlldata.c
47+
48+
# .NET Core
49+
project.lock.json
50+
project.fragment.lock.json
51+
artifacts/
52+
**/Properties/launchSettings.json
53+
54+
*_i.c
55+
*_p.c
56+
*_i.h
57+
*.ilk
58+
*.meta
59+
*.obj
60+
*.pch
61+
*.pdb
62+
*.pgc
63+
*.pgd
64+
*.rsp
65+
*.sbr
66+
*.tlb
67+
*.tli
68+
*.tlh
69+
*.tmp
70+
*.tmp_proj
71+
*.log
72+
*.vspscc
73+
*.vssscc
74+
.builds
75+
*.pidb
76+
*.svclog
77+
*.scc
78+
79+
# Chutzpah Test files
80+
_Chutzpah*
81+
82+
# Visual C++ cache files
83+
ipch/
84+
*.aps
85+
*.ncb
86+
*.opendb
87+
*.opensdf
88+
*.sdf
89+
*.cachefile
90+
*.VC.db
91+
*.VC.VC.opendb
92+
93+
# Visual Studio profiler
94+
*.psess
95+
*.vsp
96+
*.vspx
97+
*.sap
98+
99+
# TFS 2012 Local Workspace
100+
$tf/
101+
102+
# Guidance Automation Toolkit
103+
*.gpState
104+
105+
# ReSharper is a .NET coding add-in
106+
_ReSharper*/
107+
*.[Rr]e[Ss]harper
108+
*.DotSettings.user
109+
110+
# JustCode is a .NET coding add-in
111+
.JustCode
112+
113+
# TeamCity is a build add-in
114+
_TeamCity*
115+
116+
# DotCover is a Code Coverage Tool
117+
*.dotCover
118+
119+
# Visual Studio code coverage results
120+
*.coverage
121+
*.coveragexml
122+
123+
# NCrunch
124+
_NCrunch_*
125+
.*crunch*.local.xml
126+
nCrunchTemp_*
127+
128+
# MightyMoose
129+
*.mm.*
130+
AutoTest.Net/
131+
132+
# Web workbench (sass)
133+
.sass-cache/
134+
135+
# Installshield output folder
136+
[Ee]xpress/
137+
138+
# DocProject is a documentation generator add-in
139+
DocProject/buildhelp/
140+
DocProject/Help/*.HxT
141+
DocProject/Help/*.HxC
142+
DocProject/Help/*.hhc
143+
DocProject/Help/*.hhk
144+
DocProject/Help/*.hhp
145+
DocProject/Help/Html2
146+
DocProject/Help/html
147+
148+
# Click-Once directory
149+
publish/
150+
151+
# Publish Web Output
152+
*.[Pp]ublish.xml
153+
*.azurePubxml
154+
# TODO: Comment the next line if you want to checkin your web deploy settings
155+
# but database connection strings (with potential passwords) will be unencrypted
156+
*.pubxml
157+
*.publishproj
158+
159+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
160+
# checkin your Azure Web App publish settings, but sensitive information contained
161+
# in these scripts will be unencrypted
162+
PublishScripts/
163+
164+
# NuGet Packages
165+
*.nupkg
166+
# The packages folder can be ignored because of Package Restore
167+
**/packages/*
168+
# except build/, which is used as an MSBuild target.
169+
!**/packages/build/
170+
# Uncomment if necessary however generally it will be regenerated when needed
171+
#!**/packages/repositories.config
172+
# NuGet v3's project.json files produces more ignoreable files
173+
*.nuget.props
174+
*.nuget.targets
175+
176+
# Microsoft Azure Build Output
177+
csx/
178+
*.build.csdef
179+
180+
# Microsoft Azure Emulator
181+
ecf/
182+
rcf/
183+
184+
# Windows Store app package directories and files
185+
AppPackages/
186+
BundleArtifacts/
187+
Package.StoreAssociation.xml
188+
_pkginfo.txt
189+
190+
# Visual Studio cache files
191+
# files ending in .cache can be ignored
192+
*.[Cc]ache
193+
# but keep track of directories ending in .cache
194+
!*.[Cc]ache/
195+
196+
# Others
197+
ClientBin/
198+
~$*
16199
*~
17-
*.swp
18-
*.dbproj.user
19200
*.dbmdl
201+
*.dbproj.schemaview
202+
*.jfm
203+
*.pfx
204+
*.publishsettings
205+
node_modules/
206+
orleans.codegen.cs
207+
208+
# Since there are multiple workflows, uncomment next line to ignore bower_components
209+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
210+
#bower_components/
211+
212+
# RIA/Silverlight projects
213+
Generated_Code/
214+
215+
# Backup & report files from converting an old project file
216+
# to a newer Visual Studio version. Backup files are not needed,
217+
# because we have git ;-)
218+
_UpgradeReport_Files/
219+
Backup*/
220+
UpgradeLog*.XML
221+
UpgradeLog*.htm
222+
223+
# SQL Server files
224+
*.mdf
225+
*.ldf
226+
227+
# Business Intelligence projects
228+
*.rdl.data
229+
*.bim.layout
230+
*.bim_*.settings
231+
232+
# Microsoft Fakes
233+
FakesAssemblies/
234+
235+
# GhostDoc plugin setting file
236+
*.GhostDoc.xml
237+
238+
# Node.js Tools for Visual Studio
239+
.ntvs_analysis.dat
240+
241+
# Visual Studio 6 build log
242+
*.plg
243+
244+
# Visual Studio 6 workspace options file
245+
*.opt
246+
247+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
248+
*.vbw
249+
250+
# Visual Studio LightSwitch build output
251+
**/*.HTMLClient/GeneratedArtifacts
252+
**/*.DesktopClient/GeneratedArtifacts
253+
**/*.DesktopClient/ModelManifest.xml
254+
**/*.Server/GeneratedArtifacts
255+
**/*.Server/ModelManifest.xml
256+
_Pvt_Extensions
257+
258+
# Paket dependency manager
259+
.paket/paket.exe
260+
paket-files/
261+
262+
# FAKE - F# Make
263+
.fake/
264+
265+
# JetBrains Rider
266+
.idea/
267+
*.sln.iml
268+
269+
# CodeRush
270+
.cr/
271+
272+
# Python Tools for Visual Studio (PTVS)
273+
__pycache__/
274+
*.pyc
275+
276+
# Cake - Uncomment if you are using it
277+
# tools/
278+
279+
packages/**/*
280+
Drops
20281
error-*.xml
21-
*_mm_cache.bin
22-
*.dotCover
23-
StyleCop.Cache
24282
SpecificationReports
25283
NugetWorkspace
26284
Packages
27285
Common/AssemblyVersion.cs
28-
*.DotSettings.user
29286
Artefacts/Documentation/build/
30-
_NCrunch*/
31-
*.*ncrunch*
32-
*.user
33-
.vs
34287
/ReleaseNotes.md
288+
/ResharperCaches
289+
/DropsErrorOutput.xml
290+
/DropsTestOutput.xml
291+
/Src/Common/AssemblyVersion.cs
292+
/Docker/mssql-data
293+
/tmp/

.gitmodules

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

.vscode/tasks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "cake",
8+
"script": "RunUnitTests",
9+
"problemMatcher": []
10+
}
11+
]
12+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"restructuredtext.confPath": "d:\\Work\\vk\\Projects\\Sharp-Architecture\\Artefacts\\Documentation\\source"
3+
}

Artefacts/Documentation/source/general/acknowledgment.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ leaders. Many have been personally involved with helping to shape S#arp
1010
Architecture's current form including and in no paticular order: Alec
1111
Whittington, Chris Richards, Seif Attar, Jon George, Howard van Rooijen,
1212
Billy McCafferty, Frank Laub, Kyle "the coding hillbilly" Baley, Simone
13-
Busoli, Jay Oliver, Lee Carter, Luis Abreu, James Gregory, and Martin
14-
Hornagold ... along with many others who have asked WTF at all the right
13+
Busoli, Jay Oliver, Lee Carter, Luis Abreu, James Gregory, Vitaliy Kryvosheiev
14+
and Martin Hornagold ... along with many others who have asked WTF at all the right
1515
times. A special thanks to Roy Bradley who was brave crazy enough to
1616
commission Billy to develop the first version 0.1. Finally, none of this
1717
would have been possible and/or applicable without the tireless, unpaid

0 commit comments

Comments
 (0)