1
0

.gitignore 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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. project.fragment.lock.json
  38. artifacts/
  39. *_i.c
  40. *_p.c
  41. *_i.h
  42. *.ilk
  43. *.meta
  44. *.obj
  45. *.pch
  46. *.pdb
  47. *.pgc
  48. *.pgd
  49. *.rsp
  50. *.sbr
  51. *.tlb
  52. *.tli
  53. *.tlh
  54. *.tmp
  55. *.tmp_proj
  56. *.log
  57. *.vspscc
  58. *.vssscc
  59. .builds
  60. *.pidb
  61. *.svclog
  62. *.scc
  63. # Chutzpah Test files
  64. _Chutzpah*
  65. # Visual C++ cache files
  66. ipch/
  67. *.aps
  68. *.ncb
  69. *.opendb
  70. *.opensdf
  71. *.sdf
  72. *.cachefile
  73. *.VC.db
  74. *.VC.VC.opendb
  75. # Visual Studio profiler
  76. *.psess
  77. *.vsp
  78. *.vspx
  79. *.sap
  80. # TFS 2012 Local Workspace
  81. $tf/
  82. # Guidance Automation Toolkit
  83. *.gpState
  84. # ReSharper is a .NET coding add-in
  85. _ReSharper*/
  86. *.[Rr]e[Ss]harper
  87. *.DotSettings.user
  88. # JustCode is a .NET coding add-in
  89. .JustCode
  90. # TeamCity is a build add-in
  91. _TeamCity*
  92. # DotCover is a Code Coverage Tool
  93. *.dotCover
  94. # NCrunch
  95. _NCrunch_*
  96. .*crunch*.local.xml
  97. nCrunchTemp_*
  98. # MightyMoose
  99. *.mm.*
  100. AutoTest.Net/
  101. # Web workbench (sass)
  102. .sass-cache/
  103. # Installshield output folder
  104. [Ee]xpress/
  105. # DocProject is a documentation generator add-in
  106. DocProject/buildhelp/
  107. DocProject/Help/*.HxT
  108. DocProject/Help/*.HxC
  109. DocProject/Help/*.hhc
  110. DocProject/Help/*.hhk
  111. DocProject/Help/*.hhp
  112. DocProject/Help/Html2
  113. DocProject/Help/html
  114. # Click-Once directory
  115. publish/
  116. # Publish Web Output
  117. *.[Pp]ublish.xml
  118. *.azurePubxml
  119. # TODO: Comment the next line if you want to checkin your web deploy settings
  120. # but database connection strings (with potential passwords) will be unencrypted
  121. #*.pubxml
  122. *.publishproj
  123. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  124. # checkin your Azure Web App publish settings, but sensitive information contained
  125. # in these scripts will be unencrypted
  126. PublishScripts/
  127. # NuGet Packages
  128. *.nupkg
  129. # The packages folder can be ignored because of Package Restore
  130. **/packages/*
  131. # except build/, which is used as an MSBuild target.
  132. !**/packages/build/
  133. # Uncomment if necessary however generally it will be regenerated when needed
  134. #!**/packages/repositories.config
  135. # NuGet v3's project.json files produces more ignoreable files
  136. *.nuget.props
  137. *.nuget.targets
  138. .nuget/
  139. # Microsoft Azure Build Output
  140. csx/
  141. *.build.csdef
  142. # Microsoft Azure Emulator
  143. ecf/
  144. rcf/
  145. # Windows Store app package directories and files
  146. AppPackages/
  147. BundleArtifacts/
  148. Package.StoreAssociation.xml
  149. _pkginfo.txt
  150. # Visual Studio cache files
  151. # files ending in .cache can be ignored
  152. *.[Cc]ache
  153. # but keep track of directories ending in .cache
  154. !*.[Cc]ache/
  155. # Others
  156. ClientBin/
  157. ~$*
  158. *~
  159. *.dbmdl
  160. *.dbproj.schemaview
  161. *.jfm
  162. *.pfx
  163. *.publishsettings
  164. node_modules/
  165. orleans.codegen.cs
  166. # Since there are multiple workflows, uncomment next line to ignore bower_components
  167. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  168. #bower_components/
  169. # RIA/Silverlight projects
  170. Generated_Code/
  171. # Backup & report files from converting an old project file
  172. # to a newer Visual Studio version. Backup files are not needed,
  173. # because we have git ;-)
  174. _UpgradeReport_Files/
  175. Backup*/
  176. UpgradeLog*.XML
  177. UpgradeLog*.htm
  178. # SQL Server files
  179. *.mdf
  180. *.ldf
  181. # Business Intelligence projects
  182. *.rdl.data
  183. *.bim.layout
  184. *.bim_*.settings
  185. # Microsoft Fakes
  186. FakesAssemblies/
  187. # GhostDoc plugin setting file
  188. *.GhostDoc.xml
  189. # Node.js Tools for Visual Studio
  190. .ntvs_analysis.dat
  191. # Visual Studio 6 build log
  192. *.plg
  193. # Visual Studio 6 workspace options file
  194. *.opt
  195. # Visual Studio LightSwitch build output
  196. **/*.HTMLClient/GeneratedArtifacts
  197. **/*.DesktopClient/GeneratedArtifacts
  198. **/*.DesktopClient/ModelManifest.xml
  199. **/*.Server/GeneratedArtifacts
  200. **/*.Server/ModelManifest.xml
  201. _Pvt_Extensions
  202. # Paket dependency manager
  203. .paket/paket.exe
  204. paket-files/
  205. # FAKE - F# Make
  206. .fake/
  207. # JetBrains Rider
  208. .idea/
  209. *.sln.iml
  210. .editorconfig
  211. # CodeRush
  212. .cr/
  213. # Python Tools for Visual Studio (PTVS)
  214. __pycache__/
  215. *.pyc
  216. # Visual Studio Code workspace settings.
  217. .vscode/*
  218. !.vscode/extensions.json
  219. !.vscode/launch.json
  220. !.vscode/tasks.json
  221. # Release package files go here:
  222. release/
  223. # Apple please go.
  224. .DS_Store
  225. # KDE, come in.
  226. .directory
  227. BuildFiles/Mac/Space Station 14.app/Contents/MacOS/Godot
  228. BuildFiles/Mac/Space Station 14.app/Contents/MacOS/GodotSharpTools.dll
  229. BuildFiles/Mac/Space Station 14.app/Contents/MacOS/mscorlib.dll
  230. BuildFiles/Mac/Space Station 14.app/Contents/MacOS/libmonosgen-2.0.dylib
  231. BuildFiles/Windows/Godot/*
  232. # Working on the tools scripts is getting annoying okay?
  233. .mypy_cache/
  234. # Windows image file caches
  235. Thumbs.db
  236. ehthumbs.db
  237. # Merge driver stuff
  238. Content.Tools/test/out.yml
  239. # Windows
  240. desktop.ini
  241. # Images generated using the MapRenderer
  242. Resources/MapImages
  243. ## Docfx stuff
  244. /Content.Docfx/api/
  245. /Content.Docfx/*site
  246. *.bak
  247. # Direnv stuff
  248. .direnv/
  249. Civ14.code-workspace
  250. _extras/
  251. server_config.toml
  252. Resources/Maps/civ/nomads_classic.yml
  253. # Wiki stuff
  254. Wiki/book
  255. Wiki/.idea/
  256. # editor files
  257. Wiki/.*~
  258. Wiki/*.swp
  259. # VSCodium files
  260. Wiki/.vscode/
  261. *.code-workspace