/ .gitignore
.gitignore
  1  ## Ignore Visual Studio temporary files, build results, and
  2  ## files generated by popular Visual Studio add-ons.
  3  
  4  # User-specific files
  5  *.suo
  6  *.user
  7  *.sln.docstates
  8  .vs
  9  .vscode
 10  
 11  # Build results
 12  
 13  [Dd]ebug/
 14  [Rr]elease/
 15  x64/
 16  build/
 17  [Bb]in/
 18  [Oo]bj/
 19  
 20  # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
 21  !packages/*/build/
 22  
 23  # MSTest test Results
 24  [Tt]est[Rr]esult*/
 25  [Bb]uild[Ll]og.*
 26  
 27  *_i.c
 28  *_p.c
 29  *.ilk
 30  *.meta
 31  *.obj
 32  *.pch
 33  *.pdb
 34  *.pgc
 35  *.pgd
 36  *.rsp
 37  *.sbr
 38  *.tlb
 39  *.tli
 40  *.tlh
 41  *.tmp
 42  *.tmp_proj
 43  *.log
 44  *.vspscc
 45  *.vssscc
 46  .builds
 47  *.pidb
 48  *.log
 49  *.scc
 50  
 51  # Visual C++ cache files
 52  ipch/
 53  *.aps
 54  *.ncb
 55  *.opensdf
 56  *.sdf
 57  *.cachefile
 58  
 59  # Visual Studio profiler
 60  *.psess
 61  *.vsp
 62  *.vspx
 63  
 64  # Guidance Automation Toolkit
 65  *.gpState
 66  
 67  # ReSharper is a .NET coding add-in
 68  _ReSharper*/
 69  *.[Rr]e[Ss]harper
 70  
 71  # TeamCity is a build add-in
 72  _TeamCity*
 73  
 74  # DotCover is a Code Coverage Tool
 75  *.dotCover
 76  
 77  # Rider is a Visual Studio alternative
 78  .idea/*
 79  
 80  # NCrunch
 81  *.ncrunch*
 82  .*crunch*.local.xml
 83  
 84  # Installshield output folder
 85  [Ee]xpress/
 86  
 87  # DocProject is a documentation generator add-in
 88  DocProject/buildhelp/
 89  DocProject/Help/*.HxT
 90  DocProject/Help/*.HxC
 91  DocProject/Help/*.hhc
 92  DocProject/Help/*.hhk
 93  DocProject/Help/*.hhp
 94  DocProject/Help/Html2
 95  DocProject/Help/html
 96  
 97  # Click-Once directory
 98  publish/
 99  
100  # Publish Web Output
101  *.Publish.xml
102  
103  # NuGet Packages Directory
104  ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
105  #packages/
106  
107  # Windows Azure Build Output
108  csx
109  *.build.csdef
110  
111  # Windows Store app package directory
112  AppPackages/
113  
114  # Others
115  sql/
116  *.Cache
117  ClientBin/
118  [Ss]tyle[Cc]op.*
119  ~$*
120  *~
121  *.dbmdl
122  *.[Pp]ublish.xml
123  *.pfx
124  *.publishsettings
125  packages/*
126  *.config
127  
128  # Include nuget.config
129  !nuget.config
130  
131  # RIA/Silverlight projects
132  Generated_Code/
133  
134  # Backup & report files from converting an old project file to a newer
135  # Visual Studio version. Backup files are not needed, because we have git ;-)
136  _UpgradeReport_Files/
137  Backup*/
138  UpgradeLog*.XML
139  UpgradeLog*.htm
140  
141  # SQL Server files
142  App_Data/*.mdf
143  App_Data/*.ldf
144  
145  
146  #LightSwitch generated files
147  GeneratedArtifacts/
148  _Pvt_Extensions/
149  ModelManifest.xml
150  
151  # =========================
152  # Windows detritus
153  # =========================
154  
155  # Windows image file caches
156  Thumbs.db
157  ehthumbs.db
158  
159  # Folder config file
160  Desktop.ini
161  
162  # Recycle Bin used on file shares
163  $RECYCLE.BIN/
164  
165  # Mac desktop service store files
166  .DS_Store
167  
168  # VS Launch Settings
169  launchSettings.json
170  
171  # NetCore Publishing Profiles
172  PublishProfiles/
173  
174  # Glade backup files
175  *.glade~