Created
October 29, 2012 06:07
-
-
Save georgeck/3971855 to your computer and use it in GitHub Desktop.
.gitignore file for Visual studio project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.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 | |
*.bmp binary | |
*.gif binary | |
*.jpg binary | |
*.png binary | |
*.ascx text | |
*.cmd text | |
*.coffee text | |
*.config text | |
*.cs text diff=csharp | |
*.csproj text merge=union | |
*.css text | |
*.cshtml text | |
*.htm text | |
*.html text | |
*.js text | |
*.msbuild text | |
*.resx text merge=union | |
*.ruleset text | |
*.Stylecop text | |
*.targets text | |
*.tt text | |
*.txt text | |
*.vb text | |
*.vbhtml text | |
*.vbproj text merge=union | |
*.xml text | |
*.xunit text | |
*.sln text eol=crlf merge=union |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Oo]bj/ | |
[Bb]in/ | |
*.user | |
/TestResults | |
*.vspscc | |
*.vssscc | |
deploy | |
deploy/* | |
*.suo | |
*.cache | |
*.docstates | |
_ReSharper.* | |
*.csproj.user | |
*[Rr]e[Ss]harper.user | |
_ReSharper.*/ | |
packages/* | |
artifacts/* | |
msbuild.log | |
PublishProfiles/ | |
packages | |
*.dot[Cc]over |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment