Skip to content

Commit 5113399

Browse files
committedDec 31, 2012
Create Web API formatter for Message Pack.
0 parents  commit 5113399

File tree

4 files changed

+96
-0
lines changed

4 files changed

+96
-0
lines changed
 

‎.gitattributes

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
*.doc diff=astextplain
2+
*.DOC diff=astextplain
3+
*.docx diff=astextplain
4+
*.DOCX diff=astextplain
5+
*.dot diff=astextplain
6+
*.DOT diff=astextplain
7+
*.pdf diff=astextplain
8+
*.PDF diff=astextplain
9+
*.rtf diff=astextplain
10+
*.RTF diff=astextplain
11+
12+
*.jpg binary
13+
*.png binary
14+
*.gif binary
15+
16+
*.cs text diff=csharp
17+
*.vb text
18+
*.c text
19+
*.cpp text
20+
*.cxx text
21+
*.h text
22+
*.hxx text
23+
*.py text
24+
*.rb text
25+
*.java text
26+
*.html text
27+
*.htm text
28+
*.css text
29+
*.scss text
30+
*.sass text
31+
*.less text
32+
*.js text
33+
*.lisp text
34+
*.clj text
35+
*.sql text
36+
*.php text
37+
*.lua text
38+
*.m text
39+
*.asm text
40+
*.erl text
41+
*.fs text
42+
*.fsx text
43+
*.hs text
44+
45+
*.csproj text merge=union
46+
*.vbproj text merge=union
47+
*.fsproj text merge=union
48+
*.dbproj text merge=union
49+
*.sln text eol=crlf merge=union

‎.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
#ignore thumbnails created by windows
3+
Thumbs.db
4+
#Ignore files build by Visual Studio
5+
*.obj
6+
*.exe
7+
*.pdb
8+
*.user
9+
*.aps
10+
*.pch
11+
*.vspscc
12+
*_i.c
13+
*_p.c
14+
*.ncb
15+
*.suo
16+
*.tlb
17+
*.tlh
18+
*.bak
19+
*.cache
20+
*.ilk
21+
*.log
22+
[Bb]in
23+
[Dd]ebug*/
24+
*.lib
25+
*.sbr
26+
obj/
27+
[Rr]elease*/
28+
_ReSharper*/
29+
[Tt]est[Rr]esult*
30+
build/
31+
deploy/
32+
docs/
33+
nuget/
34+
packages/

‎LICENSE.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright (c) 2012 Pedro Reys, Chris Missal, Headspring and other contributors
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

‎readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
WebAPIContrib
2+
=============
3+
4+
Community Contributions for ASP.NET Web API
5+
6+
http://webapicontrib.github.com/

0 commit comments

Comments
 (0)
Please sign in to comment.