Skip to content

Commit

Permalink
Update .gitignore again
Browse files Browse the repository at this point in the history
  • Loading branch information
tempoz committed Oct 6, 2023
1 parent c8b02e2 commit 2d0f429
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ bld/
[Oo]bj/
[Ll]og/
[Ll]ogs/
*.obj
*.exe
*.pdb
*.ilk

# Visual Studio 2015/2017 cache/options directory
.vs/
Expand Down Expand Up @@ -101,6 +97,7 @@ StyleCopReport.xml
*.pidb
*.svclog
*.scc
*.exe

# Chutzpah Test files
_Chutzpah*
Expand Down Expand Up @@ -375,6 +372,7 @@ FodyWeavers.xsd
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/c_cpp_properties.json
*.code-workspace

# Local History for Visual Studio Code
Expand Down
21 changes: 21 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64"
}
],
"version": 4
}

0 comments on commit 2d0f429

Please sign in to comment.