Skip to content

Commit 98b330c

Browse files
OCPI: Update imports, update docker file build
1 parent d790170 commit 98b330c

File tree

12 files changed

+16470
-9356
lines changed

12 files changed

+16470
-9356
lines changed

Import/OCM.Import.Common/Providers/BaseImportProvider.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,10 @@ public string GetProviderName()
186186

187187
public void Log(string message)
188188
{
189+
#if DEBUG
189190
this.ProcessingLog += "\r\n[" + ProviderName + "]: " + message;
190-
191191
System.Diagnostics.Debug.WriteLine(message);
192+
#endif
192193
}
193194

194195
public string ConvertUppercaseToTitleCase(string val)
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# .dockerignore for OCM.Import.Worker
2+
3+
# Git
4+
.git
5+
.gitignore
6+
.gitattributes
7+
8+
# Build artifacts
9+
**/bin/
10+
**/obj/
11+
**/out/
12+
**/publish/
13+
**/build/
14+
15+
# Visual Studio
16+
.vs/
17+
*.suo
18+
*.user
19+
*.userosscache
20+
*.sln.docstates
21+
*.userprefs
22+
23+
# Visual Studio Code
24+
.vscode/
25+
*.code-workspace
26+
27+
# Test results
28+
TestResults/
29+
*.trx
30+
*.coverage
31+
32+
# NuGet
33+
*.nupkg
34+
*.snupkg
35+
packages/
36+
!**/packages/build/
37+
*.lock.json
38+
39+
# MSTest
40+
*.testlog
41+
*.VisualState.xml
42+
43+
# NCrunch
44+
_NCrunch_*
45+
.*crunch*.local.xml
46+
nCrunchTemp_*
47+
48+
# Rider
49+
.idea/
50+
*.sln.iml
51+
52+
# User-specific files
53+
*.rsuser
54+
*.bak
55+
*.cache
56+
*.log
57+
*.tmp
58+
59+
# OS files
60+
.DS_Store
61+
Thumbs.db
62+
Desktop.ini
63+
64+
# Node modules (if any)
65+
node_modules/
66+
npm-debug.log*
67+
68+
# Sensitive files
69+
appsettings.Development.json
70+
appsettings.Local.json
71+
*.pfx
72+
*.key
73+
secrets.json
74+
75+
# Docker
76+
docker-compose*.yml
77+
Dockerfile*
78+
.dockerignore
79+
80+
# Documentation
81+
*.md
82+
LICENSE
83+
docs/
84+
documentation/
85+
86+
# CI/CD
87+
.github/
88+
.azuredevops/
89+
azure-pipelines*.yml
90+
.gitlab-ci.yml
91+
92+
# Temporary files
93+
*.tmp
94+
*.temp
95+
*~

0 commit comments

Comments
 (0)