forked from nanoframework/nf-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
54 lines (43 loc) · 1.25 KB
/
.gitignore
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
# ignore all ZIP files
*.zip
# ignore build folder
/build/
# ignore cmake-variants file (will change frequently per user/board setup, use should derive content from cmake-variants.TEMPLATE.json)
cmake-variants.json
# ignore any content inside the Interop assemblies folder
InteropAssemblies/*
# Visual Studio Code
# ignore C/C++ launch file (will change frequently per user/board setup, use should derive content from launch.TEMPLATE.json)
.vscode/launch.json
.vscode/.cmaketools.json
.vscode/settings.json
.vscode/tasks.json
.vscode/extensions.json
.vscode/c_cpp_properties.json
.vscode/cmake-kits.json
# ignore CMake modules for Interop assemblies
CMake/Modules/FindINTEROP*.cmake
# Visual Studio
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.suo
*.user
# Build results
[Dd]ebug/
[Rr]elease/
[Rr]eleases/
[Bb]in/
[Oo]bj/
# Visual Studio 2015 cache/options directory
.vs/
# Visual C++ cache files
*.VC.db
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/