|
| 1 | +# Download this file using PowerShell v3 under Windows with the following comand: |
| 2 | +# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore |
| 3 | +# or wget: |
| 4 | +# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore |
| 5 | + |
| 6 | +# User-specific files |
| 7 | +*.suo |
| 8 | +*.user |
| 9 | +*.sln.docstates |
| 10 | + |
| 11 | +# Build results |
| 12 | +[Dd]ebug/ |
| 13 | +[Rr]elease/ |
| 14 | +x64/ |
| 15 | +[Bb]in/ |
| 16 | +[Oo]bj/ |
| 17 | +# build folder is nowadays used for build scripts and should not be ignored |
| 18 | +#build/ |
| 19 | + |
| 20 | +# NuGet Packages |
| 21 | +*.nupkg |
| 22 | +# The packages folder can be ignored because of Package Restore |
| 23 | +**/packages/* |
| 24 | +# except build/, which is used as an MSBuild target. |
| 25 | +!**/packages/build/ |
| 26 | +# Uncomment if necessary however generally it will be regenerated when needed |
| 27 | +#!**/packages/repositories.config |
| 28 | + |
| 29 | +# MSTest test Results |
| 30 | +[Tt]est[Rr]esult*/ |
| 31 | +[Bb]uild[Ll]og.* |
| 32 | + |
| 33 | +*_i.c |
| 34 | +*_p.c |
| 35 | +*.ilk |
| 36 | +*.meta |
| 37 | +*.obj |
| 38 | +*.pch |
| 39 | +*.pdb |
| 40 | +*.pgc |
| 41 | +*.pgd |
| 42 | +*.rsp |
| 43 | +*.sbr |
| 44 | +*.tlb |
| 45 | +*.tli |
| 46 | +*.tlh |
| 47 | +*.tmp |
| 48 | +*.tmp_proj |
| 49 | +*.log |
| 50 | +*.vspscc |
| 51 | +*.vssscc |
| 52 | +.builds |
| 53 | +*.pidb |
| 54 | +*.log |
| 55 | +*.scc |
| 56 | + |
| 57 | +# OS generated files # |
| 58 | +.DS_Store* |
| 59 | +Icon? |
| 60 | + |
| 61 | +# Visual C++ cache files |
| 62 | +ipch/ |
| 63 | +*.aps |
| 64 | +*.ncb |
| 65 | +*.opensdf |
| 66 | +*.sdf |
| 67 | +*.cachefile |
| 68 | + |
| 69 | +# Visual Studio profiler |
| 70 | +*.psess |
| 71 | +*.vsp |
| 72 | +*.vspx |
| 73 | + |
| 74 | +# Guidance Automation Toolkit |
| 75 | +*.gpState |
| 76 | + |
| 77 | +# ReSharper is a .NET coding add-in |
| 78 | +_ReSharper*/ |
| 79 | +*.[Rr]e[Ss]harper |
| 80 | + |
| 81 | +# TeamCity is a build add-in |
| 82 | +_TeamCity* |
| 83 | + |
| 84 | +# DotCover is a Code Coverage Tool |
| 85 | +*.dotCover |
| 86 | + |
| 87 | +# NCrunch |
| 88 | +*.ncrunch* |
| 89 | +.*crunch*.local.xml |
| 90 | + |
| 91 | +# Installshield output folder |
| 92 | +[Ee]xpress/ |
| 93 | + |
| 94 | +# DocProject is a documentation generator add-in |
| 95 | +DocProject/buildhelp/ |
| 96 | +DocProject/Help/*.HxT |
| 97 | +DocProject/Help/*.HxC |
| 98 | +DocProject/Help/*.hhc |
| 99 | +DocProject/Help/*.hhk |
| 100 | +DocProject/Help/*.hhp |
| 101 | +DocProject/Help/Html2 |
| 102 | +DocProject/Help/html |
| 103 | + |
| 104 | +# Click-Once directory |
| 105 | +publish/ |
| 106 | + |
| 107 | +# Publish Web Output |
| 108 | +*.Publish.xml |
| 109 | + |
| 110 | +# Windows Azure Build Output |
| 111 | +csx |
| 112 | +*.build.csdef |
| 113 | + |
| 114 | +# Windows Store app package directory |
| 115 | +AppPackages/ |
| 116 | + |
| 117 | +# Others |
| 118 | +*.Cache |
| 119 | +ClientBin/ |
| 120 | +[Ss]tyle[Cc]op.* |
| 121 | +~$* |
| 122 | +*~ |
| 123 | +*.dbmdl |
| 124 | +*.[Pp]ublish.xml |
| 125 | +*.pfx |
| 126 | +*.publishsettings |
| 127 | +modulesbin/ |
| 128 | +tempbin/ |
| 129 | + |
| 130 | +# EPiServer Site file (VPP) |
| 131 | +AppData/ |
| 132 | + |
| 133 | +# RIA/Silverlight projects |
| 134 | +Generated_Code/ |
| 135 | + |
| 136 | +# Backup & report files from converting an old project file to a newer |
| 137 | +# Visual Studio version. Backup files are not needed, because we have git ;-) |
| 138 | +_UpgradeReport_Files/ |
| 139 | +Backup*/ |
| 140 | +UpgradeLog*.XML |
| 141 | +UpgradeLog*.htm |
| 142 | + |
| 143 | +# vim |
| 144 | +*.txt~ |
| 145 | +*.swp |
| 146 | +*.swo |
| 147 | + |
| 148 | +# svn |
| 149 | +.svn |
| 150 | + |
| 151 | +# Remainings from resolvings conflicts in Source Control |
| 152 | +*.orig |
| 153 | + |
| 154 | +# SQL Server files |
| 155 | +**/App_Data/*.mdf |
| 156 | +**/App_Data/*.ldf |
| 157 | +**/App_Data/*.sdf |
| 158 | + |
| 159 | + |
| 160 | +#LightSwitch generated files |
| 161 | +GeneratedArtifacts/ |
| 162 | +_Pvt_Extensions/ |
| 163 | +ModelManifest.xml |
| 164 | + |
| 165 | +# ========================= |
| 166 | +# Windows detritus |
| 167 | +# ========================= |
| 168 | + |
| 169 | +# Windows image file caches |
| 170 | +Thumbs.db |
| 171 | +ehthumbs.db |
| 172 | + |
| 173 | +# Folder config file |
| 174 | +Desktop.ini |
| 175 | + |
| 176 | +# Recycle Bin used on file shares |
| 177 | +$RECYCLE.BIN/ |
| 178 | + |
| 179 | +# Mac desktop service store files |
| 180 | +.DS_Store |
| 181 | + |
| 182 | +# SASS Compiler cache |
| 183 | +.sass-cache |
| 184 | + |
| 185 | +# Visual Studio 2014 CTP |
| 186 | +**/*.sln.ide |
| 187 | + |
| 188 | +# Visual Studio temp something |
| 189 | +.vs/ |
| 190 | + |
| 191 | +# dotnet stuff |
| 192 | +project.lock.json |
| 193 | + |
| 194 | +# VS 2015+ |
| 195 | +*.vc.vc.opendb |
| 196 | +*.vc.db |
| 197 | + |
| 198 | +# Rider |
| 199 | +.idea/ |
| 200 | + |
| 201 | +# Output folder used by Webpack or other FE stuff |
| 202 | +**/node_modules/* |
| 203 | + |
| 204 | +# SpecFlow specific |
| 205 | +*.feature.cs |
| 206 | +*.feature.xlsx.* |
| 207 | +*.Specs_*.html |
| 208 | + |
| 209 | + |
| 210 | +/SPEC |
| 211 | +VCS_Release |
| 212 | +/GPMVehicleControlSystem/param/IO_Wago.ini |
| 213 | +/GPMVehicleControlSystem/task_name.txt |
| 214 | +/GPMVehicleControlSystem/VMS.db |
| 215 | +/GPMVehicleControlSystem/uploads |
| 216 | +/GPMVehicleControlSystem/cst_read_id.txt |
| 217 | +/.editorconfig |
0 commit comments