Skip to content

Commit 3516bcb

Browse files
authored
Merge pull request #321 from akavache/develop
+semver: major
2 parents 6df3c24 + fe37bd3 commit 3516bcb

File tree

177 files changed

+778
-6183
lines changed

Some content is hidden

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

177 files changed

+778
-6183
lines changed

.gitattributes

Lines changed: 42 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,45 @@
1-
# Auto detect text files and perform LF normalization
1+
# Catch all for anything we forgot. Add rules if you get CRLF to LF warnings.
22
* text=auto
33

4-
# Custom for Visual Studio
5-
*.cs diff=csharp
6-
*.sln text eol=crlf
4+
# Text files that should be normalized to LF in odb.
5+
*.cs text eol=lf diff=csharp
6+
*.xaml text
7+
*.config text
8+
*.c text
9+
*.h text
10+
*.cpp text
11+
*.hpp text
712

8-
# Standard to msysgit
9-
*.doc diff=astextplain
10-
*.DOC diff=astextplain
11-
*.docx diff=astextplain
12-
*.DOCX diff=astextplain
13-
*.dot diff=astextplain
14-
*.DOT diff=astextplain
15-
*.pdf diff=astextplain
16-
*.PDF diff=astextplain
17-
*.rtf diff=astextplain
18-
*.RTF diff=astextplain
13+
*.sln text
14+
*.csproj text
15+
*.vcxproj text
16+
17+
*.md text
18+
*.tt text
19+
*.sh text
20+
*.ps1 text
21+
*.cmd text
22+
*.bat text
23+
*.markdown text
24+
*.msbuild text
25+
26+
27+
# Binary files that should not be normalized or diffed
28+
*.png binary
29+
*.jpg binary
30+
*.gif binary
31+
*.ico binary
32+
*.rc binary
33+
34+
*.pfx binary
35+
*.snk binary
36+
*.dll binary
37+
*.exe binary
38+
*.lib binary
39+
*.exp binary
40+
*.pdb binary
41+
*.sdf binary
42+
*.7z binary
43+
44+
# Generated file should just use CRLF, it's fiiine
45+
SolutionInfo.cs text eol=crlf diff=csharp

.gitignore

Lines changed: 72 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,34 @@
44
# User-specific files
55
*.suo
66
*.user
7+
*.userosscache
78
*.sln.docstates
89

10+
# User-specific files (MonoDevelop/Xamarin Studio)
11+
*.userprefs
12+
913
# Build results
1014
[Dd]ebug/
1115
[Dd]ebugPublic/
1216
[Rr]elease/
1317
[Rr]eleases/
1418
x64/
19+
x86/
1520
build/
1621
bld/
1722
[Bb]in/
1823
[Oo]bj/
1924

20-
# Roslyn cache directories
21-
*.ide/
25+
# Visual Studio 2015 cache/options directory
26+
.vs/
27+
# Uncomment if you have tasks that create the project's static files in wwwroot
28+
#wwwroot/
2229

2330
# MSTest test Results
2431
[Tt]est[Rr]esult*/
2532
[Bb]uild[Ll]og.*
2633

27-
#NUNIT
34+
# NUNIT
2835
*.VisualState.xml
2936
TestResult.xml
3037

@@ -33,6 +40,12 @@ TestResult.xml
3340
[Rr]eleasePS/
3441
dlldata.c
3542

43+
# DNX
44+
*.lock.json
45+
artifacts/
46+
*.nuget.props
47+
*.nuget.targets
48+
3649
*_i.c
3750
*_p.c
3851
*_i.h
@@ -65,6 +78,7 @@ _Chutzpah*
6578
ipch/
6679
*.aps
6780
*.ncb
81+
*.opendb
6882
*.opensdf
6983
*.sdf
7084
*.cachefile
@@ -73,6 +87,7 @@ ipch/
7387
*.psess
7488
*.vsp
7589
*.vspx
90+
*.sap
7691

7792
# TFS 2012 Local Workspace
7893
$tf/
@@ -85,7 +100,7 @@ _ReSharper*/
85100
*.[Rr]e[Ss]harper
86101
*.DotSettings.user
87102

88-
# JustCode is a .NET coding addin-in
103+
# JustCode is a .NET coding add-in
89104
.JustCode
90105

91106
# TeamCity is a build add-in
@@ -97,6 +112,7 @@ _TeamCity*
97112
# NCrunch
98113
_NCrunch_*
99114
.*crunch*.local.xml
115+
nCrunchTemp_*
100116

101117
# MightyMoose
102118
*.mm.*
@@ -124,43 +140,48 @@ publish/
124140
# Publish Web Output
125141
*.[Pp]ublish.xml
126142
*.azurePubxml
127-
## TODO: Comment the next line if you want to checkin your
128-
## web deploy settings but do note that will include unencrypted
129-
## passwords
143+
# TODO: Comment the next line if you want to checkin your web deploy settings
144+
# but database connection strings (with potential passwords) will be unencrypted
130145
*.pubxml
146+
*.publishproj
131147

132148
# NuGet Packages
133-
packages/*
134149
*.nupkg
135-
## TODO: If the tool you use requires repositories.config
136-
## uncomment the next line
137-
!packages/repositories.config
138-
139-
# Enable "build/" folder in the NuGet Packages folder since
140-
# NuGet packages use it for MSBuild targets.
141-
# This line needs to be after the ignore of the build folder
142-
# (and the packages folder if the line above has been uncommented)
143-
!packages/build/
150+
# The packages folder can be ignored because of Package Restore
151+
**/packages/*
152+
# except build/, which is used as an MSBuild target.
153+
!**/packages/build/
154+
# Uncomment if necessary however generally it will be regenerated when needed
155+
#!**/packages/repositories.config
144156

145157
# Windows Azure Build Output
146158
csx/
147159
*.build.csdef
148160

161+
# Windows Azure Emulator
162+
ecf/
163+
rcf/
164+
149165
# Windows Store app package directory
150166
AppPackages/
167+
BundleArtifacts/
168+
169+
# Visual Studio cache files
170+
# files ending in .cache can be ignored
171+
*.[Cc]ache
172+
# but keep track of directories ending in .cache
173+
!*.[Cc]ache/
151174

152175
# Others
153-
sql/
154-
*.Cache
155176
ClientBin/
156-
[Ss]tyle[Cc]op.*
157177
~$*
158178
*~
159179
*.dbmdl
160180
*.dbproj.schemaview
161181
*.pfx
162182
*.publishsettings
163183
node_modules/
184+
orleans.codegen.cs
164185

165186
# RIA/Silverlight projects
166187
Generated_Code/
@@ -185,10 +206,36 @@ UpgradeLog*.htm
185206
# Microsoft Fakes
186207
FakesAssemblies/
187208

188-
# Custom
209+
# GhostDoc plugin setting file
210+
*.GhostDoc.xml
189211

190-
Release/
191-
AppPackages/
192-
*.userprefs
212+
# Node.js Tools for Visual Studio
213+
.ntvs_analysis.dat
214+
215+
# Visual Studio 6 build log
216+
*.plg
217+
218+
# Visual Studio 6 workspace options file
219+
*.opt
220+
221+
# Visual Studio LightSwitch build output
222+
**/*.HTMLClient/GeneratedArtifacts
223+
**/*.DesktopClient/GeneratedArtifacts
224+
**/*.DesktopClient/ModelManifest.xml
225+
**/*.Server/GeneratedArtifacts
226+
**/*.Server/ModelManifest.xml
227+
_Pvt_Extensions
228+
229+
# Paket dependency manager
230+
.paket/paket.exe
231+
232+
# FAKE - F# Make
233+
.fake/
234+
235+
# Tools
236+
tools/
193237

194-
.DS_Store
238+
# ReactiveUI
239+
artifacts/
240+
src/CommonAssemblyInfo.cs
241+
src/ReactiveUI.Events/Events_*.cs

.gitmodules

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

.nuget/NuGet.exe

-1.59 MB
Binary file not shown.

0 commit comments

Comments
 (0)