Infineon.EAF.Runtime 2.49.3

Directory Trigger for OI
Viewer support
tasks.json
kanbn initialize
WSRequest alignment
This commit is contained in:
2023-08-30 17:34:07 -07:00
parent 047e457905
commit 04039ec664
13 changed files with 202 additions and 27 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": 23636
}
]
}

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

@ -0,0 +1,49 @@
{
"[markdown]": {
"editor.wordWrap": "off"
},
"cSpell.words": [
"Argb",
"CICN",
"Consolas",
"datauniqueid",
"EQPT",
"headerid",
"Hmmssffff",
"ipdsf",
"ISMTP",
"messa",
"ntities",
"PDSF",
"Phares",
"RAWDATA",
"RESISRP",
"SRP2100",
"srpx",
"Tahoma",
"THFTIRQS",
"uctor"
],
"coverage-gutters.coverageBaseDir": "../../../../MET08THFTIRQS408M/05_TestResults/TestResults/**",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#158369",
"activityBar.activeBorder": "#51b0ce",
"activityBar.background": "#158369",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#d891ed",
"activityBarBadge.foreground": "#15202b",
"sash.hoverBorder": "#158369",
"statusBar.background": "#0e5746",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#158369",
"statusBarItem.remoteBackground": "#0e5746",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#0e5746",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#0e574699",
"titleBar.inactiveForeground": "#e7e7e799",
"commandCenter.border": "#e7e7e799"
},
"peacock.color": "#0e5746"
}

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

@ -0,0 +1,82 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"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://api.nuget.org/v3/index.json%3Bhttps://packagemanagement.eu.infineon.com:4430/api/v2/%3Bhttps://tfs.intra.infineon.com/tfs/ManufacturingIT/_packaging/eaf/nuget/v3/index.json%3Bhttps://localhost/v3/index.json",
"/detailedsummary",
"/consoleloggerparameters:PerformanceSummary;ErrorsOnly;",
"/property:Configuration=Debug;TargetFrameworkVersion=v4.8",
"../MET08RESISRP2100.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "File-Folder-Helper AOT s M .Kanbn Tasks",
"type": "shell",
"command": "& L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net7.0/win-x64/publish/File-Folder-Helper.exe s M T:/MET08RESISRP2100/06_SourceCode/MET08RESISRP2100/Adaptation -s T:/MET08RESISRP2100/06_SourceCode/MET08RESISRP2100/Adaptation/.kanbn/tasks",
"problemMatcher": []
},
{
"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": []
}
]
}