Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonPobiega committed Apr 28, 2017
0 parents commit 511b7be
Show file tree
Hide file tree
Showing 3 changed files with 175 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .gitattributes
@@ -0,0 +1,70 @@
# Auto detect text files and perform CRLF normalization
* text=auto eol=crlf

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

*.exe -text -diff
*.jpg -text -diff
*.png -text -diff
*.gif -text -diff
*.dll -text -diff
*.pdb -text -diff
*.pptx -text -diff
*.xap -text -diff
*.ico -text -diff
*.ttf -text -diff
*.otf -text -diff

*.cs text diff=csharp
*.config text diff=csharp
*.xml text diff=csharp
*.vb text
*.c text
*.cpp text
*.cxx text
*.h text
*.hxx text
*.py text
*.rb text
*.java text
*.html text
*.htm text
*.css text
*.scss text
*.sass text
*.less text
*.js text
*.lisp text
*.clj text
*.sql text
*.php text
*.lua text
*.m text
*.asm text
*.erl text
*.fs text
*.fsx text
*.hs text
*.targets text
*.psm1 text
*.ps1 text
*.md text
*.DotSettings text
*.txt text eol=crlf
*.bat text eol=crlf

# Custom for Visual Studio
*.suo -text -diff
*.snk -text -diff
*.cub -text -diff
*.wixlib -text -diff
95 changes: 95 additions & 0 deletions .gitignore
@@ -0,0 +1,95 @@
nugets
deploy
build32
binaries
*.vshost.*
.nu
_UpgradeReport.*
*.cache
*~
*.swp
results
CommonAssemblyInfo.cs
lib/sqlite/System.Data.SQLite.dll
*.orig
*.zip
Samples/DataBus/storage
packages
PrecompiledWeb
tempstorage
.learningtransport
core-only
Release
Artifacts
LogFiles
csx
*.ncrunchproject
*.ncrunchsolution
_NCrunch_NServiceBus/*
logs
run-git.cmd
src/Chocolatey/Build/*

installer/[F|f]iles
installer/[C|c]ustom[A|a]ctions
installer/ServiceControl-cache

# Created by https://www.gitignore.io

### VisualStudio ###
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.json.lock
*.nuget.targets
*.lock.json
*.userosscache
*.sln.docstates
.vs/

# mac temp file ignore
.DS_Store

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/

# Roslyn cache directories
*.ide/

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

#NUNIT
*.VisualState.xml
TestResult.xml

# NCrunch
_NCrunch_*
.*crunch*.local.xml

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

src/scaffolding.config

# Approval tests temp file
*.received.*

# JetBrains Rider
.idea/
*.sln.iml
10 changes: 10 additions & 0 deletions LICENSE.md
@@ -0,0 +1,10 @@
By accessing NServiceBus code here, you are agreeing to the following licensing terms.
If you do not agree to these terms, do not access the NServiceBus code.

Your license to the NServiceBus source and/or binaries is governed by the Reciprocal Public License 1.5 (RPL1.5) license as described here:

http://www.opensource.org/licenses/rpl1.5.txt

If you do not wish to release the source of software you build using NServiceBus, you may use NServiceBus source and/or binaries under the License Agreement described here:

http://particular.net/LicenseAgreement

0 comments on commit 511b7be

Please sign in to comment.