Skip to content

Commit 3e6d0dc

Browse files
authored
Merge pull request #19 from rticommunity/feat/connext-7-7-0-migration
Feat/Connext 7.7.0 migration
2 parents b09c4f5 + c26d794 commit 3e6d0dc

155 files changed

Lines changed: 11697 additions & 11267 deletions

File tree

Some content is hidden

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

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,4 @@ Language: Cpp
141141
---
142142
Language: Java
143143
---
144-
Language: CSharp
144+
Language: CSharp

.dockerignore

Lines changed: 45 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,56 @@
1+
# ---------------------------------------------------------------------------
12
# Build artifacts and caches
2-
build/
3+
# ---------------------------------------------------------------------------
4+
**/build/
5+
**/__pycache__/
6+
.pytest_cache/
7+
.ruff_cache/
8+
.rumdl_cache/
9+
**/*.pyc
10+
11+
# ---------------------------------------------------------------------------
12+
# Virtual environments
13+
# ---------------------------------------------------------------------------
314
.venv*/
4-
__pycache__/
5-
*.pyc
615

7-
# IDE
16+
# ---------------------------------------------------------------------------
17+
# IDE and OS metadata
18+
# ---------------------------------------------------------------------------
819
.vscode/
920
.idea/
21+
.DS_Store
22+
Thumbs.db
1023

11-
# Git
24+
# ---------------------------------------------------------------------------
25+
# Docker context exclusions (VCS and CI metadata)
26+
# ---------------------------------------------------------------------------
1227
.git/
1328
.github/
1429

15-
# Security artifacts (generated at build time)
16-
*.pem
17-
*.p7s
18-
*.csr
19-
*.srl
20-
*.psk
30+
# ---------------------------------------------------------------------------
31+
# Generated source artifacts
32+
# ---------------------------------------------------------------------------
33+
**/Types.py
34+
**/builtin_logging_type.py
35+
**/ThreatTypes.py
36+
**/*_timestamp.cmake
2137

22-
# Recordings
23-
or_recording/
38+
# ---------------------------------------------------------------------------
39+
# Security and runtime artifacts
40+
# ---------------------------------------------------------------------------
41+
rti_license.dat
42+
**/*.pem
43+
**/*.p7s
44+
**/*.csr
45+
**/*.srl
46+
**/*.psk
2447

25-
# OS files
26-
.DS_Store
27-
Thumbs.db
48+
# ---------------------------------------------------------------------------
49+
# Application runtime output
50+
# ---------------------------------------------------------------------------
51+
**/or_recording/
52+
53+
# ---------------------------------------------------------------------------
54+
# Misc temporary files
55+
# ---------------------------------------------------------------------------
56+
**/*.glade~

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Normalize text files to LF in the repository across platforms.
2+
* text=auto eol=lf
3+
4+
# Keep Windows-native script extensions with CRLF where needed.
5+
*.bat text eol=crlf
6+
*.cmd text eol=crlf
7+
*.ps1 text eol=crlf

0 commit comments

Comments
 (0)