microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
.gitignore
493lines · modecode
| 1 | ## Ignore Visual Studio temporary files, build results, and |
| 2 | ## files generated by popular Visual Studio add-ons. |
| 3 | ## |
| 4 | ## Get latest from `dotnet new gitignore` |
| 5 | |
| 6 | # dotenv files |
| 7 | .env |
| 8 | |
| 9 | # local app settings files |
| 10 | appsettings.Local.json |
| 11 | appsettings.Development.json |
| 12 | launchsettings.json |
| 13 | |
| 14 | # User-specific files |
| 15 | *.rsuser |
| 16 | *.suo |
| 17 | *.user |
| 18 | *.userosscache |
| 19 | *.sln.docstates |
| 20 | |
| 21 | # User-specific files (MonoDevelop/Xamarin Studio) |
| 22 | *.userprefs |
| 23 | |
| 24 | # Mono auto generated files |
| 25 | mono_crash.* |
| 26 | |
| 27 | # Build results |
| 28 | [Dd]ebug/ |
| 29 | [Dd]ebugPublic/ |
| 30 | [Rr]elease/ |
| 31 | [Rr]eleases/ |
| 32 | x64/ |
| 33 | x86/ |
| 34 | [Ww][Ii][Nn]32/ |
| 35 | [Aa][Rr][Mm]/ |
| 36 | [Aa][Rr][Mm]64/ |
| 37 | bld/ |
| 38 | [Bb]in/ |
| 39 | [Oo]bj/ |
| 40 | [Ll]og/ |
| 41 | [Ll]ogs/ |
| 42 | |
| 43 | # Visual Studio 2015/2017 cache/options directory |
| 44 | .vs/ |
| 45 | # Uncomment if you have tasks that create the project's static files in wwwroot |
| 46 | #wwwroot/ |
| 47 | |
| 48 | # Visual Studio 2017 auto generated files |
| 49 | Generated\ Files/ |
| 50 | |
| 51 | # MSTest test Results |
| 52 | [Tt]est[Rr]esult*/ |
| 53 | [Bb]uild[Ll]og.* |
| 54 | |
| 55 | # NUnit |
| 56 | TestCoverage |
| 57 | *.VisualState.xml |
| 58 | TestResult.xml |
| 59 | nunit-*.xml |
| 60 | |
| 61 | # Build Results of an ATL Project |
| 62 | [Dd]ebugPS/ |
| 63 | [Rr]eleasePS/ |
| 64 | dlldata.c |
| 65 | |
| 66 | # Benchmark Results |
| 67 | BenchmarkDotNet.Artifacts/ |
| 68 | |
| 69 | # .NET |
| 70 | project.lock.json |
| 71 | project.fragment.lock.json |
| 72 | artifacts/ |
| 73 | |
| 74 | # Tye |
| 75 | .tye/ |
| 76 | |
| 77 | # ASP.NET Scaffolding |
| 78 | ScaffoldingReadMe.txt |
| 79 | |
| 80 | # StyleCop |
| 81 | StyleCopReport.xml |
| 82 | |
| 83 | # Files built by Visual Studio |
| 84 | *_i.c |
| 85 | *_p.c |
| 86 | *_h.h |
| 87 | *.ilk |
| 88 | *.meta |
| 89 | *.obj |
| 90 | *.iobj |
| 91 | *.pch |
| 92 | *.pdb |
| 93 | *.ipdb |
| 94 | *.pgc |
| 95 | *.pgd |
| 96 | *.rsp |
| 97 | *.sbr |
| 98 | *.tlb |
| 99 | *.tli |
| 100 | *.tlh |
| 101 | *.tmp |
| 102 | *.tmp_proj |
| 103 | *_wpftmp.csproj |
| 104 | *.log |
| 105 | *.tlog |
| 106 | *.vspscc |
| 107 | *.vssscc |
| 108 | .builds |
| 109 | *.pidb |
| 110 | *.svclog |
| 111 | *.scc |
| 112 | |
| 113 | # Chutzpah Test files |
| 114 | _Chutzpah* |
| 115 | |
| 116 | # Visual C++ cache files |
| 117 | ipch/ |
| 118 | *.aps |
| 119 | *.ncb |
| 120 | *.opendb |
| 121 | *.opensdf |
| 122 | *.sdf |
| 123 | *.cachefile |
| 124 | *.VC.db |
| 125 | *.VC.VC.opendb |
| 126 | |
| 127 | # Visual Studio profiler |
| 128 | *.psess |
| 129 | *.vsp |
| 130 | *.vspx |
| 131 | *.sap |
| 132 | |
| 133 | # Visual Studio Trace Files |
| 134 | *.e2e |
| 135 | |
| 136 | # TFS 2012 Local Workspace |
| 137 | $tf/ |
| 138 | |
| 139 | # Guidance Automation Toolkit |
| 140 | *.gpState |
| 141 | |
| 142 | # ReSharper is a .NET coding add-in |
| 143 | _ReSharper*/ |
| 144 | *.[Rr]e[Ss]harper |
| 145 | *.DotSettings.user |
| 146 | |
| 147 | # TeamCity is a build add-in |
| 148 | _TeamCity* |
| 149 | |
| 150 | # DotCover is a Code Coverage Tool |
| 151 | *.dotCover |
| 152 | |
| 153 | # AxoCover is a Code Coverage Tool |
| 154 | .axoCover/* |
| 155 | !.axoCover/settings.json |
| 156 | |
| 157 | # Coverlet is a free, cross platform Code Coverage Tool |
| 158 | coverage*.json |
| 159 | coverage*.xml |
| 160 | coverage*.info |
| 161 | |
| 162 | # Visual Studio code coverage results |
| 163 | *.coverage |
| 164 | *.coveragexml |
| 165 | |
| 166 | # NCrunch |
| 167 | _NCrunch_* |
| 168 | .*crunch*.local.xml |
| 169 | nCrunchTemp_* |
| 170 | |
| 171 | # MightyMoose |
| 172 | *.mm.* |
| 173 | AutoTest.Net/ |
| 174 | |
| 175 | # Web workbench (sass) |
| 176 | .sass-cache/ |
| 177 | |
| 178 | # Installshield output folder |
| 179 | [Ee]xpress/ |
| 180 | |
| 181 | # DocProject is a documentation generator add-in |
| 182 | DocProject/buildhelp/ |
| 183 | DocProject/Help/*.HxT |
| 184 | DocProject/Help/*.HxC |
| 185 | DocProject/Help/*.hhc |
| 186 | DocProject/Help/*.hhk |
| 187 | DocProject/Help/*.hhp |
| 188 | DocProject/Help/Html2 |
| 189 | DocProject/Help/html |
| 190 | |
| 191 | # Click-Once directory |
| 192 | publish/ |
| 193 | |
| 194 | # Publish Web Output |
| 195 | *.[Pp]ublish.xml |
| 196 | *.azurePubxml |
| 197 | # Note: Comment the next line if you want to checkin your web deploy settings, |
| 198 | # but database connection strings (with potential passwords) will be unencrypted |
| 199 | *.pubxml |
| 200 | *.publishproj |
| 201 | |
| 202 | # Microsoft Azure Web App publish settings. Comment the next line if you want to |
| 203 | # checkin your Azure Web App publish settings, but sensitive information contained |
| 204 | # in these scripts will be unencrypted |
| 205 | PublishScripts/ |
| 206 | |
| 207 | # NuGet Packages |
| 208 | *.nupkg |
| 209 | # NuGet Symbol Packages |
| 210 | *.snupkg |
| 211 | # The packages folder can be ignored because of Package Restore |
| 212 | **/[Pp]ackages/* |
| 213 | # except build/, which is used as an MSBuild target. |
| 214 | !**/[Pp]ackages/build/ |
| 215 | # Uncomment if necessary however generally it will be regenerated when needed |
| 216 | #!**/[Pp]ackages/repositories.config |
| 217 | # NuGet v3's project.json files produces more ignorable files |
| 218 | *.nuget.props |
| 219 | *.nuget.targets |
| 220 | |
| 221 | # Microsoft Azure Build Output |
| 222 | csx/ |
| 223 | *.build.csdef |
| 224 | |
| 225 | # Microsoft Azure Emulator |
| 226 | ecf/ |
| 227 | rcf/ |
| 228 | |
| 229 | # Windows Store app package directories and files |
| 230 | AppPackages/ |
| 231 | BundleArtifacts/ |
| 232 | Package.StoreAssociation.xml |
| 233 | _pkginfo.txt |
| 234 | *.appx |
| 235 | *.appxbundle |
| 236 | *.appxupload |
| 237 | |
| 238 | # Visual Studio cache files |
| 239 | # files ending in .cache can be ignored |
| 240 | *.[Cc]ache |
| 241 | # but keep track of directories ending in .cache |
| 242 | !?*.[Cc]ache/ |
| 243 | |
| 244 | # Others |
| 245 | ClientBin/ |
| 246 | ~$* |
| 247 | *~ |
| 248 | *.dbmdl |
| 249 | *.dbproj.schemaview |
| 250 | *.jfm |
| 251 | *.pfx |
| 252 | *.publishsettings |
| 253 | orleans.codegen.cs |
| 254 | |
| 255 | # Including strong name files can present a security risk |
| 256 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) |
| 257 | #*.snk |
| 258 | |
| 259 | # Since there are multiple workflows, uncomment next line to ignore bower_components |
| 260 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
| 261 | #bower_components/ |
| 262 | |
| 263 | # RIA/Silverlight projects |
| 264 | Generated_Code/ |
| 265 | |
| 266 | # Backup & report files from converting an old project file |
| 267 | # to a newer Visual Studio version. Backup files are not needed, |
| 268 | # because we have git ;-) |
| 269 | _UpgradeReport_Files/ |
| 270 | Backup*/ |
| 271 | UpgradeLog*.XML |
| 272 | UpgradeLog*.htm |
| 273 | ServiceFabricBackup/ |
| 274 | *.rptproj.bak |
| 275 | |
| 276 | # SQL Server files |
| 277 | *.mdf |
| 278 | *.ldf |
| 279 | *.ndf |
| 280 | |
| 281 | # Business Intelligence projects |
| 282 | *.rdl.data |
| 283 | *.bim.layout |
| 284 | *.bim_*.settings |
| 285 | *.rptproj.rsuser |
| 286 | *- [Bb]ackup.rdl |
| 287 | *- [Bb]ackup ([0-9]).rdl |
| 288 | *- [Bb]ackup ([0-9][0-9]).rdl |
| 289 | |
| 290 | # Microsoft Fakes |
| 291 | FakesAssemblies/ |
| 292 | |
| 293 | # GhostDoc plugin setting file |
| 294 | *.GhostDoc.xml |
| 295 | |
| 296 | # Node.js Tools for Visual Studio |
| 297 | .ntvs_analysis.dat |
| 298 | node_modules/ |
| 299 | |
| 300 | # Visual Studio 6 build log |
| 301 | *.plg |
| 302 | |
| 303 | # Visual Studio 6 workspace options file |
| 304 | *.opt |
| 305 | |
| 306 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) |
| 307 | *.vbw |
| 308 | |
| 309 | # Visual Studio 6 auto-generated project file (contains which files were open etc.) |
| 310 | *.vbp |
| 311 | |
| 312 | # Visual Studio 6 workspace and project file (working project files containing files to include in project) |
| 313 | *.dsw |
| 314 | *.dsp |
| 315 | |
| 316 | # Visual Studio 6 technical files |
| 317 | *.ncb |
| 318 | *.aps |
| 319 | |
| 320 | # Visual Studio LightSwitch build output |
| 321 | **/*.HTMLClient/GeneratedArtifacts |
| 322 | **/*.DesktopClient/GeneratedArtifacts |
| 323 | **/*.DesktopClient/ModelManifest.xml |
| 324 | **/*.Server/GeneratedArtifacts |
| 325 | **/*.Server/ModelManifest.xml |
| 326 | _Pvt_Extensions |
| 327 | |
| 328 | # Paket dependency manager |
| 329 | .paket/paket.exe |
| 330 | paket-files/ |
| 331 | |
| 332 | # FAKE - F# Make |
| 333 | .fake/ |
| 334 | |
| 335 | # CodeRush personal settings |
| 336 | .cr/personal |
| 337 | |
| 338 | # Python Tools for Visual Studio (PTVS) |
| 339 | __pycache__/ |
| 340 | *.pyc |
| 341 | |
| 342 | # Cake - Uncomment if you are using it |
| 343 | # tools/** |
| 344 | # !tools/packages.config |
| 345 | |
| 346 | # Tabs Studio |
| 347 | *.tss |
| 348 | |
| 349 | # Telerik's JustMock configuration file |
| 350 | *.jmconfig |
| 351 | |
| 352 | # BizTalk build output |
| 353 | *.btp.cs |
| 354 | *.btm.cs |
| 355 | *.odx.cs |
| 356 | *.xsd.cs |
| 357 | |
| 358 | # OpenCover UI analysis results |
| 359 | OpenCover/ |
| 360 | |
| 361 | # Azure Stream Analytics local run output |
| 362 | ASALocalRun/ |
| 363 | |
| 364 | # MSBuild Binary and Structured Log |
| 365 | *.binlog |
| 366 | |
| 367 | # NVidia Nsight GPU debugger configuration file |
| 368 | *.nvuser |
| 369 | |
| 370 | # MFractors (Xamarin productivity tool) working folder |
| 371 | .mfractor/ |
| 372 | |
| 373 | # Local History for Visual Studio |
| 374 | .localhistory/ |
| 375 | |
| 376 | # Visual Studio History (VSHistory) files |
| 377 | .vshistory/ |
| 378 | |
| 379 | # BeatPulse healthcheck temp database |
| 380 | healthchecksdb |
| 381 | |
| 382 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 |
| 383 | MigrationBackup/ |
| 384 | |
| 385 | # Ionide (cross platform F# VS Code tools) working folder |
| 386 | .ionide/ |
| 387 | |
| 388 | # Fody - auto-generated XML schema |
| 389 | FodyWeavers.xsd |
| 390 | |
| 391 | # VS Code files for those working on multiple tools |
| 392 | .vscode/* |
| 393 | !.vscode/settings.json |
| 394 | !.vscode/tasks.json |
| 395 | !.vscode/launch.json |
| 396 | !.vscode/extensions.json |
| 397 | *.code-workspace |
| 398 | |
| 399 | # Local History for Visual Studio Code |
| 400 | .history/ |
| 401 | |
| 402 | # Windows Installer files from build outputs |
| 403 | *.cab |
| 404 | *.msi |
| 405 | *.msix |
| 406 | *.msm |
| 407 | *.msp |
| 408 | |
| 409 | # JetBrains Rider |
| 410 | *.sln.iml |
| 411 | .idea/ |
| 412 | |
| 413 | ## |
| 414 | ## Visual studio for Mac |
| 415 | ## |
| 416 | |
| 417 | |
| 418 | # globs |
| 419 | Makefile.in |
| 420 | *.userprefs |
| 421 | *.usertasks |
| 422 | config.make |
| 423 | config.status |
| 424 | aclocal.m4 |
| 425 | install-sh |
| 426 | autom4te.cache/ |
| 427 | *.tar.gz |
| 428 | tarballs/ |
| 429 | test-results/ |
| 430 | |
| 431 | # Mac bundle stuff |
| 432 | *.dmg |
| 433 | *.app |
| 434 | |
| 435 | # content below from: https://github.com/github/gitignore/blob/main/Global/macOS.gitignore |
| 436 | # General |
| 437 | .DS_Store |
| 438 | .AppleDouble |
| 439 | .LSOverride |
| 440 | |
| 441 | # Icon must end with two \r |
| 442 | Icon |
| 443 | |
| 444 | |
| 445 | # Thumbnails |
| 446 | ._* |
| 447 | |
| 448 | # Files that might appear in the root of a volume |
| 449 | .DocumentRevisions-V100 |
| 450 | .fseventsd |
| 451 | .Spotlight-V100 |
| 452 | .TemporaryItems |
| 453 | .Trashes |
| 454 | .VolumeIcon.icns |
| 455 | .com.apple.timemachine.donotpresent |
| 456 | |
| 457 | # Directories potentially created on remote AFP share |
| 458 | .AppleDB |
| 459 | .AppleDesktop |
| 460 | Network Trash Folder |
| 461 | Temporary Items |
| 462 | .apdisk |
| 463 | |
| 464 | # content below from: https://github.com/github/gitignore/blob/main/Global/Windows.gitignore |
| 465 | # Windows thumbnail cache files |
| 466 | Thumbs.db |
| 467 | ehthumbs.db |
| 468 | ehthumbs_vista.db |
| 469 | |
| 470 | # Dump file |
| 471 | *.stackdump |
| 472 | |
| 473 | # Folder config file |
| 474 | [Dd]esktop.ini |
| 475 | |
| 476 | # Recycle Bin used on file shares |
| 477 | $RECYCLE.BIN/ |
| 478 | |
| 479 | # Windows Installer files |
| 480 | *.cab |
| 481 | *.msi |
| 482 | *.msix |
| 483 | *.msm |
| 484 | *.msp |
| 485 | |
| 486 | # Windows shortcuts |
| 487 | *.lnk |
| 488 | |
| 489 | # Vim temporary swap files |
| 490 | *.swp |
| 491 | |
| 492 | # Claude local settings |
| 493 | .claude/settings.local.json |
| 494 | |