diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 202 |
1 files changed, 202 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c1a38ed --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,202 @@ | |||
1 | ## Ignore Visual Studio temporary files, build results, and | ||
2 | ## files generated by popular Visual Studio add-ons. | ||
3 | |||
4 | *.jpeg | ||
5 | *.jpg | ||
6 | *.bmp | ||
7 | *.png | ||
8 | |||
9 | # User-specific files | ||
10 | *.suo | ||
11 | *.user | ||
12 | *.userosscache | ||
13 | *.sln.docstates | ||
14 | |||
15 | # User-specific files (MonoDevelop/Xamarin Studio) | ||
16 | *.userprefs | ||
17 | |||
18 | # Build results | ||
19 | [Dd]ebug/ | ||
20 | [Dd]ebugPublic/ | ||
21 | [Rr]elease/ | ||
22 | [Rr]eleases/ | ||
23 | x64/ | ||
24 | x86/ | ||
25 | build/ | ||
26 | bld/ | ||
27 | [Bb]in/ | ||
28 | [Oo]bj/ | ||
29 | |||
30 | # Visual Studo 2015 cache/options directory | ||
31 | .vs/ | ||
32 | |||
33 | # MSTest test Results | ||
34 | [Tt]est[Rr]esult*/ | ||
35 | [Bb]uild[Ll]og.* | ||
36 | |||
37 | # NUNIT | ||
38 | *.VisualState.xml | ||
39 | TestResult.xml | ||
40 | |||
41 | # Build Results of an ATL Project | ||
42 | [Dd]ebugPS/ | ||
43 | [Rr]eleasePS/ | ||
44 | dlldata.c | ||
45 | |||
46 | *_i.c | ||
47 | *_p.c | ||
48 | *_i.h | ||
49 | *.ilk | ||
50 | *.meta | ||
51 | *.obj | ||
52 | *.pch | ||
53 | *.pdb | ||
54 | *.pgc | ||
55 | *.pgd | ||
56 | *.rsp | ||
57 | *.sbr | ||
58 | *.tlb | ||
59 | *.tli | ||
60 | *.tlh | ||
61 | *.tmp | ||
62 | *.tmp_proj | ||
63 | *.log | ||
64 | *.vspscc | ||
65 | *.vssscc | ||
66 | .builds | ||
67 | *.pidb | ||
68 | *.svclog | ||
69 | *.scc | ||
70 | |||
71 | # Chutzpah Test files | ||
72 | _Chutzpah* | ||
73 | |||
74 | # Visual C++ cache files | ||
75 | ipch/ | ||
76 | *.aps | ||
77 | *.ncb | ||
78 | *.opensdf | ||
79 | *.sdf | ||
80 | *.cachefile | ||
81 | |||
82 | # Visual Studio profiler | ||
83 | *.psess | ||
84 | *.vsp | ||
85 | *.vspx | ||
86 | |||
87 | # TFS 2012 Local Workspace | ||
88 | $tf/ | ||
89 | |||
90 | # Guidance Automation Toolkit | ||
91 | *.gpState | ||
92 | |||
93 | # ReSharper is a .NET coding add-in | ||
94 | _ReSharper*/ | ||
95 | *.[Rr]e[Ss]harper | ||
96 | *.DotSettings.user | ||
97 | |||
98 | # JustCode is a .NET coding addin-in | ||
99 | .JustCode | ||
100 | |||
101 | # TeamCity is a build add-in | ||
102 | _TeamCity* | ||
103 | |||
104 | # DotCover is a Code Coverage Tool | ||
105 | *.dotCover | ||
106 | |||
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 | # TODO: Comment the next line if you want to checkin your web deploy settings | ||
138 | # but database connection strings (with potential passwords) will be unencrypted | ||
139 | *.pubxml | ||
140 | *.publishproj | ||
141 | |||
142 | # NuGet Packages | ||
143 | *.nupkg | ||
144 | # The packages folder can be ignored because of Package Restore | ||
145 | **/packages/* | ||
146 | # except build/, which is used as an MSBuild target. | ||
147 | !**/packages/build/ | ||
148 | # Uncomment if necessary however generally it will be regenerated when needed | ||
149 | #!**/packages/repositories.config | ||
150 | |||
151 | # Windows Azure Build Output | ||
152 | csx/ | ||
153 | *.build.csdef | ||
154 | |||
155 | # Windows Store app package directory | ||
156 | AppPackages/ | ||
157 | |||
158 | # Others | ||
159 | *.[Cc]ache | ||
160 | ClientBin/ | ||
161 | [Ss]tyle[Cc]op.* | ||
162 | ~$* | ||
163 | *~ | ||
164 | *.dbmdl | ||
165 | *.dbproj.schemaview | ||
166 | *.pfx | ||
167 | *.publishsettings | ||
168 | node_modules/ | ||
169 | bower_components/ | ||
170 | |||
171 | # RIA/Silverlight projects | ||
172 | Generated_Code/ | ||
173 | |||
174 | # Backup & report files from converting an old project file | ||
175 | # to a newer Visual Studio version. Backup files are not needed, | ||
176 | # because we have git ;-) | ||
177 | _UpgradeReport_Files/ | ||
178 | Backup*/ | ||
179 | UpgradeLog*.XML | ||
180 | UpgradeLog*.htm | ||
181 | |||
182 | # SQL Server files | ||
183 | *.mdf | ||
184 | *.ldf | ||
185 | |||
186 | # Business Intelligence projects | ||
187 | *.rdl.data | ||
188 | *.bim.layout | ||
189 | *.bim_*.settings | ||
190 | |||
191 | # Microsoft Fakes | ||
192 | FakesAssemblies/ | ||
193 | |||
194 | # Node.js Tools for Visual Studio | ||
195 | .ntvs_analysis.dat | ||
196 | |||
197 | # Visual Studio 6 build log | ||
198 | *.plg | ||
199 | |||
200 | # Visual Studio 6 workspace options file | ||
201 | *.opt | ||
202 | |||