.gitignore 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. # ---> VisualStudio
  2. ## Ignore Visual Studio temporary files, build results, and
  3. ## files generated by popular Visual Studio add-ons.
  4. # Project-specific files
  5. PCC.DevClient/PCC-Config.json
  6. PCC.DevServer/PCC-Config.json
  7. PCC.Peer/PCC-Config.json
  8. # User-specific files
  9. *.suo
  10. *.user
  11. *.userosscache
  12. *.sln.docstates
  13. # User-specific files (MonoDevelop/Xamarin Studio)
  14. *.userprefs
  15. # Build results
  16. [Dd]ebug/
  17. [Dd]ebugPublic/
  18. [Rr]elease/
  19. [Rr]eleases/
  20. x64/
  21. x86/
  22. build/
  23. bld/
  24. [Bb]in/
  25. [Oo]bj/
  26. # Visual Studio 2015 cache/options directory
  27. .vs/
  28. # Uncomment if you have tasks that create the project's static files in wwwroot
  29. #wwwroot/
  30. # MSTest test Results
  31. [Tt]est[Rr]esult*/
  32. [Bb]uild[Ll]og.*
  33. # NUNIT
  34. *.VisualState.xml
  35. TestResult.xml
  36. # Build Results of an ATL Project
  37. [Dd]ebugPS/
  38. [Rr]eleasePS/
  39. dlldata.c
  40. # DNX
  41. project.lock.json
  42. artifacts/
  43. *_i.c
  44. *_p.c
  45. *_i.h
  46. *.ilk
  47. *.meta
  48. *.obj
  49. *.pch
  50. *.pdb
  51. *.pgc
  52. *.pgd
  53. *.rsp
  54. *.sbr
  55. *.tlb
  56. *.tli
  57. *.tlh
  58. *.tmp
  59. *.tmp_proj
  60. *.log
  61. *.vspscc
  62. *.vssscc
  63. .builds
  64. *.pidb
  65. *.svclog
  66. *.scc
  67. # Chutzpah Test files
  68. _Chutzpah*
  69. # Visual C++ cache files
  70. ipch/
  71. *.aps
  72. *.ncb
  73. *.opensdf
  74. *.sdf
  75. *.cachefile
  76. # Visual Studio profiler
  77. *.psess
  78. *.vsp
  79. *.vspx
  80. *.sap
  81. # TFS 2012 Local Workspace
  82. $tf/
  83. # Guidance Automation Toolkit
  84. *.gpState
  85. # ReSharper is a .NET coding add-in
  86. _ReSharper*/
  87. *.[Rr]e[Ss]harper
  88. *.DotSettings.user
  89. # JustCode is a .NET coding add-in
  90. .JustCode
  91. # TeamCity is a build add-in
  92. _TeamCity*
  93. # DotCover is a Code Coverage Tool
  94. *.dotCover
  95. # NCrunch
  96. _NCrunch_*
  97. .*crunch*.local.xml
  98. nCrunchTemp_*
  99. # MightyMoose
  100. *.mm.*
  101. AutoTest.Net/
  102. # Web workbench (sass)
  103. .sass-cache/
  104. # Installshield output folder
  105. [Ee]xpress/
  106. # DocProject is a documentation generator add-in
  107. DocProject/buildhelp/
  108. DocProject/Help/*.HxT
  109. DocProject/Help/*.HxC
  110. DocProject/Help/*.hhc
  111. DocProject/Help/*.hhk
  112. DocProject/Help/*.hhp
  113. DocProject/Help/Html2
  114. DocProject/Help/html
  115. # Click-Once directory
  116. publish/
  117. # Publish Web Output
  118. *.[Pp]ublish.xml
  119. *.azurePubxml
  120. # TODO: Comment the next line if you want to checkin your web deploy settings
  121. # but database connection strings (with potential passwords) will be unencrypted
  122. *.pubxml
  123. *.publishproj
  124. # NuGet Packages
  125. *.nupkg
  126. # The packages folder can be ignored because of Package Restore
  127. **/packages/*
  128. # except build/, which is used as an MSBuild target.
  129. !**/packages/build/
  130. # Uncomment if necessary however generally it will be regenerated when needed
  131. #!**/packages/repositories.config
  132. # Windows Azure Build Output
  133. csx/
  134. *.build.csdef
  135. # Windows Store app package directory
  136. AppPackages/
  137. # Visual Studio cache files
  138. # files ending in .cache can be ignored
  139. *.[Cc]ache
  140. # but keep track of directories ending in .cache
  141. !*.[Cc]ache/
  142. # Others
  143. ClientBin/
  144. [Ss]tyle[Cc]op.*
  145. ~$*
  146. *~
  147. *.dbmdl
  148. *.dbproj.schemaview
  149. *.pfx
  150. *.publishsettings
  151. node_modules/
  152. orleans.codegen.cs
  153. # RIA/Silverlight projects
  154. Generated_Code/
  155. # Backup & report files from converting an old project file
  156. # to a newer Visual Studio version. Backup files are not needed,
  157. # because we have git ;-)
  158. _UpgradeReport_Files/
  159. Backup*/
  160. UpgradeLog*.XML
  161. UpgradeLog*.htm
  162. # SQL Server files
  163. *.mdf
  164. *.ldf
  165. # Business Intelligence projects
  166. *.rdl.data
  167. *.bim.layout
  168. *.bim_*.settings
  169. # Microsoft Fakes
  170. FakesAssemblies/
  171. # Node.js Tools for Visual Studio
  172. .ntvs_analysis.dat
  173. # Visual Studio 6 build log
  174. *.plg
  175. # Visual Studio 6 workspace options file
  176. *.opt
  177. # Visual Studio LightSwitch build output
  178. **/*.HTMLClient/GeneratedArtifacts
  179. **/*.DesktopClient/GeneratedArtifacts
  180. **/*.DesktopClient/ModelManifest.xml
  181. **/*.Server/GeneratedArtifacts
  182. **/*.Server/ModelManifest.xml
  183. _Pvt_Extensions
  184. # ---> C Sharp
  185. # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
  186. [Bb]in/
  187. [Oo]bj/
  188. # mstest test results
  189. TestResults
  190. ## Ignore Visual Studio temporary files, build results, and
  191. ## files generated by popular Visual Studio add-ons.
  192. # User-specific files
  193. *.suo
  194. *.user
  195. *.sln.docstates
  196. # Build results
  197. [Dd]ebug/
  198. [Rr]elease/
  199. x64/
  200. *_i.c
  201. *_p.c
  202. *.ilk
  203. *.meta
  204. *.obj
  205. *.pch
  206. *.pdb
  207. *.pgc
  208. *.pgd
  209. *.rsp
  210. *.sbr
  211. *.tlb
  212. *.tli
  213. *.tlh
  214. *.tmp
  215. *.log
  216. *.vspscc
  217. *.vssscc
  218. .builds
  219. # Visual C++ cache files
  220. ipch/
  221. *.aps
  222. *.ncb
  223. *.opensdf
  224. *.sdf
  225. # Visual Studio profiler
  226. *.psess
  227. *.vsp
  228. *.vspx
  229. # Guidance Automation Toolkit
  230. *.gpState
  231. # ReSharper is a .NET coding add-in
  232. _ReSharper*
  233. # NCrunch
  234. *.ncrunch*
  235. .*crunch*.local.xml
  236. # Installshield output folder
  237. [Ee]xpress
  238. # DocProject is a documentation generator add-in
  239. DocProject/buildhelp/
  240. DocProject/Help/*.HxT
  241. DocProject/Help/*.HxC
  242. DocProject/Help/*.hhc
  243. DocProject/Help/*.hhk
  244. DocProject/Help/*.hhp
  245. DocProject/Help/Html2
  246. DocProject/Help/html
  247. # Click-Once directory
  248. publish
  249. # Publish Web Output
  250. *.Publish.xml
  251. # NuGet Packages Directory
  252. packages
  253. # Windows Azure Build Output
  254. csx
  255. *.build.csdef
  256. # Windows Store app package directory
  257. AppPackages/
  258. # Others
  259. [Bb]in
  260. [Oo]bj
  261. sql
  262. TestResults
  263. [Tt]est[Rr]esult*
  264. *.Cache
  265. ClientBin
  266. [Ss]tyle[Cc]op.*
  267. ~$*
  268. *.dbmdl
  269. Generated_Code #added for RIA/Silverlight projects
  270. # Backup & report files from converting an old project file to a newer
  271. # Visual Studio version. Backup files are not needed, because we have git ;-)
  272. _UpgradeReport_Files/
  273. Backup*/
  274. UpgradeLog*.XML