Skip to content

Commit 384d26b

Browse files
committed
Update .gitignore
1 parent 70685be commit 384d26b

File tree

1 file changed

+5
-226
lines changed

1 file changed

+5
-226
lines changed

.gitignore

+5-226
Original file line numberDiff line numberDiff line change
@@ -1,226 +1,5 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
4-
# User-specific files
5-
*.suo
6-
*.user
7-
*.userosscache
8-
*.sln.docstates
9-
10-
# User-specific files (MonoDevelop/Xamarin Studio)
11-
*.userprefs
12-
13-
# Build results
14-
[Dd]ebug/
15-
[Dd]ebugPublic/
16-
[Rr]elease/
17-
[Rr]eleases/
18-
x64/
19-
x86/
20-
build/
21-
bld/
22-
[Bb]in/
23-
[Oo]bj/
24-
25-
# Visual Studo 2015 cache/options directory
26-
.vs/
27-
28-
# VSCode configuration directory
29-
.vscode/
30-
31-
# MSTest test Results
32-
[Tt]est[Rr]esult*/
33-
[Bb]uild[Ll]og.*
34-
35-
# NUNIT
36-
*.VisualState.xml
37-
TestResult.xml
38-
39-
# Build Results of an ATL Project
40-
[Dd]ebugPS/
41-
[Rr]eleasePS/
42-
dlldata.c
43-
44-
# .Net Core CLI
45-
project.lock.json
46-
artifacts/
47-
48-
*_i.c
49-
*_p.c
50-
*_i.h
51-
*.ilk
52-
*.meta
53-
*.obj
54-
*.pch
55-
*.pdb
56-
*.pgc
57-
*.pgd
58-
*.rsp
59-
*.sbr
60-
*.tlb
61-
*.tli
62-
*.tlh
63-
*.tmp
64-
*.tmp_proj
65-
*.log
66-
*.vspscc
67-
*.vssscc
68-
.builds
69-
*.pidb
70-
*.svclog
71-
*.scc
72-
73-
# Chutzpah Test files
74-
_Chutzpah*
75-
76-
# Visual C++ cache files
77-
ipch/
78-
*.aps
79-
*.ncb
80-
*.opensdf
81-
*.sdf
82-
*.cachefile
83-
84-
# Visual Studio profiler
85-
*.psess
86-
*.vsp
87-
*.vspx
88-
89-
# TFS 2012 Local Workspace
90-
$tf/
91-
92-
# Guidance Automation Toolkit
93-
*.gpState
94-
95-
# ReSharper is a .NET coding add-in
96-
_ReSharper*/
97-
*.[Rr]e[Ss]harper
98-
*.DotSettings.user
99-
100-
# JustCode is a .NET coding addin-in
101-
.JustCode
102-
103-
# TeamCity is a build add-in
104-
_TeamCity*
105-
106-
# DotCover is a Code Coverage Tool
107-
*.dotCover
108-
109-
# NCrunch
110-
_NCrunch_*
111-
.*crunch*.local.xml
112-
113-
# MightyMoose
114-
*.mm.*
115-
AutoTest.Net/
116-
117-
# Web workbench (sass)
118-
.sass-cache/
119-
120-
# Installshield output folder
121-
[Ee]xpress/
122-
123-
# DocProject is a documentation generator add-in
124-
DocProject/buildhelp/
125-
DocProject/Help/*.HxT
126-
DocProject/Help/*.HxC
127-
DocProject/Help/*.hhc
128-
DocProject/Help/*.hhk
129-
DocProject/Help/*.hhp
130-
DocProject/Help/Html2
131-
DocProject/Help/html
132-
133-
# Click-Once directory
134-
publish/
135-
136-
# Publish Web Output
137-
*.[Pp]ublish.xml
138-
*.azurePubxml
139-
# TODO: Comment the next line if you want to checkin your web deploy settings
140-
# but database connection strings (with potential passwords) will be unencrypted
141-
*.pubxml
142-
*.publishproj
143-
144-
# NuGet Packages
145-
*.nupkg
146-
# The packages folder can be ignored because of Package Restore
147-
**/packages/*
148-
# except build/, which is used as an MSBuild target.
149-
!**/packages/build/
150-
# Uncomment if necessary however generally it will be regenerated when needed
151-
#!**/packages/repositories.config
152-
153-
# Windows Azure Build Output
154-
csx/
155-
*.build.csdef
156-
157-
# Windows Store app package directory
158-
AppPackages/
159-
160-
# Visual Studio cache files
161-
# files ending in .cache can be ignored
162-
*.[Cc]ache
163-
# but keep track of directories ending in .cache
164-
!*.[Cc]ache/
165-
166-
# Others
167-
ClientBin/
168-
[Ss]tyle[Cc]op.*
169-
~$*
170-
*~
171-
*.dbmdl
172-
*.dbproj.schemaview
173-
*.pfx
174-
*.publishsettings
175-
node_modules/
176-
bower_components/
177-
178-
# RIA/Silverlight projects
179-
Generated_Code/
180-
181-
# Backup & report files from converting an old project file
182-
# to a newer Visual Studio version. Backup files are not needed,
183-
# because we have git ;-)
184-
_UpgradeReport_Files/
185-
Backup*/
186-
UpgradeLog*.XML
187-
UpgradeLog*.htm
188-
189-
# SQL Server files
190-
*.mdf
191-
*.ldf
192-
193-
# Business Intelligence projects
194-
*.rdl.data
195-
*.bim.layout
196-
*.bim_*.settings
197-
198-
# Microsoft Fakes
199-
FakesAssemblies/
200-
201-
# Node.js Tools for Visual Studio
202-
.ntvs_analysis.dat
203-
204-
# Visual Studio 6 build log
205-
*.plg
206-
207-
# Visual Studio 6 workspace options file
208-
*.opt
209-
210-
##Our project binplace location
211-
PSScriptAnalyzer/
212-
213-
# Vim swap files
214-
*.swp
215-
216-
# Test result file
217-
TestResults.xml
218-
219-
# PSCompatibilityCollector module
220-
PSCompatibilityCollector/out/
221-
222-
# Folder of build module
223-
out
224-
225-
# Explicitely Include test dir
226-
!/Tests/**
1+
bin/
2+
obj/
3+
/module/
4+
/out/
5+
testResults.xml

0 commit comments

Comments
 (0)