Skip to content

Instantly share code, notes, and snippets.

@codeprogression
Created February 26, 2011 07:21
Show Gist options
  • Select an option

  • Save codeprogression/845029 to your computer and use it in GitHub Desktop.

Select an option

Save codeprogression/845029 to your computer and use it in GitHub Desktop.
.gitignore for .NET projects
# .gitignore for .NET projects
# Thanks to Derick Bailey
# http://www.lostechies.com/blogs/derickbailey/archive/2009/05/18/a-net-c-developer-s-gitignore-file.aspx
# Additional Thanks to
# - Alexey Abramov
# Standard VS.NET and ReSharper Foo
[Oo]bj
[Bb]in
*.csproj.user
*ReSharper*
*resharper*
*.suo
*.xap
*.bak
*.cache
_cache
_cache\*
*log.txt
*.svclog
*.docstates
artifacts/
*/ClientBin
*/Generated_Code
# Database projects
*.dbmdl*
*.dbproj.*
sql/
@johnnonolan
Copy link
Copy Markdown

For SSRS reports they produce .data files when running the reports. I'd probably include those

@codeprogression
Copy link
Copy Markdown
Author

Thanks @johnnonolan, I haven't used SSRS for about 5 years, so I didn't need that. But if I ever do, now I know. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment