-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
51 lines (44 loc) · 1.95 KB
/
.gitignore
File metadata and controls
51 lines (44 loc) · 1.95 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
# ─── Rust ─────────────────────────────────────────────────────────────────────
rust-core/target/
# ─── C++ / CMake build outputs ────────────────────────────────────────────────
build/
!winrt-component/build/
*.o
*.obj
*.a
*.lib
*.exp
*.pdb
*.ilk
*.dll
!rust-core/include/
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
CTestTestfile.cmake
# ─── C# / .NET ────────────────────────────────────────────────────────────────
**/bin/
**/obj/
*.user
*.suo
.vs/
# ─── Editor / OS ──────────────────────────────────────────────────────────────
.vscode/settings.json
.vscode/launch.json
.vscode/*.log
Thumbs.db
.DS_Store
desktop.ini
# ─── Test results ─────────────────────────────────────────────────────────────
TestResults/
*.trx
# ─── WinRT build output ───────────────────────────────────────────────────────
build-winrt/
build-winrt-arm64/
# ─── C++ ARM64 cross-compile output ──────────────────────────────────────────
build-arm64/
# ─── Local dist / NuGet test output ──────────────────────────────────────────
dist/
dist-preview/
*.nupkg
*.coverage