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