.gitignore 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.userosscache
  7. *.sln.docstates
  8. *.cache
  9. App.config
  10. # User-specific files (MonoDevelop/Xamarin Studio)
  11. *.userprefs
  12. # Build results
  13. [Dd]ebug/
  14. [Dd]ebugPublic/
  15. [Rr]elease/
  16. [Rr]eleases/
  17. [Xx]64/
  18. [Xx]86/
  19. [Bb]uild/
  20. .vs/
  21. bld/
  22. [Bb]in/
  23. [Oo]bj/
  24. # Visual Studio 2015 cache/options directory
  25. .vs/
  26. # Uncomment if you have tasks that create the project's static files in wwwroot
  27. #wwwroot/
  28. # MSTest test Results
  29. [Tt]est[Rr]esult*/
  30. [Bb]uild[Ll]og.*
  31. # NUNIT
  32. *.VisualState.xml
  33. TestResult.xml
  34. # Build Results of an ATL Project
  35. [Dd]ebugPS/
  36. [Rr]eleasePS/
  37. dlldata.c
  38. # DNX
  39. project.lock.json
  40. artifacts/
  41. *_i.c
  42. *_p.c
  43. *_i.h
  44. *.ilk
  45. *.meta
  46. *.obj
  47. *.pch
  48. *.pdb
  49. *.pgc
  50. *.pgd
  51. *.rsp
  52. *.sbr
  53. *.tlb
  54. *.tli
  55. *.tlh
  56. *.tmp
  57. *.tmp_proj
  58. *.log
  59. *.vspscc
  60. *.vssscc
  61. .builds
  62. *.pidb
  63. *.svclog
  64. *.scc
  65. # Chutzpah Test files
  66. _Chutzpah*
  67. # Visual C++ cache files
  68. ipch/
  69. *.aps
  70. *.ncb
  71. *.opendb
  72. *.opensdf
  73. *.sdf
  74. *.cachefile
  75. *.VC.db
  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: Un-comment the next line if you do not want to checkin
  121. # your web deploy settings because they may include unencrypted
  122. # passwords
  123. #*.pubxml
  124. *.publishproj
  125. # NuGet Packages
  126. *.nupkg
  127. # The packages folder can be ignored because of Package Restore
  128. **/packages/*
  129. # except build/, which is used as an MSBuild target.
  130. !**/packages/build/
  131. # Uncomment if necessary however generally it will be regenerated when needed
  132. #!**/packages/repositories.config
  133. # NuGet v3's project.json files produces more ignoreable files
  134. *.nuget.props
  135. *.nuget.targets
  136. # Microsoft Azure Build Output
  137. csx/
  138. *.build.csdef
  139. # Microsoft Azure Emulator
  140. ecf/
  141. rcf/
  142. # Windows Store app package directory
  143. AppPackages/
  144. BundleArtifacts/
  145. # Visual Studio cache files
  146. # files ending in .cache can be ignored
  147. *.[Cc]ache
  148. # but keep track of directories ending in .cache
  149. !*.[Cc]ache/
  150. # Others
  151. ClientBin/
  152. [Ss]tyle[Cc]op.*
  153. ~$*
  154. *~
  155. *.dbmdl
  156. *.dbproj.schemaview
  157. *.pfx
  158. *.publishsettings
  159. node_modules/
  160. orleans.codegen.cs
  161. # RIA/Silverlight projects
  162. Generated_Code/
  163. # Backup & report files from converting an old project file
  164. # to a newer Visual Studio version. Backup files are not needed,
  165. # because we have git ;-)
  166. _UpgradeReport_Files/
  167. Backup*/
  168. UpgradeLog*.XML
  169. UpgradeLog*.htm
  170. # SQL Server files
  171. *.mdf
  172. *.ldf
  173. # Business Intelligence projects
  174. *.rdl.data
  175. *.bim.layout
  176. *.bim_*.settings
  177. # Microsoft Fakes
  178. FakesAssemblies/
  179. # GhostDoc plugin setting file
  180. *.GhostDoc.xml
  181. # Node.js Tools for Visual Studio
  182. .ntvs_analysis.dat
  183. # Visual Studio 6 build log
  184. *.plg
  185. # Visual Studio 6 workspace options file
  186. *.opt
  187. # Visual Studio LightSwitch build output
  188. **/*.HTMLClient/GeneratedArtifacts
  189. **/*.DesktopClient/GeneratedArtifacts
  190. **/*.DesktopClient/ModelManifest.xml
  191. **/*.Server/GeneratedArtifacts
  192. **/*.Server/ModelManifest.xml
  193. _Pvt_Extensions
  194. # LightSwitch generated files
  195. GeneratedArtifacts/
  196. ModelManifest.xml
  197. # Paket dependency manager
  198. .paket/paket.exe
  199. # FAKE - F# Make
  200. .fake/
  201. packages
  202. /ClassLibrary1/ClassLibrary1.csproj
  203. /ClassLibrary1/Class1.cs
  204. /ClassLibrary1/job_scheduling_data_2_0.xsd