Skip to content

Commit 0b5ee2d

Browse files
author
Codectory
committed
C++ cleanup
1 parent f004166 commit 0b5ee2d

File tree

2 files changed

+270
-485
lines changed

2 files changed

+270
-485
lines changed

.gitignore

Lines changed: 57 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

66
# User-specific files
77
*.rsuser
@@ -17,30 +17,24 @@
1717
mono_crash.*
1818

1919
# Build results
20-
[Dd]ebug/
21-
[Dd]ebugPublic/
22-
[Rr]elease/
23-
[Rr]eleases/
24-
**/x64/
25-
**/x86/
26-
**/Debug_x64/
27-
**/Debug_Any/
28-
**/Debug_x86/
29-
**/Release_x64/
30-
**/Release_Any/
31-
**/Release_x86/
3220
[Dd]ebug_x64/
3321
[Dd]ebug_x86/
3422
[Rr]elease_x64/
3523
[Rr]elease_x86/
24+
[Dd]ebug/
25+
[Dd]ebugPublic/
26+
[Rr]elease/
27+
[Rr]eleases/
28+
x64/
29+
x86/
30+
[Ww][Ii][Nn]32/
3631
[Aa][Rr][Mm]/
3732
[Aa][Rr][Mm]64/
3833
bld/
3934
[Bb]in/
4035
[Oo]bj/
4136
[Ll]og/
4237
[Ll]ogs/
43-
*/[Bb]in/
4438

4539
# Visual Studio 2015/2017 cache/options directory
4640
.vs/
@@ -72,6 +66,9 @@ project.lock.json
7266
project.fragment.lock.json
7367
artifacts/
7468

69+
# ASP.NET Scaffolding
70+
ScaffoldingReadMe.txt
71+
7572
# StyleCop
7673
StyleCopReport.xml
7774

@@ -89,6 +86,8 @@ StyleCopReport.xml
8986
*.pgc
9087
*.pgd
9188
*.rsp
89+
# but not Directory.Build.rsp, as it configures directory-level build defaults
90+
!Directory.Build.rsp
9291
*.sbr
9392
*.tlb
9493
*.tli
@@ -97,6 +96,7 @@ StyleCopReport.xml
9796
*.tmp_proj
9897
*_wpftmp.csproj
9998
*.log
99+
*.tlog
100100
*.vspscc
101101
*.vssscc
102102
.builds
@@ -138,9 +138,6 @@ _ReSharper*/
138138
*.[Rr]e[Ss]harper
139139
*.DotSettings.user
140140

141-
# JustCode is a .NET coding add-in
142-
.JustCode
143-
144141
# TeamCity is a build add-in
145142
_TeamCity*
146143

@@ -151,6 +148,11 @@ _TeamCity*
151148
.axoCover/*
152149
!.axoCover/settings.json
153150

151+
# Coverlet is a free, cross platform Code Coverage Tool
152+
coverage*.json
153+
coverage*.xml
154+
coverage*.info
155+
154156
# Visual Studio code coverage results
155157
*.coverage
156158
*.coveragexml
@@ -298,6 +300,17 @@ node_modules/
298300
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
299301
*.vbw
300302

303+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
304+
*.vbp
305+
306+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
307+
*.dsw
308+
*.dsp
309+
310+
# Visual Studio 6 technical files
311+
*.ncb
312+
*.aps
313+
301314
# Visual Studio LightSwitch build output
302315
**/*.HTMLClient/GeneratedArtifacts
303316
**/*.DesktopClient/GeneratedArtifacts
@@ -354,6 +367,9 @@ ASALocalRun/
354367
# Local History for Visual Studio
355368
.localhistory/
356369

370+
# Visual Studio History (VSHistory) files
371+
.vshistory/
372+
357373
# BeatPulse healthcheck temp database
358374
healthchecksdb
359375

@@ -362,11 +378,27 @@ MigrationBackup/
362378

363379
# Ionide (cross platform F# VS Code tools) working folder
364380
.ionide/
365-
Source/Debug_x64/de/HDRProfile.resources.dll
366-
Source/Debug_x64/HDRProfile.exe
367-
Source/HDRController/Release_x64/HDRController.dll
368-
Source/HDRController/Release_x64/HDRController.lib
369-
Source/Debug_x64/HDRProfile_Settings.xml
370-
Source/Debug_x64/HDRProfile.exe
371-
Source/Release_x64/de/HDRProfile.resources.dll
372-
Source/Release_x64/HDRProfile_Settings.xml
381+
382+
# Fody - auto-generated XML schema
383+
FodyWeavers.xsd
384+
385+
# VS Code files for those working on multiple tools
386+
.vscode/*
387+
!.vscode/settings.json
388+
!.vscode/tasks.json
389+
!.vscode/launch.json
390+
!.vscode/extensions.json
391+
*.code-workspace
392+
393+
# Local History for Visual Studio Code
394+
.history/
395+
396+
# Windows Installer files from build outputs
397+
*.cab
398+
*.msi
399+
*.msix
400+
*.msm
401+
*.msp
402+
403+
# JetBrains Rider
404+
*.sln.iml

0 commit comments

Comments
 (0)