Skip to content

Commit 3d9cbf3

Browse files
authored
Merge pull request #156 from Dn-Programming-Core-Management/fix-nsf-driver
Update NSF Driver and NSF-related things
2 parents ea64235 + f1dbf3a commit 3d9cbf3

File tree

138 files changed

+29179
-18908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+29179
-18908
lines changed

.gitignore

+76-87
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
/cmake_user_begin.cmake
33
/cmake_user_end.cmake
44

5-
# Driver build process
6-
/Source/drivers/asm/build/log.txt
7-
85
# Editors
96
*.sublime-*
107
/enc_temp_folder
@@ -15,13 +12,6 @@ doxygen/
1512
# https://marketplace.visualstudio.com/items?itemName=YaobinOuyang.CodeAtlas
1613
CodeGraphData
1714

18-
19-
20-
21-
22-
23-
24-
2515
# HertzDevil
2616
*.bin
2717
*.lnk
@@ -45,41 +35,44 @@ libft0cc/build
4535
libft0cc/build_ms
4636
Testing/Temporary
4737

38+
distribute/*
39+
4840
# this should be automatically generated at build
4941
hlp/HTMLDefines.h
5042

51-
52-
53-
54-
55-
5643
## Ignore Visual Studio temporary files, build results, and
5744
## files generated by popular Visual Studio add-ons.
5845
##
59-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
46+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
6047

6148
# User-specific files
49+
*.rsuser
6250
*.suo
6351
*.user
6452
*.userosscache
6553
*.sln.docstates
6654

67-
CMakeSettings.json
68-
6955
# User-specific files (MonoDevelop/Xamarin Studio)
7056
*.userprefs
7157

58+
# Mono auto generated files
59+
mono_crash.*
60+
7261
# Build results
7362
[Dd]ebug/
7463
[Dd]ebugPublic/
7564
[Rr]elease/
7665
[Rr]eleases/
7766
x64/
7867
x86/
68+
[Ww][Ii][Nn]32/
69+
[Aa][Rr][Mm]/
70+
[Aa][Rr][Mm]64/
7971
bld/
8072
[Bb]in/
8173
[Oo]bj/
8274
[Ll]og/
75+
[Ll]ogs/
8376

8477
# Visual Studio 2015/2017 cache/options directory
8578
.vs/
@@ -93,9 +86,10 @@ Generated\ Files/
9386
[Tt]est[Rr]esult*/
9487
[Bb]uild[Ll]og.*
9588

96-
# NUNIT
89+
# NUnit
9790
*.VisualState.xml
9891
TestResult.xml
92+
nunit-*.xml
9993

10094
# Build Results of an ATL Project
10195
[Dd]ebugPS/
@@ -110,13 +104,16 @@ project.lock.json
110104
project.fragment.lock.json
111105
artifacts/
112106

107+
# ASP.NET Scaffolding
108+
ScaffoldingReadMe.txt
109+
113110
# StyleCop
114111
StyleCopReport.xml
115112

116113
# Files built by Visual Studio
117114
*_i.c
118115
*_p.c
119-
*_i.h
116+
*_h.h
120117
*.ilk
121118
*.meta
122119
*.obj
@@ -133,7 +130,9 @@ StyleCopReport.xml
133130
*.tlh
134131
*.tmp
135132
*.tmp_proj
133+
*_wpftmp.csproj
136134
*.log
135+
*.tlog
137136
*.vspscc
138137
*.vssscc
139138
.builds
@@ -175,9 +174,6 @@ _ReSharper*/
175174
*.[Rr]e[Ss]harper
176175
*.DotSettings.user
177176

178-
# JustCode is a .NET coding add-in
179-
.JustCode
180-
181177
# TeamCity is a build add-in
182178
_TeamCity*
183179

@@ -188,6 +184,11 @@ _TeamCity*
188184
.axoCover/*
189185
!.axoCover/settings.json
190186

187+
# Coverlet is a free, cross platform Code Coverage Tool
188+
coverage*.json
189+
coverage*.xml
190+
coverage*.info
191+
191192
# Visual Studio code coverage results
192193
*.coverage
193194
*.coveragexml
@@ -235,6 +236,8 @@ PublishScripts/
235236

236237
# NuGet Packages
237238
*.nupkg
239+
# NuGet Symbol Packages
240+
*.snupkg
238241
# The packages folder can be ignored because of Package Restore
239242
**/[Pp]ackages/*
240243
# except build/, which is used as an MSBuild target.
@@ -259,12 +262,14 @@ BundleArtifacts/
259262
Package.StoreAssociation.xml
260263
_pkginfo.txt
261264
*.appx
265+
*.appxbundle
266+
*.appxupload
262267

263268
# Visual Studio cache files
264269
# files ending in .cache can be ignored
265270
*.[Cc]ache
266271
# but keep track of directories ending in .cache
267-
!*.[Cc]ache/
272+
!?*.[Cc]ache/
268273

269274
# Others
270275
ClientBin/
@@ -308,6 +313,9 @@ ServiceFabricBackup/
308313
*.bim.layout
309314
*.bim_*.settings
310315
*.rptproj.rsuser
316+
*- [Bb]ackup.rdl
317+
*- [Bb]ackup ([0-9]).rdl
318+
*- [Bb]ackup ([0-9][0-9]).rdl
311319

312320
# Microsoft Fakes
313321
FakesAssemblies/
@@ -328,6 +336,17 @@ node_modules/
328336
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
329337
*.vbw
330338

339+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
340+
*.vbp
341+
342+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
343+
*.dsw
344+
*.dsp
345+
346+
# Visual Studio 6 technical files
347+
*.ncb
348+
*.aps
349+
331350
# Visual Studio LightSwitch build output
332351
**/*.HTMLClient/GeneratedArtifacts
333352
**/*.DesktopClient/GeneratedArtifacts
@@ -343,12 +362,8 @@ paket-files/
343362
# FAKE - F# Make
344363
.fake/
345364

346-
# JetBrains Rider
347-
.idea/
348-
*.sln.iml
349-
350-
# CodeRush
351-
.cr/
365+
# CodeRush personal settings
366+
.cr/personal
352367

353368
# Python Tools for Visual Studio (PTVS)
354369
__pycache__/
@@ -385,67 +400,41 @@ ASALocalRun/
385400
# MFractors (Xamarin productivity tool) working folder
386401
.mfractor/
387402

403+
# Local History for Visual Studio
404+
.localhistory/
388405

406+
# Visual Studio History (VSHistory) files
407+
.vshistory/
389408

409+
# BeatPulse healthcheck temp database
410+
healthchecksdb
390411

412+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
413+
MigrationBackup/
391414

415+
# Ionide (cross platform F# VS Code tools) working folder
416+
.ionide/
392417

418+
# Fody - auto-generated XML schema
419+
FodyWeavers.xsd
393420

421+
# VS Code files for those working on multiple tools
422+
.vscode/*
423+
!.vscode/settings.json
424+
!.vscode/tasks.json
425+
!.vscode/launch.json
426+
!.vscode/extensions.json
427+
*.code-workspace
428+
429+
# Local History for Visual Studio Code
430+
.history/
431+
432+
# Windows Installer files from build outputs
433+
*.cab
434+
*.msi
435+
*.msix
436+
*.msm
437+
*.msp
394438

395-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
396-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
397-
398-
# User-specific stuff
399-
.idea/**/workspace.xml
400-
.idea/**/tasks.xml
401-
.idea/**/dictionaries
402-
.idea/**/shelf
403-
404-
# Sensitive or high-churn files
405-
.idea/**/dataSources/
406-
.idea/**/dataSources.ids
407-
.idea/**/dataSources.local.xml
408-
.idea/**/sqlDataSources.xml
409-
.idea/**/dynamic.xml
410-
.idea/**/uiDesigner.xml
411-
.idea/**/dbnavigator.xml
412-
413-
# Gradle
414-
.idea/**/gradle.xml
415-
.idea/**/libraries
416-
417-
# CMake
418-
cmake-build-*/
419-
420-
# Mongo Explorer plugin
421-
.idea/**/mongoSettings.xml
422-
423-
# File-based project format
424-
*.iws
425-
426-
# IntelliJ
427-
out/
428-
429-
# mpeltonen/sbt-idea plugin
430-
.idea_modules/
431-
432-
# JIRA plugin
433-
atlassian-ide-plugin.xml
434-
435-
# Cursive Clojure plugin
436-
.idea/replstate.xml
437-
438-
# Crashlytics plugin (for Android Studio and IntelliJ)
439-
com_crashlytics_export_strings.xml
440-
crashlytics.properties
441-
crashlytics-build.properties
442-
fabric.properties
443-
444-
# Editor-based Rest Client
445-
.idea/httpRequests
446-
447-
# VSCode CMake
448-
/build/*
449-
450-
# VSCode clangd
451-
/.cache/*
439+
# JetBrains Rider
440+
*.sln.iml

0 commit comments

Comments
 (0)