rjmurillo/moq.analyzers

View on GitHub
.lutignore

Summary

Maintainability
Test Coverage
## The .lutignore file is used by Live Unit Testing to ignore Visual Studio temporary files, build results,
## and files generated by popular Visual Studio add-ons when creating a private copy of the source tree that
## Live Unit Testing uses for its build.
##
## This file has same format as git's .gitignore file (https://git-scm.com/docs/gitignore). In fact, in the
## case where a .lutignore file is not found, but a .gitignore file is found, Live Unit Testing will use the
## .gitignore file directly for the above purpose.

# User-specific files
*.suo
*.user
*.userprefs
*.sln.docstates
.vs/
.vscode/
.packages/
.dotnet/
.tools/
.idea/

# Build results
[Dd]ebug/
[Rr]elease/
[Bb]inaries/
[Bb]in/
[Oo]bj/
x64/
TestResults/

# Debug artifactss
launchSettings.json

# Click-Once directory
publish/

# Publish Web Output
*.Publish.xml

# NuGet Packages Directory
packages/

# NuGet V3 artifacts
[Nn]u[Gg]et.exe
*-packages.config
*.nuget.props
*.nuget.targets
project.lock.json
msbuild.binlog
*.project.lock.json

# Miscellaneous
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.wrn
*.vspscc
*.vssscc
.builds
*.pidb
*.scc
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# Visual Studio cache files
*.sln.ide/

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
*.VC.opendb
*.VC.db

# Windows Store app package directory
AppPackages/

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Upgrade backups
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

#LightSwitch generated files
GeneratedArtifacts/
_Pvt_Extensions/
ModelManifest.xml

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac desktop service store files
.DS_Store

# WPF temp projects
*wpftmp.*