This commit is contained in:
2024-08-16 17:17:37 -07:00
commit 65480d1c41
119 changed files with 14308 additions and 0 deletions

1
Adaptation/.vscode/format-report.json vendored Normal file
View File

@ -0,0 +1 @@
[]

10
Adaptation/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"configurations": [
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": 32760
}
]
}

5
Adaptation/.vscode/mklink.md vendored Normal file
View File

@ -0,0 +1,5 @@
# mklink
```bash
mklink /J "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08DDUPSFS6420"
```

50
Adaptation/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,50 @@
{
"[markdown]": {
"editor.wordWrap": "off"
},
"cSpell.words": [
"datauniqueid",
"Epuipment",
"EQPT",
"headerid",
"Idrv",
"ipdsf",
"Irng",
"ISMTP",
"JOBID",
"messa",
"messv",
"pdsf",
"pdsfc",
"PPID",
"Rcpe",
"RESIMAPCDE",
"Rsens",
"Smpl",
"Villach",
"Vrng"
],
"coverage-gutters.coverageBaseDir": "../../../../DEP08CEPIEPSILON/05_TestResults/TestResults/**",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#4547ab",
"activityBar.activeBorder": "#dacec5",
"activityBar.background": "#4547ab",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#2d1213",
"activityBarBadge.foreground": "#e7e7e7",
"sash.hoverBorder": "#4547ab",
"statusBar.background": "#363887",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#4547ab",
"statusBarItem.remoteBackground": "#363887",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#363887",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#36388799",
"titleBar.inactiveForeground": "#e7e7e799",
"commandCenter.border": "#e7e7e799"
},
"peacock.color": "#363887",
"cSpell.enabled": false
}

98
Adaptation/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,98 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "Test-Debug",
"command": "dotnet",
"type": "process",
"args": [
"test",
"-c",
"Debug"
],
"problemMatcher": "$msCompile"
},
{
"label": "Test-Release",
"command": "dotnet",
"type": "process",
"args": [
"test",
"-c",
"Release"
],
"problemMatcher": "$msCompile"
},
{
"label": "Format",
"command": "dotnet",
"type": "process",
"args": [
"format",
"--report",
".vscode",
"--verbosity",
"detailed",
"--severity",
"warn"
],
"problemMatcher": "$msCompile"
},
{
"label": "Nuget Clear",
"command": "dotnet",
"type": "process",
"args": [
"nuget",
"locals",
"all",
"--clear"
],
"problemMatcher": "$msCompile"
},
{
"label": "MSBuild for EAF Deployment Packages",
"command": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/MSBuild/Current/Bin/MSBuild.exe",
"type": "process",
"args": [
"/target:Build",
"/restore:True",
"/p:RestoreSources=https://artifactory.intra.infineon.com/artifactory/api/nuget/ngt-fi-package-main-vir/%3Bhttps://packagemanagement.eu.infineon.com:4430/api/v2/%3Bhttps://tfs.intra.infineon.com/tfs/ManufacturingIT/_packaging/eaf/nuget/v3/index.json%3Bhttps://tfs.intra.infineon.com/tfs/FactoryIntegration/_packaging/EAF%40Local/nuget/v3/index.json%3Bhttps://api.nuget.org/v3/index.json",
"/detailedsummary",
"/consoleloggerparameters:PerformanceSummary;ErrorsOnly;",
"/property:Configuration=Debug;TargetFrameworkVersion=v4.8",
"../DEP08CEPIEPSILON.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "Kanbn Console",
"type": "npm",
"script": "kanbn.board",
"problemMatcher": []
},
{
"label": "Kanbn Write Boad",
"type": "shell",
"command": "& kanbn board -j | L:/Git/kanbn2md/kanbn2md.exe >.kanbn/board.md",
"problemMatcher": []
},
{
"label": "Kanbn Write json",
"type": "npm",
"script": "kanbn.board.json",
"problemMatcher": []
}
]
}