-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (70 loc) · 1.1 KB
/
.gitignore
File metadata and controls
91 lines (70 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# C/C++ build products
*.o
*.so
*.dylib
*.dll
*.dSYM
*.a
# Executables
*.exe
*_nanbox
*_classic
example_shadow_stack
ms2vm
ms2asm
Program
test_vm
# Claude Code settings
.claude/
# C/C++ Build Products
build/
# Test executables (built to build/tests/)
build/tests/
# Generated (transpiled) files... not entirely sure whether we want
# to push these to github or not, but probably not for now.
miniscript2/generated/
# C# / .NET / Mono Build Products
*.exe
*.dll
*.pdb
*.xml
# Exception: Keep GPPG/GPLEX tools (needed for build)
!tools/gppg/*.dll
!tools/gppg/*.json
# Generated Parser Files (regenerated by build.sh parser)
cs/Parser/
# .NET Project Build Directories
bin/
obj/
out/
# .NET Test Projects
NanBoxTests/
TestProject*/
# Xcode stuff
cpp/xcode
# Visual Studio / Visual Studio Code
.vs/
.vscode/
*.user
*.suo
*.cache
# Mono Compiler Outputs
*.exe.mdb
*.dll.mdb
# Debug Symbols
*.dSYM/
# JetBrains Rider
.idea/
*.sln.iml
# macOS
.DS_Store
# Temporary Files
*.tmp
*.temp
*~
# Log Files
*.log
# Internal Stuff
InternalNotes
# Benchmarks (symbolic link to miniscript-benchmarks/cmdline)
benchmarks