Skip to content

Commit d34a7af

Browse files
committed
Update gitignore
Use a more comprehensive gitignore
1 parent a356dcc commit d34a7af

File tree

1 file changed

+53
-11
lines changed

1 file changed

+53
-11
lines changed

.gitignore

+53-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,56 @@
1-
*.suo
2-
*.pdb
3-
[Oo]bj/
4-
[Bb]in/
1+
# General binaries and Build results
52
*.dll
6-
*.pyd
73
*.exe
8-
*.pyc
9-
packages/*
10-
dist
11-
pythonnet.egg-info
12-
*.userprefs
4+
*.pdb
5+
6+
### JetBrains ###
7+
.idea/
8+
9+
### Python ###
10+
# Byte-compiled / optimized / DLL files
11+
__pycache__/
12+
*.py[cod]
13+
14+
# Distribution / packaging
1315
build/
14-
tools/nuget/*.exe
16+
dist/
17+
*.egg-info/
18+
19+
# Unit test / coverage reports
20+
htmlcov/
21+
.tox/
22+
.coverage
23+
.coverage.*
24+
.cache
25+
coverage.xml
26+
27+
### CSharp ###
28+
# User-specific files
29+
*.suo
30+
*.user
31+
*.vcxproj.filters
32+
*.userprefs
33+
*.DotSettings.user
34+
35+
# Build results
36+
[Bb]in/
37+
[Oo]bj/
38+
39+
# Visual Studio cache/options directory
40+
.vs/
41+
42+
# NUNIT
43+
*.VisualState.xml
44+
TestResult.xml
45+
46+
# OpenCover
47+
/results.xml
48+
49+
# NuGet Packages
50+
**/packages/*
51+
52+
# VS Project upgrade log files
53+
_UpgradeReport_Files/
54+
Backup*/
55+
UpgradeLog*.XML
56+
UpgradeLog*.htm

0 commit comments

Comments
 (0)