.gitignore 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. version.txt
  2. # User-specific files
  3. *.suo
  4. *.user
  5. *.sln.docstates
  6. *.userprefs
  7. # Build results
  8. [Dd]ebug/
  9. [Dd]ebugPublic/
  10. [Rr]elease/
  11. [Rr]eleases/
  12. x64/
  13. x86/
  14. build/
  15. bld/
  16. [Bb]in/
  17. [Oo]bj/
  18. Out/
  19. # Roslyn cache directories
  20. *.ide/
  21. # MSTest test Results
  22. [Tt]est[Rr]esult*/
  23. [Bb]uild[Ll]og.*
  24. #NUNIT
  25. *.VisualState.xml
  26. TestResult.xml
  27. # Build Results of an ATL Project
  28. [Dd]ebugPS/
  29. [Rr]eleasePS/
  30. dlldata.c
  31. *_i.c
  32. *_p.c
  33. *_i.h
  34. *.ilk
  35. *.meta
  36. *.obj
  37. *.pch
  38. *.pdb
  39. *.pgc
  40. *.pgd
  41. *.rsp
  42. *.sbr
  43. *.tlb
  44. *.tli
  45. *.tlh
  46. *.tmp
  47. *.tmp_proj
  48. *.log
  49. *.vspscc
  50. *.vssscc
  51. .builds
  52. *.pidb
  53. *.svclog
  54. *.scc
  55. # Chutzpah Test files
  56. _Chutzpah*
  57. # Visual C++ cache files
  58. ipch/
  59. *.aps
  60. *.ncb
  61. *.opensdf
  62. *.sdf
  63. *.cachefile
  64. # Visual Studio profiler
  65. *.psess
  66. *.vsp
  67. *.vspx
  68. # TFS 2012 Local Workspace
  69. $tf/
  70. # Guidance Automation Toolkit
  71. *.gpState
  72. # ReSharper is a .NET coding add-in
  73. _ReSharper*/
  74. *.[Rr]e[Ss]harper
  75. *.DotSettings.user
  76. # JustCode is a .NET coding addin-in
  77. .JustCode
  78. # TeamCity is a build add-in
  79. _TeamCity*
  80. # DotCover is a Code Coverage Tool
  81. *.dotCover
  82. # NCrunch
  83. _NCrunch_*
  84. .*crunch*.local.xml
  85. # MightyMoose
  86. *.mm.*
  87. AutoTest.Net/
  88. # Web workbench (sass)
  89. .sass-cache/
  90. # Installshield output folder
  91. [Ee]xpress/
  92. # DocProject is a documentation generator add-in
  93. DocProject/buildhelp/
  94. DocProject/Help/*.HxT
  95. DocProject/Help/*.HxC
  96. DocProject/Help/*.hhc
  97. DocProject/Help/*.hhk
  98. DocProject/Help/*.hhp
  99. DocProject/Help/Html2
  100. DocProject/Help/html
  101. # Click-Once directory
  102. publish/
  103. # Publish Web Output
  104. *.[Pp]ublish.xml
  105. *.azurePubxml
  106. # TODO: Comment the next line if you want to checkin your web deploy settings
  107. # but database connection strings (with potential passwords) will be unencrypted
  108. *.pubxml
  109. *.publishproj
  110. # NuGet Packages
  111. *.nupkg
  112. # The packages folder can be ignored because of Package Restore
  113. **/packages/*
  114. # except build/, which is used as an MSBuild target.
  115. !**/packages/build/
  116. # Temp fix for heroku nuget problem
  117. !**/packages/Newtonsoft.Json.6.0.5/lib/net40/*
  118. # If using the old MSBuild-Integrated Package Restore, uncomment this:
  119. #!**/packages/repositories.config
  120. # Windows Azure Build Output
  121. csx/
  122. *.build.csdef
  123. # Windows Store app package directory
  124. AppPackages/
  125. # Others
  126. sql/
  127. *.Cache
  128. ClientBin/
  129. [Ss]tyle[Cc]op.*
  130. ~$*
  131. *~
  132. *.dbmdl
  133. *.dbproj.schemaview
  134. *.pfx
  135. *.publishsettings
  136. node_modules/
  137. # RIA/Silverlight projects
  138. Generated_Code/
  139. # Backup & report files from converting an old project file
  140. # to a newer Visual Studio version. Backup files are not needed,
  141. # because we have git ;-)
  142. _UpgradeReport_Files/
  143. Backup*/
  144. UpgradeLog*.XML
  145. UpgradeLog*.htm
  146. # SQL Server files
  147. *.mdf
  148. *.ldf
  149. # Business Intelligence projects
  150. *.rdl.data
  151. *.bim.layout
  152. *.bim_*.settings
  153. # Microsoft Fakes
  154. FakesAssemblies/
  155. DwarfCorp/DwarfCorpContent/obj/*
  156. DwarfCorp/DwarfCorpCore/bin/*
  157. DwarfCorp/DwarfCorpCore/obj/*
  158. DwarfCorp/DwarfCorpXNA/bin/*
  159. DwarfCorp/DwarfCorpXNA/obj/*
  160. DwarfCorp/JsonDotNet/bin/*
  161. DwarfCorp/JsonDotNet/obj/*
  162. DwarfCorp/Packages/*
  163. DwarfCorpFNA/bin/*
  164. DwarfCorpFNA/obj/*
  165. DwarfCorp/LibNoise/bin/*
  166. DwarfCorp/LibNoise/obj/*
  167. packages/*
  168. .vs/
  169. *.suo
  170. *.cachefile
  171. *.csproj.user
  172. *.contentproj.user
  173. # =========================
  174. # Operating System Files
  175. # =========================
  176. # OSX
  177. # =========================
  178. .DS_Store
  179. .AppleDouble
  180. .LSOverride
  181. # Thumbnails
  182. ._*
  183. # Files that might appear in the root of a volume
  184. .DocumentRevisions-V100
  185. .fseventsd
  186. .Spotlight-V100
  187. .TemporaryItems
  188. .Trashes
  189. .VolumeIcon.icns
  190. # Directories potentially created on remote AFP share
  191. .AppleDB
  192. .AppleDesktop
  193. Network Trash Folder
  194. Temporary Items
  195. .apdisk
  196. # Windows
  197. # =========================
  198. # Windows image file caches
  199. Thumbs.db
  200. ehthumbs.db
  201. # Folder config file
  202. Desktop.ini
  203. # Recycle Bin used on file shares
  204. $RECYCLE.BIN/
  205. # Windows Installer files
  206. *.cab
  207. *.msi
  208. *.msm
  209. *.msp
  210. # Windows shortcuts
  211. *.lnk
  212. <<<<<<< HEAD
  213. =======
  214. # User-specific files
  215. *.suo
  216. *.user
  217. *.sln.docstates
  218. *.userprefs
  219. # Build results
  220. [Dd]ebug/
  221. [Dd]ebugPublic/
  222. [Rr]elease/
  223. [Rr]eleases/
  224. x64/
  225. x86/
  226. build/
  227. bld/
  228. [Bb]in/
  229. [Oo]bj/
  230. Out/
  231. # Roslyn cache directories
  232. *.ide/
  233. # MSTest test Results
  234. [Tt]est[Rr]esult*/
  235. [Bb]uild[Ll]og.*
  236. #NUNIT
  237. *.VisualState.xml
  238. TestResult.xml
  239. # Build Results of an ATL Project
  240. [Dd]ebugPS/
  241. [Rr]eleasePS/
  242. dlldata.c
  243. *_i.c
  244. *_p.c
  245. *_i.h
  246. *.ilk
  247. *.meta
  248. *.obj
  249. *.pch
  250. *.pdb
  251. *.pgc
  252. *.pgd
  253. *.rsp
  254. *.sbr
  255. *.tlb
  256. *.tli
  257. *.tlh
  258. *.tmp
  259. *.tmp_proj
  260. *.log
  261. *.vspscc
  262. *.vssscc
  263. .builds
  264. *.pidb
  265. *.svclog
  266. *.scc
  267. # Chutzpah Test files
  268. _Chutzpah*
  269. # Visual C++ cache files
  270. ipch/
  271. *.aps
  272. *.ncb
  273. *.opensdf
  274. *.sdf
  275. *.cachefile
  276. # Visual Studio profiler
  277. *.psess
  278. *.vsp
  279. *.vspx
  280. # TFS 2012 Local Workspace
  281. $tf/
  282. # Guidance Automation Toolkit
  283. *.gpState
  284. # ReSharper is a .NET coding add-in
  285. _ReSharper*/
  286. *.[Rr]e[Ss]harper
  287. *.DotSettings.user
  288. # JustCode is a .NET coding addin-in
  289. .JustCode
  290. # TeamCity is a build add-in
  291. _TeamCity*
  292. # DotCover is a Code Coverage Tool
  293. *.dotCover
  294. # NCrunch
  295. _NCrunch_*
  296. .*crunch*.local.xml
  297. # MightyMoose
  298. *.mm.*
  299. AutoTest.Net/
  300. # Web workbench (sass)
  301. .sass-cache/
  302. # Installshield output folder
  303. [Ee]xpress/
  304. # DocProject is a documentation generator add-in
  305. DocProject/buildhelp/
  306. DocProject/Help/*.HxT
  307. DocProject/Help/*.HxC
  308. DocProject/Help/*.hhc
  309. DocProject/Help/*.hhk
  310. DocProject/Help/*.hhp
  311. DocProject/Help/Html2
  312. DocProject/Help/html
  313. # Click-Once directory
  314. publish/
  315. # Publish Web Output
  316. *.[Pp]ublish.xml
  317. *.azurePubxml
  318. # TODO: Comment the next line if you want to checkin your web deploy settings
  319. # but database connection strings (with potential passwords) will be unencrypted
  320. *.pubxml
  321. *.publishproj
  322. # NuGet Packages
  323. *.nupkg
  324. # The packages folder can be ignored because of Package Restore
  325. **/packages/*
  326. # except build/, which is used as an MSBuild target.
  327. !**/packages/build/
  328. # Temp fix for heroku nuget problem
  329. !**/packages/Newtonsoft.Json.6.0.5/lib/net40/*
  330. # If using the old MSBuild-Integrated Package Restore, uncomment this:
  331. #!**/packages/repositories.config
  332. # Windows Azure Build Output
  333. csx/
  334. *.build.csdef
  335. # Windows Store app package directory
  336. AppPackages/
  337. # Others
  338. sql/
  339. *.Cache
  340. ClientBin/
  341. [Ss]tyle[Cc]op.*
  342. ~$*
  343. *~
  344. *.dbmdl
  345. *.dbproj.schemaview
  346. *.pfx
  347. *.publishsettings
  348. node_modules/
  349. # RIA/Silverlight projects
  350. Generated_Code/
  351. # Backup & report files from converting an old project file
  352. # to a newer Visual Studio version. Backup files are not needed,
  353. # because we have git ;-)
  354. _UpgradeReport_Files/
  355. Backup*/
  356. UpgradeLog*.XML
  357. UpgradeLog*.htm
  358. # SQL Server files
  359. *.mdf
  360. *.ldf
  361. # Business Intelligence projects
  362. *.rdl.data
  363. *.bim.layout
  364. *.bim_*.settings
  365. # Microsoft Fakes
  366. FakesAssemblies/
  367. DwarfCorp/DwarfCorpContent/obj/*
  368. DwarfCorp/DwarfCorpCore/bin/*
  369. DwarfCorp/DwarfCorpCore/obj/*
  370. DwarfCorp/DwarfCorpXNA/bin/*
  371. DwarfCorp/DwarfCorpXNA/obj/*
  372. DwarfCorp/JsonDotNet/bin/*
  373. DwarfCorp/JsonDotNet/obj/*
  374. DwarfCorp/Packages/*
  375. DwarfCorpFNA/bin/*
  376. DwarfCorpFNA/obj/*
  377. DwarfCorp/LibNoise/bin/*
  378. DwarfCorp/LibNoise/obj/*
  379. packages/*
  380. .vs/
  381. *.suo
  382. *.cachefile
  383. *.csproj.user
  384. *.contentproj.user
  385. # =========================
  386. # Operating System Files
  387. # =========================
  388. # OSX
  389. # =========================
  390. .DS_Store
  391. .AppleDouble
  392. .LSOverride
  393. # Thumbnails
  394. ._*
  395. # Files that might appear in the root of a volume
  396. .DocumentRevisions-V100
  397. .fseventsd
  398. .Spotlight-V100
  399. .TemporaryItems
  400. .Trashes
  401. .VolumeIcon.icns
  402. # Directories potentially created on remote AFP share
  403. .AppleDB
  404. .AppleDesktop
  405. Network Trash Folder
  406. Temporary Items
  407. .apdisk
  408. # Windows
  409. # =========================
  410. # Windows image file caches
  411. Thumbs.db
  412. ehthumbs.db
  413. # Folder config file
  414. Desktop.ini
  415. # Recycle Bin used on file shares
  416. $RECYCLE.BIN/
  417. # Windows Installer files
  418. *.cab
  419. *.msi
  420. *.msm
  421. *.msp
  422. # Windows shortcuts
  423. *.lnk
  424. =======