Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3.  
  4. # Visual Studio (>=2015) project-specific, machine local files
  5. .vs/
  6.  
  7. # User-specific files
  8. *.suo
  9. *.user
  10. *.sln.docstates
  11. *.userprefs
  12.  
  13. # ignore Xamarin.Android Resource.Designer.cs files
  14. **/*.Droid/**/[Rr]esource.[Dd]esigner.cs
  15. **/*.Android/**/[Rr]esource.[Dd]esigner.cs
  16. **/Android/**/[Rr]esource.[Dd]esigner.cs
  17. **/Droid/**/[Rr]esource.[Dd]esigner.cs
  18.  
  19. # Xamarin Components
  20. Components/
  21.  
  22. # Build results
  23. [Dd]ebug/
  24. [Dd]ebugPublic/
  25. [Rr]elease/
  26. x64/
  27. build/
  28. bld/
  29. [Bb]in/
  30. [Oo]bj/
  31.  
  32. # MSTest test Results
  33. [Tt]est[Rr]esult*/
  34. [Bb]uild[Ll]og.*
  35.  
  36. #NUNIT
  37. *.VisualState.xml
  38. TestResult.xml
  39.  
  40. # Build Results of an ATL Project
  41. [Dd]ebugPS/
  42. [Rr]eleasePS/
  43. dlldata.c
  44.  
  45. *_i.c
  46. *_p.c
  47. *_i.h
  48. *.ilk
  49. *.meta
  50. *.obj
  51. *.pch
  52. *.pdb
  53. *.pgc
  54. *.pgd
  55. *.rsp
  56. *.sbr
  57. *.tlb
  58. *.tli
  59. *.tlh
  60. *.tmp
  61. *.tmp_proj
  62. *.log
  63. *.vspscc
  64. *.vssscc
  65. .builds
  66. *.pidb
  67. *.svclog
  68. *.scc
  69.  
  70. # Chutzpah Test files
  71. _Chutzpah*
  72.  
  73. # Visual C++ cache files
  74. ipch/
  75. *.aps
  76. *.ncb
  77. *.opensdf
  78. *.sdf
  79. *.cachefile
  80.  
  81. # Visual Studio profiler
  82. *.psess
  83. *.vsp
  84. *.vspx
  85.  
  86. # TFS 2012 Local Workspace
  87. $tf/
  88.  
  89. # Guidance Automation Toolkit
  90. *.gpState
  91.  
  92. # ReSharper is a .NET coding add-in
  93. _ReSharper*/
  94. *.[Rr]e[Ss]harper
  95. *.DotSettings.user
  96.  
  97. # JustCode is a .NET coding addin-in
  98. .JustCode
  99.  
  100. # TeamCity is a build add-in
  101. _TeamCity*
  102.  
  103. # DotCover is a Code Coverage Tool
  104. *.dotCover
  105.  
  106. # NCrunch
  107. *.ncrunch*
  108. _NCrunch_*
  109. .*crunch*.local.xml
  110.  
  111. # MightyMoose
  112. *.mm.*
  113. AutoTest.Net/
  114.  
  115. # Web workbench (sass)
  116. .sass-cache/
  117.  
  118. # Installshield output folder
  119. [Ee]xpress/
  120.  
  121. # DocProject is a documentation generator add-in
  122. DocProject/buildhelp/
  123. DocProject/Help/*.HxT
  124. DocProject/Help/*.HxC
  125. DocProject/Help/*.hhc
  126. DocProject/Help/*.hhk
  127. DocProject/Help/*.hhp
  128. DocProject/Help/Html2
  129. DocProject/Help/html
  130.  
  131. # Click-Once directory
  132. publish/
  133.  
  134. # Publish Web Output
  135. *.[Pp]ublish.xml
  136. *.azurePubxml
  137.  
  138. # NuGet Packages Directory
  139. packages/
  140. *.nuget.targets
  141. *.lock.json
  142. *.nuget.props
  143.  
  144. ## TODO: If the tool you use requires repositories.config uncomment the next line
  145. #!packages/repositories.config
  146.  
  147. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  148. # This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
  149. !packages/build/
  150.  
  151. # Windows Azure Build Output
  152. csx/
  153. *.build.csdef
  154.  
  155. # Windows Store app package directory
  156. AppPackages/
  157.  
  158. # Others
  159. sql/
  160. *.Cache
  161. ClientBin/
  162. [Ss]tyle[Cc]op.*
  163. ~$*
  164. *~
  165. *.dbmdl
  166. *.dbproj.schemaview
  167. *.pfx
  168. *.publishsettings
  169. node_modules/
  170. .DS_Store
  171. *.bak
  172.  
  173. # RIA/Silverlight projects
  174. Generated_Code/
  175.  
  176. # Backup & report files from converting an old project file to a newer
  177. # Visual Studio version. Backup files are not needed, because we have git ;-)
  178. _UpgradeReport_Files/
  179. Backup*/
  180. UpgradeLog*.XML
  181. UpgradeLog*.htm
  182.  
  183. # SQL Server files
  184. *.mdf
  185. *.ldf
  186.  
  187. # Business Intelligence projects
  188. *.rdl.data
  189. *.bim.layout
  190. *.bim_*.settings
  191.  
  192. # Microsoft Fakes
  193. FakesAssemblies/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement