diff options
author | Rob Mensching <rob@firegiant.com> | 2018-12-22 10:53:07 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2018-12-22 10:53:07 -0800 |
commit | ee8bb3f35024c3567ffe590d4492198f53b61bb1 (patch) | |
tree | 821cc09fb31e6ae165e08ab2099e6ee133530602 /.gitignore | |
parent | 65a9e0b609f6b25e0e138eef9e8bb58cd98120d9 (diff) | |
download | wix-ee8bb3f35024c3567ffe590d4492198f53b61bb1.tar.gz wix-ee8bb3f35024c3567ffe590d4492198f53b61bb1.tar.bz2 wix-ee8bb3f35024c3567ffe590d4492198f53b61bb1.zip |
Update to latest Home\repo-template
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 68 |
1 files changed, 52 insertions, 16 deletions
@@ -4,6 +4,7 @@ | |||
4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore |
5 | 5 | ||
6 | # User-specific files | 6 | # User-specific files |
7 | *.rsuser | ||
7 | *.suo | 8 | *.suo |
8 | *.user | 9 | *.user |
9 | *.userosscache | 10 | *.userosscache |
@@ -19,19 +20,21 @@ | |||
19 | [Rr]eleases/ | 20 | [Rr]eleases/ |
20 | x64/ | 21 | x64/ |
21 | x86/ | 22 | x86/ |
23 | [Aa][Rr][Mm]/ | ||
24 | [Aa][Rr][Mm]64/ | ||
22 | bld/ | 25 | bld/ |
23 | [Bb]in/ | 26 | [Bb]in/ |
24 | [Oo]bj/ | 27 | [Oo]bj/ |
25 | [Ll]og/ | 28 | [Ll]og/ |
26 | 29 | ||
27 | # VSCode | 30 | # Visual Studio 2015/2017 cache/options directory |
28 | .vscode/ | ||
29 | |||
30 | # Visual Studio 2015 cache/options directory | ||
31 | .vs/ | 31 | .vs/ |
32 | # Uncomment if you have tasks that create the project's static files in wwwroot | 32 | # Uncomment if you have tasks that create the project's static files in wwwroot |
33 | #wwwroot/ | 33 | #wwwroot/ |
34 | 34 | ||
35 | # Visual Studio 2017 auto generated files | ||
36 | Generated\ Files/ | ||
37 | |||
35 | # MSTest test Results | 38 | # MSTest test Results |
36 | [Tt]est[Rr]esult*/ | 39 | [Tt]est[Rr]esult*/ |
37 | [Bb]uild[Ll]og.* | 40 | [Bb]uild[Ll]og.* |
@@ -52,16 +55,21 @@ BenchmarkDotNet.Artifacts/ | |||
52 | project.lock.json | 55 | project.lock.json |
53 | project.fragment.lock.json | 56 | project.fragment.lock.json |
54 | artifacts/ | 57 | artifacts/ |
55 | **/Properties/launchSettings.json | ||
56 | 58 | ||
59 | # StyleCop | ||
60 | StyleCopReport.xml | ||
61 | |||
62 | # Files built by Visual Studio | ||
57 | *_i.c | 63 | *_i.c |
58 | *_p.c | 64 | *_p.c |
59 | *_i.h | 65 | *_h.h |
60 | *.ilk | 66 | *.ilk |
61 | *.meta | 67 | *.meta |
62 | *.obj | 68 | *.obj |
69 | *.iobj | ||
63 | *.pch | 70 | *.pch |
64 | *.pdb | 71 | *.pdb |
72 | *.ipdb | ||
65 | *.pgc | 73 | *.pgc |
66 | *.pgd | 74 | *.pgd |
67 | *.rsp | 75 | *.rsp |
@@ -71,6 +79,7 @@ artifacts/ | |||
71 | *.tlh | 79 | *.tlh |
72 | *.tmp | 80 | *.tmp |
73 | *.tmp_proj | 81 | *.tmp_proj |
82 | *_wpftmp.csproj | ||
74 | *.log | 83 | *.log |
75 | *.vspscc | 84 | *.vspscc |
76 | *.vssscc | 85 | *.vssscc |
@@ -99,6 +108,9 @@ ipch/ | |||
99 | *.vspx | 108 | *.vspx |
100 | *.sap | 109 | *.sap |
101 | 110 | ||
111 | # Visual Studio Trace Files | ||
112 | *.e2e | ||
113 | |||
102 | # TFS 2012 Local Workspace | 114 | # TFS 2012 Local Workspace |
103 | $tf/ | 115 | $tf/ |
104 | 116 | ||
@@ -171,11 +183,11 @@ PublishScripts/ | |||
171 | # NuGet Packages | 183 | # NuGet Packages |
172 | *.nupkg | 184 | *.nupkg |
173 | # The packages folder can be ignored because of Package Restore | 185 | # The packages folder can be ignored because of Package Restore |
174 | **/packages/* | 186 | **/[Pp]ackages/* |
175 | # except build/, which is used as an MSBuild target. | 187 | # except build/, which is used as an MSBuild target. |
176 | !**/packages/build/ | 188 | !**/[Pp]ackages/build/ |
177 | # Uncomment if necessary however generally it will be regenerated when needed | 189 | # Uncomment if necessary however generally it will be regenerated when needed |
178 | #!**/packages/repositories.config | 190 | #!**/[Pp]ackages/repositories.config |
179 | # NuGet v3's project.json files produces more ignorable files | 191 | # NuGet v3's project.json files produces more ignorable files |
180 | *.nuget.props | 192 | *.nuget.props |
181 | *.nuget.targets | 193 | *.nuget.targets |
@@ -199,7 +211,7 @@ _pkginfo.txt | |||
199 | # files ending in .cache can be ignored | 211 | # files ending in .cache can be ignored |
200 | *.[Cc]ache | 212 | *.[Cc]ache |
201 | # but keep track of directories ending in .cache | 213 | # but keep track of directories ending in .cache |
202 | !*.[Cc]ache/ | 214 | !?*.[Cc]ache/ |
203 | 215 | ||
204 | # Others | 216 | # Others |
205 | ClientBin/ | 217 | ClientBin/ |
@@ -212,9 +224,15 @@ ClientBin/ | |||
212 | *.publishsettings | 224 | *.publishsettings |
213 | orleans.codegen.cs | 225 | orleans.codegen.cs |
214 | 226 | ||
227 | # Including strong name files can present a security risk | ||
228 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) | ||
229 | #*.snk | ||
230 | |||
215 | # Since there are multiple workflows, uncomment next line to ignore bower_components | 231 | # Since there are multiple workflows, uncomment next line to ignore bower_components |
216 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) | 232 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
217 | #bower_components/ | 233 | #bower_components/ |
234 | # ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true | ||
235 | **/wwwroot/lib/ | ||
218 | 236 | ||
219 | # RIA/Silverlight projects | 237 | # RIA/Silverlight projects |
220 | Generated_Code/ | 238 | Generated_Code/ |
@@ -226,6 +244,8 @@ _UpgradeReport_Files/ | |||
226 | Backup*/ | 244 | Backup*/ |
227 | UpgradeLog*.XML | 245 | UpgradeLog*.XML |
228 | UpgradeLog*.htm | 246 | UpgradeLog*.htm |
247 | ServiceFabricBackup/ | ||
248 | *.rptproj.bak | ||
229 | 249 | ||
230 | # SQL Server files | 250 | # SQL Server files |
231 | *.mdf | 251 | *.mdf |
@@ -236,6 +256,7 @@ UpgradeLog*.htm | |||
236 | *.rdl.data | 256 | *.rdl.data |
237 | *.bim.layout | 257 | *.bim.layout |
238 | *.bim_*.settings | 258 | *.bim_*.settings |
259 | *.rptproj.rsuser | ||
239 | 260 | ||
240 | # Microsoft Fakes | 261 | # Microsoft Fakes |
241 | FakesAssemblies/ | 262 | FakesAssemblies/ |
@@ -247,9 +268,6 @@ FakesAssemblies/ | |||
247 | .ntvs_analysis.dat | 268 | .ntvs_analysis.dat |
248 | node_modules/ | 269 | node_modules/ |
249 | 270 | ||
250 | # Typescript v1 declaration files | ||
251 | typings/ | ||
252 | |||
253 | # Visual Studio 6 build log | 271 | # Visual Studio 6 build log |
254 | *.plg | 272 | *.plg |
255 | 273 | ||
@@ -278,8 +296,8 @@ paket-files/ | |||
278 | .idea/ | 296 | .idea/ |
279 | *.sln.iml | 297 | *.sln.iml |
280 | 298 | ||
281 | # CodeRush | 299 | # CodeRush personal settings |
282 | .cr/ | 300 | .cr/personal |
283 | 301 | ||
284 | # Python Tools for Visual Studio (PTVS) | 302 | # Python Tools for Visual Studio (PTVS) |
285 | __pycache__/ | 303 | __pycache__/ |
@@ -302,4 +320,22 @@ __pycache__/ | |||
302 | *.xsd.cs | 320 | *.xsd.cs |
303 | 321 | ||
304 | # OpenCover UI analysis results | 322 | # OpenCover UI analysis results |
305 | OpenCover/ \ No newline at end of file | 323 | OpenCover/ |
324 | |||
325 | # Azure Stream Analytics local run output | ||
326 | ASALocalRun/ | ||
327 | |||
328 | # MSBuild Binary and Structured Log | ||
329 | *.binlog | ||
330 | |||
331 | # NVidia Nsight GPU debugger configuration file | ||
332 | *.nvuser | ||
333 | |||
334 | # MFractors (Xamarin productivity tool) working folder | ||
335 | .mfractor/ | ||
336 | |||
337 | # Local History for Visual Studio | ||
338 | .localhistory/ | ||
339 | |||
340 | # BeatPulse healthcheck temp database | ||
341 | healthchecksdb | ||