Created
          October 9, 2010 20:13 
        
      - 
      
 - 
        
Save codeprimate/618561 to your computer and use it in GitHub Desktop.  
    .gitignore for Visual Studio projects
  
        
  
    
      This file contains hidden or 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
    
  
  
    
  | # .gitignore for Visual Studio projects | |
| #ignore outputs of project | |
| build*/ | |
| src/SharpArch/CommonAssemblyInfo.cs | |
| #ignore thumbnails created by windows | |
| Thumbs.db | |
| #Ignore files build by Visual Studio | |
| *.obj | |
| *.exe | |
| *.pdb | |
| *.user | |
| *.aps | |
| *.pch | |
| *.vspscc | |
| *_i.c | |
| *_p.c | |
| *.ncb | |
| *.suo | |
| *.tlb | |
| *.tlh | |
| *.bak | |
| *.cache | |
| *.ilk | |
| *.log | |
| [Bb]in | |
| [Dd]ebug*/ | |
| *.lib | |
| *.sbr | |
| obj/ | |
| [Rr]elease*/ | |
| _ReSharper*/ | |
| [Tt]est[Rr]esult* | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment