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