diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 69 |
1 files changed, 58 insertions, 11 deletions
@@ -13,6 +13,9 @@ | |||
13 | # User-specific files (MonoDevelop/Xamarin Studio) | 13 | # User-specific files (MonoDevelop/Xamarin Studio) |
14 | *.userprefs | 14 | *.userprefs |
15 | 15 | ||
16 | # Mono auto generated files | ||
17 | mono_crash.* | ||
18 | |||
16 | # Build results | 19 | # Build results |
17 | [Dd]ebug/ | 20 | [Dd]ebug/ |
18 | [Dd]ebugPublic/ | 21 | [Dd]ebugPublic/ |
@@ -20,12 +23,14 @@ | |||
20 | [Rr]eleases/ | 23 | [Rr]eleases/ |
21 | x64/ | 24 | x64/ |
22 | x86/ | 25 | x86/ |
26 | [Ww][Ii][Nn]32/ | ||
23 | [Aa][Rr][Mm]/ | 27 | [Aa][Rr][Mm]/ |
24 | [Aa][Rr][Mm]64/ | 28 | [Aa][Rr][Mm]64/ |
25 | bld/ | 29 | bld/ |
26 | [Bb]in/ | 30 | [Bb]in/ |
27 | [Oo]bj/ | 31 | [Oo]bj/ |
28 | [Ll]og/ | 32 | [Ll]og/ |
33 | [Ll]ogs/ | ||
29 | 34 | ||
30 | # Visual Studio 2015/2017 cache/options directory | 35 | # Visual Studio 2015/2017 cache/options directory |
31 | .vs/ | 36 | .vs/ |
@@ -39,9 +44,10 @@ Generated\ Files/ | |||
39 | [Tt]est[Rr]esult*/ | 44 | [Tt]est[Rr]esult*/ |
40 | [Bb]uild[Ll]og.* | 45 | [Bb]uild[Ll]og.* |
41 | 46 | ||
42 | # NUNIT | 47 | # NUnit |
43 | *.VisualState.xml | 48 | *.VisualState.xml |
44 | TestResult.xml | 49 | TestResult.xml |
50 | nunit-*.xml | ||
45 | 51 | ||
46 | # Build Results of an ATL Project | 52 | # Build Results of an ATL Project |
47 | [Dd]ebugPS/ | 53 | [Dd]ebugPS/ |
@@ -56,6 +62,9 @@ project.lock.json | |||
56 | project.fragment.lock.json | 62 | project.fragment.lock.json |
57 | artifacts/ | 63 | artifacts/ |
58 | 64 | ||
65 | # ASP.NET Scaffolding | ||
66 | ScaffoldingReadMe.txt | ||
67 | |||
59 | # StyleCop | 68 | # StyleCop |
60 | StyleCopReport.xml | 69 | StyleCopReport.xml |
61 | 70 | ||
@@ -81,6 +90,7 @@ StyleCopReport.xml | |||
81 | *.tmp_proj | 90 | *.tmp_proj |
82 | *_wpftmp.csproj | 91 | *_wpftmp.csproj |
83 | *.log | 92 | *.log |
93 | *.tlog | ||
84 | *.vspscc | 94 | *.vspscc |
85 | *.vssscc | 95 | *.vssscc |
86 | .builds | 96 | .builds |
@@ -122,9 +132,6 @@ _ReSharper*/ | |||
122 | *.[Rr]e[Ss]harper | 132 | *.[Rr]e[Ss]harper |
123 | *.DotSettings.user | 133 | *.DotSettings.user |
124 | 134 | ||
125 | # JustCode is a .NET coding add-in | ||
126 | .JustCode | ||
127 | |||
128 | # TeamCity is a build add-in | 135 | # TeamCity is a build add-in |
129 | _TeamCity* | 136 | _TeamCity* |
130 | 137 | ||
@@ -135,6 +142,11 @@ _TeamCity* | |||
135 | .axoCover/* | 142 | .axoCover/* |
136 | !.axoCover/settings.json | 143 | !.axoCover/settings.json |
137 | 144 | ||
145 | # Coverlet is a free, cross platform Code Coverage Tool | ||
146 | coverage*.json | ||
147 | coverage*.xml | ||
148 | coverage*.info | ||
149 | |||
138 | # Visual Studio code coverage results | 150 | # Visual Studio code coverage results |
139 | *.coverage | 151 | *.coverage |
140 | *.coveragexml | 152 | *.coveragexml |
@@ -182,6 +194,8 @@ PublishScripts/ | |||
182 | 194 | ||
183 | # NuGet Packages | 195 | # NuGet Packages |
184 | *.nupkg | 196 | *.nupkg |
197 | # NuGet Symbol Packages | ||
198 | *.snupkg | ||
185 | # The packages folder can be ignored because of Package Restore | 199 | # The packages folder can be ignored because of Package Restore |
186 | **/[Pp]ackages/* | 200 | **/[Pp]ackages/* |
187 | # except build/, which is used as an MSBuild target. | 201 | # except build/, which is used as an MSBuild target. |
@@ -192,6 +206,9 @@ PublishScripts/ | |||
192 | *.nuget.props | 206 | *.nuget.props |
193 | *.nuget.targets | 207 | *.nuget.targets |
194 | 208 | ||
209 | # Nuget personal access tokens and Credentials | ||
210 | nuget.config | ||
211 | |||
195 | # Microsoft Azure Build Output | 212 | # Microsoft Azure Build Output |
196 | csx/ | 213 | csx/ |
197 | *.build.csdef | 214 | *.build.csdef |
@@ -206,6 +223,8 @@ BundleArtifacts/ | |||
206 | Package.StoreAssociation.xml | 223 | Package.StoreAssociation.xml |
207 | _pkginfo.txt | 224 | _pkginfo.txt |
208 | *.appx | 225 | *.appx |
226 | *.appxbundle | ||
227 | *.appxupload | ||
209 | 228 | ||
210 | # Visual Studio cache files | 229 | # Visual Studio cache files |
211 | # files ending in .cache can be ignored | 230 | # files ending in .cache can be ignored |
@@ -231,8 +250,6 @@ orleans.codegen.cs | |||
231 | # Since there are multiple workflows, uncomment next line to ignore bower_components | 250 | # Since there are multiple workflows, uncomment next line to ignore bower_components |
232 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) | 251 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
233 | #bower_components/ | 252 | #bower_components/ |
234 | # ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true | ||
235 | **/wwwroot/lib/ | ||
236 | 253 | ||
237 | # RIA/Silverlight projects | 254 | # RIA/Silverlight projects |
238 | Generated_Code/ | 255 | Generated_Code/ |
@@ -257,6 +274,9 @@ ServiceFabricBackup/ | |||
257 | *.bim.layout | 274 | *.bim.layout |
258 | *.bim_*.settings | 275 | *.bim_*.settings |
259 | *.rptproj.rsuser | 276 | *.rptproj.rsuser |
277 | *- [Bb]ackup.rdl | ||
278 | *- [Bb]ackup ([0-9]).rdl | ||
279 | *- [Bb]ackup ([0-9][0-9]).rdl | ||
260 | 280 | ||
261 | # Microsoft Fakes | 281 | # Microsoft Fakes |
262 | FakesAssemblies/ | 282 | FakesAssemblies/ |
@@ -292,10 +312,6 @@ paket-files/ | |||
292 | # FAKE - F# Make | 312 | # FAKE - F# Make |
293 | .fake/ | 313 | .fake/ |
294 | 314 | ||
295 | # JetBrains Rider | ||
296 | .idea/ | ||
297 | *.sln.iml | ||
298 | |||
299 | # CodeRush personal settings | 315 | # CodeRush personal settings |
300 | .cr/personal | 316 | .cr/personal |
301 | 317 | ||
@@ -337,5 +353,36 @@ ASALocalRun/ | |||
337 | # Local History for Visual Studio | 353 | # Local History for Visual Studio |
338 | .localhistory/ | 354 | .localhistory/ |
339 | 355 | ||
340 | # BeatPulse healthcheck temp database | 356 | # BeatPulse healthcheck temp database |
341 | healthchecksdb | 357 | healthchecksdb |
358 | |||
359 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 | ||
360 | MigrationBackup/ | ||
361 | |||
362 | # Ionide (cross platform F# VS Code tools) working folder | ||
363 | .ionide/ | ||
364 | |||
365 | # Fody - auto-generated XML schema | ||
366 | FodyWeavers.xsd | ||
367 | |||
368 | # VS Code files for those working on multiple tools | ||
369 | .vscode/* | ||
370 | !.vscode/settings.json | ||
371 | !.vscode/tasks.json | ||
372 | !.vscode/launch.json | ||
373 | !.vscode/extensions.json | ||
374 | *.code-workspace | ||
375 | |||
376 | # Local History for Visual Studio Code | ||
377 | .history/ | ||
378 | |||
379 | # Windows Installer files from build outputs | ||
380 | *.cab | ||
381 | *.msi | ||
382 | *.msix | ||
383 | *.msm | ||
384 | *.msp | ||
385 | |||
386 | # JetBrains Rider | ||
387 | .idea/ | ||
388 | *.sln.iml | ||