diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -90,6 +90,7 @@ StyleCopReport.xml | |||
90 | *.tmp_proj | 90 | *.tmp_proj |
91 | *_wpftmp.csproj | 91 | *_wpftmp.csproj |
92 | *.log | 92 | *.log |
93 | *.tlog | ||
93 | *.vspscc | 94 | *.vspscc |
94 | *.vssscc | 95 | *.vssscc |
95 | .builds | 96 | .builds |
@@ -205,6 +206,9 @@ PublishScripts/ | |||
205 | *.nuget.props | 206 | *.nuget.props |
206 | *.nuget.targets | 207 | *.nuget.targets |
207 | 208 | ||
209 | # Nuget personal access tokens and Credentials | ||
210 | nuget.config | ||
211 | |||
208 | # Microsoft Azure Build Output | 212 | # Microsoft Azure Build Output |
209 | csx/ | 213 | csx/ |
210 | *.build.csdef | 214 | *.build.csdef |
@@ -360,3 +364,25 @@ MigrationBackup/ | |||
360 | 364 | ||
361 | # Fody - auto-generated XML schema | 365 | # Fody - auto-generated XML schema |
362 | FodyWeavers.xsd | 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 | ||