MET08ANLYSDIFAAST230 - v4.43.0 - Use EDA multiple

This commit is contained in:
2022-05-16 15:34:24 -07:00
parent 9c042d3871
commit 2685dd79d5
178 changed files with 13498 additions and 11875 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": 14072
}
]
}

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

@ -0,0 +1,45 @@
{
"cSpell.words": [
"ANLYSDIFAAST",
"datauniqueid",
"Epuipment",
"EQPT",
"headerid",
"Idrv",
"ipdsf",
"Irng",
"ISMTP",
"JOBID",
"messa",
"messv",
"pdsf",
"pdsfc",
"PPID",
"Rcpe",
"RESIMAPCDE",
"Rsens",
"Smpl",
"Villach",
"Vrng"
],
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#0fc5f0",
"activityBar.activeBorder": "#d20dac",
"activityBar.background": "#0fc5f0",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#d20dac",
"activityBarBadge.foreground": "#e7e7e7",
"sash.hoverBorder": "#0fc5f0",
"statusBar.background": "#0c9ec0",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#0fc5f0",
"statusBarItem.remoteBackground": "#0c9ec0",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#0c9ec0",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#0c9ec099",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#0c9ec0"
}

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

@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/MET08ANLYSDIFAAST230.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/MET08ANLYSDIFAAST230.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/MET08ANLYSDIFAAST230.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}