1a59f514
| 1 | ## The .lutignore file is used by Live Unit Testing to ignore Visual Studio temporary files, build results, |
| 2 | ## and files generated by popular Visual Studio add-ons when creating a private copy of the source tree that |
| 3 | ## Live Unit Testing uses for its build. |
| 4 | ## |
| 5 | ## This file has same format as git's .gitignore file (https://git-scm.com/docs/gitignore). In fact, in the |
| 6 | ## case where a .lutignore file is not found, but a .gitignore file is found, Live Unit Testing will use the |
| 7 | ## .gitignore file directly for the above purpose. |
| 8 | |
| 9 | # User-specific files |
| 10 | *.suo |
| 11 | *.user |
| 12 | *.userprefs |
| 13 | *.sln.docstates |
| 14 | .vs/ |
| 15 | .vscode/ |
| 16 | .packages/ |
| 17 | .dotnet/ |
| 18 | .tools/ |
| 19 | .idea/ |
| 20 | |
| 21 | # Build results |
| 22 | [Dd]ebug/ |
| 23 | [Rr]elease/ |
| 24 | [Bb]inaries/ |
| 25 | [Bb]in/ |
| 26 | [Oo]bj/ |
| 27 | x64/ |
| 28 | TestResults/ |
| 29 | |
| 30 | # Debug artifactss |
| 31 | launchSettings.json |
| 32 | |
| 33 | # Click-Once directory |
| 34 | publish/ |
| 35 | |
| 36 | # Publish Web Output |
| 37 | *.Publish.xml |
| 38 | |
| 39 | # NuGet Packages Directory |
| 40 | packages/ |
| 41 | |
| 42 | # NuGet V3 artifacts |
| 43 | [Nn]u[Gg]et.exe |
| 44 | *-packages.config |
| 45 | *.nuget.props |
| 46 | *.nuget.targets |
| 47 | project.lock.json |
| 48 | msbuild.binlog |
| 49 | *.project.lock.json |
| 50 | |
| 51 | # Miscellaneous |
| 52 | *_i.c |
| 53 | *_p.c |
| 54 | *.ilk |
| 55 | *.meta |
| 56 | *.obj |
| 57 | *.pch |
| 58 | *.pdb |
| 59 | *.pgc |
| 60 | *.pgd |
| 61 | *.sbr |
| 62 | *.tlb |
| 63 | *.tli |
| 64 | *.tlh |
| 65 | *.tmp |
| 66 | *.tmp_proj |
| 67 | *.log |
| 68 | *.wrn |
| 69 | *.vspscc |
| 70 | *.vssscc |
| 71 | .builds |
| 72 | *.pidb |
| 73 | *.scc |
| 74 | sql/ |
| 75 | *.Cache |
| 76 | ClientBin/ |
| 77 | [Ss]tyle[Cc]op.* |
| 78 | ~$* |
| 79 | *~ |
| 80 | *.dbmdl |
| 81 | *.[Pp]ublish.xml |
| 82 | *.pfx |
| 83 | *.publishsettings |
| 84 | |
| 85 | # Visual Studio cache files |
| 86 | *.sln.ide/ |
| 87 | |
| 88 | # Visual C++ cache files |
| 89 | ipch/ |
| 90 | *.aps |
| 91 | *.ncb |
| 92 | *.opensdf |
| 93 | *.sdf |
| 94 | *.cachefile |
| 95 | *.VC.opendb |
| 96 | *.VC.db |
| 97 | |
| 98 | # Windows Store app package directory |
| 99 | AppPackages/ |
| 100 | |
| 101 | # Visual Studio profiler |
| 102 | *.psess |
| 103 | *.vsp |
| 104 | *.vspx |
| 105 | |
| 106 | # Guidance Automation Toolkit |
| 107 | *.gpState |
| 108 | |
| 109 | # ReSharper |
| 110 | _ReSharper*/ |
| 111 | *.[Rr]e[Ss]harper |
| 112 | *.DotSettings |
| 113 | |
| 114 | # TeamCity is a build add-in |
| 115 | _TeamCity* |
| 116 | |
| 117 | # DotCover is a Code Coverage Tool |
| 118 | *.dotCover |
| 119 | |
| 120 | # NCrunch |
| 121 | *.ncrunch* |
| 122 | .*crunch*.local.xml |
| 123 | |
| 124 | # Upgrade backups |
| 125 | _UpgradeReport_Files/ |
| 126 | Backup*/ |
| 127 | UpgradeLog*.XML |
| 128 | UpgradeLog*.htm |
| 129 | |
| 130 | # SQL Server files |
| 131 | App_Data/*.mdf |
| 132 | App_Data/*.ldf |
| 133 | |
| 134 | #LightSwitch generated files |
| 135 | GeneratedArtifacts/ |
| 136 | _Pvt_Extensions/ |
| 137 | ModelManifest.xml |
| 138 | |
| 139 | # Windows image file caches |
| 140 | Thumbs.db |
| 141 | ehthumbs.db |
| 142 | |
| 143 | # Folder config file |
| 144 | Desktop.ini |
| 145 | |
| 146 | # Recycle Bin used on file shares |
| 147 | $RECYCLE.BIN/ |
| 148 | |
| 149 | # Mac desktop service store files |
| 150 | .DS_Store |
| 151 | |
| 152 | # WPF temp projects |
| 153 | *wpftmp.* |
| 154 | |