Forge
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/
27x64/
28TestResults/
29
30# Debug artifactss
31launchSettings.json
32
33# Click-Once directory
34publish/
35
36# Publish Web Output
37*.Publish.xml
38
39# NuGet Packages Directory
40packages/
41
42# NuGet V3 artifacts
43[Nn]u[Gg]et.exe
44*-packages.config
45*.nuget.props
46*.nuget.targets
47project.lock.json
48msbuild.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
74sql/
75*.Cache
76ClientBin/
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
89ipch/
90*.aps
91*.ncb
92*.opensdf
93*.sdf
94*.cachefile
95*.VC.opendb
96*.VC.db
97
98# Windows Store app package directory
99AppPackages/
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/
126Backup*/
127UpgradeLog*.XML
128UpgradeLog*.htm
129
130# SQL Server files
131App_Data/*.mdf
132App_Data/*.ldf
133
134#LightSwitch generated files
135GeneratedArtifacts/
136_Pvt_Extensions/
137ModelManifest.xml
138
139# Windows image file caches
140Thumbs.db
141ehthumbs.db
142
143# Folder config file
144Desktop.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
View only · write via MCP/CIDE