Cardlife mod patcher
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

253 lines
4.1KB

  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. # User-specific files (MonoDevelop/Xamarin Studio)
  9. *.userprefs
  10. # Build results
  11. [Dd]ebug/
  12. [Dd]ebugPublic/
  13. [Rr]elease/
  14. [Rr]eleases/
  15. x64/
  16. x86/
  17. bld/
  18. [Bb]in/
  19. [Oo]bj/
  20. [Ll]og/
  21. # Visual Studio 2015 cache/options directory
  22. .vs/
  23. # Uncomment if you have tasks that create the project's static files in wwwroot
  24. #wwwroot/
  25. # MSTest test Results
  26. [Tt]est[Rr]esult*/
  27. [Bb]uild[Ll]og.*
  28. # NUNIT
  29. *.VisualState.xml
  30. TestResult.xml
  31. # Build Results of an ATL Project
  32. [Dd]ebugPS/
  33. [Rr]eleasePS/
  34. dlldata.c
  35. # DNX
  36. project.lock.json
  37. artifacts/
  38. *_i.c
  39. *_p.c
  40. *_i.h
  41. *.ilk
  42. *.meta
  43. *.obj
  44. *.pch
  45. *.pdb
  46. *.pgc
  47. *.pgd
  48. *.rsp
  49. *.sbr
  50. *.tlb
  51. *.tli
  52. *.tlh
  53. *.tmp
  54. *.tmp_proj
  55. *.log
  56. *.vspscc
  57. *.vssscc
  58. .builds
  59. *.pidb
  60. *.svclog
  61. *.scc
  62. # Chutzpah Test files
  63. _Chutzpah*
  64. # Visual C++ cache files
  65. ipch/
  66. *.aps
  67. *.ncb
  68. *.opendb
  69. *.opensdf
  70. *.sdf
  71. *.cachefile
  72. *.VC.db
  73. *.VC.VC.opendb
  74. # Visual Studio profiler
  75. *.psess
  76. *.vsp
  77. *.vspx
  78. *.sap
  79. # TFS 2012 Local Workspace
  80. $tf/
  81. # Guidance Automation Toolkit
  82. *.gpState
  83. # ReSharper is a .NET coding add-in
  84. _ReSharper*/
  85. *.[Rr]e[Ss]harper
  86. *.DotSettings.user
  87. # JustCode is a .NET coding add-in
  88. .JustCode
  89. # TeamCity is a build add-in
  90. _TeamCity*
  91. # DotCover is a Code Coverage Tool
  92. *.dotCover
  93. # NCrunch
  94. _NCrunch_*
  95. .*crunch*.local.xml
  96. nCrunchTemp_*
  97. # MightyMoose
  98. *.mm.*
  99. AutoTest.Net/
  100. # Web workbench (sass)
  101. .sass-cache/
  102. # Installshield output folder
  103. [Ee]xpress/
  104. # DocProject is a documentation generator add-in
  105. DocProject/buildhelp/
  106. DocProject/Help/*.HxT
  107. DocProject/Help/*.HxC
  108. DocProject/Help/*.hhc
  109. DocProject/Help/*.hhk
  110. DocProject/Help/*.hhp
  111. DocProject/Help/Html2
  112. DocProject/Help/html
  113. # Click-Once directory
  114. publish/
  115. # Publish Web Output
  116. *.[Pp]ublish.xml
  117. *.azurePubxml
  118. # TODO: Comment the next line if you want to checkin your web deploy settings
  119. # but database connection strings (with potential passwords) will be unencrypted
  120. *.pubxml
  121. *.publishproj
  122. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  123. # checkin your Azure Web App publish settings, but sensitive information contained
  124. # in these scripts will be unencrypted
  125. PublishScripts/
  126. # NuGet Packages
  127. *.nupkg
  128. # The packages folder can be ignored because of Package Restore
  129. **/packages/*
  130. # except build/, which is used as an MSBuild target.
  131. !**/packages/build/
  132. # Uncomment if necessary however generally it will be regenerated when needed
  133. #!**/packages/repositories.config
  134. # NuGet v3's project.json files produces more ignoreable files
  135. *.nuget.props
  136. *.nuget.targets
  137. # Microsoft Azure Build Output
  138. csx/
  139. *.build.csdef
  140. # Microsoft Azure Emulator
  141. ecf/
  142. rcf/
  143. # Windows Store app package directories and files
  144. AppPackages/
  145. BundleArtifacts/
  146. Package.StoreAssociation.xml
  147. _pkginfo.txt
  148. # Visual Studio cache files
  149. # files ending in .cache can be ignored
  150. *.[Cc]ache
  151. # but keep track of directories ending in .cache
  152. !*.[Cc]ache/
  153. # Others
  154. ClientBin/
  155. ~$*
  156. *~
  157. *.dbmdl
  158. *.dbproj.schemaview
  159. *.pfx
  160. *.publishsettings
  161. node_modules/
  162. orleans.codegen.cs
  163. # Since there are multiple workflows, uncomment next line to ignore bower_components
  164. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  165. #bower_components/
  166. # RIA/Silverlight projects
  167. Generated_Code/
  168. # Backup & report files from converting an old project file
  169. # to a newer Visual Studio version. Backup files are not needed,
  170. # because we have git ;-)
  171. _UpgradeReport_Files/
  172. Backup*/
  173. UpgradeLog*.XML
  174. UpgradeLog*.htm
  175. # SQL Server files
  176. *.mdf
  177. *.ldf
  178. # Business Intelligence projects
  179. *.rdl.data
  180. *.bim.layout
  181. *.bim_*.settings
  182. # Microsoft Fakes
  183. FakesAssemblies/
  184. # GhostDoc plugin setting file
  185. *.GhostDoc.xml
  186. # Node.js Tools for Visual Studio
  187. .ntvs_analysis.dat
  188. # Visual Studio 6 build log
  189. *.plg
  190. # Visual Studio 6 workspace options file
  191. *.opt
  192. # Visual Studio LightSwitch build output
  193. **/*.HTMLClient/GeneratedArtifacts
  194. **/*.DesktopClient/GeneratedArtifacts
  195. **/*.DesktopClient/ModelManifest.xml
  196. **/*.Server/GeneratedArtifacts
  197. **/*.Server/ModelManifest.xml
  198. _Pvt_Extensions
  199. # Paket dependency manager
  200. .paket/paket.exe
  201. paket-files/
  202. # FAKE - F# Make
  203. .fake/
  204. # JetBrains Rider
  205. .idea/
  206. *.sln.iml