Removed mklink for git

This commit is contained in:
2024-11-06 12:39:13 -07:00
parent a6071a4073
commit 11bb8c848c
263 changed files with 19951 additions and 1508 deletions

View File

@ -0,0 +1,813 @@
---
created: 2024-08-20T16:01:21.855Z
type: note
updated: 2024-08-20T16:24:13.558Z
---
# EAF Management Server v3.2.1 Leo Prod
## mklink
```bash Tue Aug 20 2024 09:00:03 GMT-0700 (Mountain Standard Time)
rmdir "D:\EAF\EAF Management Server\Bin"
rmdir "D:\EAF\EAF Management Server\Build"
rmdir "D:\EAF\EAF Management Server\Configuration"
rmdir "D:\EAF\EAF Management Server\Documentation"
rmdir "D:\EAF\EAF Management Server\Health"
rmdir "D:\EAF\EAF Management Server\Logs"
rmdir "D:\EAF\EAF Management Server\StartedInstances"
rmdir "D:\EAF\EAF Management Server\Temp"
rmdir "D:\EAF\EAF Management Agent\Bin"
rmdir "D:\EAF\EAF Management Agent\Configuration"
rmdir "D:\EAF\EAF Management Agent\Logs"
mklink /J "D:\EAF\EAF Management Server\Bin" "D:\EAF\EAF Management Server\v3.2.1\Bin"
mklink /J "D:\EAF\EAF Management Server\Build" "D:\EAF\EAF Management Server\v3.2.1\Build"
mklink /J "D:\EAF\EAF Management Server\Configuration" "D:\EAF\EAF Management Server\v3.2.1\Configuration"
mklink /J "D:\EAF\EAF Management Server\Documentation" "D:\EAF\EAF Management Server\v3.2.1\Documentation"
mklink /J "D:\EAF\EAF Management Server\Health" "D:\EAF\EAF Management Server\v3.2.1\Health"
mklink /J "D:\EAF\EAF Management Server\Logs" "D:\EAF\EAF Management Server\v3.2.1\Logs"
mklink /J "D:\EAF\EAF Management Server\StartedInstances" "D:\EAF\EAF Management Server\v3.2.1\StartedInstances"
mklink /J "D:\EAF\EAF Management Server\Temp" "D:\EAF\EAF Management Server\v3.2.1\Temp"
mklink /J "D:\EAF\EAF Management Agent\Bin" "D:\EAF\EAF Management Agent\v3.2.1\Bin"
mklink /J "D:\EAF\EAF Management Agent\Configuration" "D:\EAF\EAF Management Agent\v3.2.1\Configuration"
mklink /J "D:\EAF\EAF Management Agent\Logs" "D:\EAF\EAF Management Agent\v3.2.1\Logs"
```
## Database
```bash Tue Aug 20 2024 09:00:06 GMT-0700 (Mountain Standard Time)
D:
cd "D:\EAF\EAF Management Server\Bin"
"D:\EAF\EAF Management Server\Bin\EafManagement.DatabaseBuilder.exe" --oracle --libs EafManagement.Implementation.dll;EafManagement.Core.dll;EafManagementExtensions.PackageReflectionCache.dll;EafManagement.RuntimeParameters.dll;EafManagement.Tags.dll;EafManagement.DataTypes.dll;EafManagement.DomainStateCache.dll --connectionString "Data Source=eafprod.leo.infineon.com;User Id=eafleoprod;Password=<Password>;"
```
```log Tue Aug 20 2024 09:00:39 GMT-0700 (Mountain Standard Time)
Loading assembly: EafManagement.Implementation.dll
Loading assembly: EafManagement.Core.dll
Loading assembly: EafManagementExtensions.PackageReflectionCache.dll
Loading assembly: EafManagement.RuntimeParameters.dll
Loading assembly: EafManagement.Tags.dll
Loading assembly: EafManagement.DataTypes.dll
Loading assembly: EafManagement.DomainStateCache.dll
drop table CELLINSTANCE cascade constraints
drop table CELLTYPE cascade constraints
drop table EQUIPMENTDICTIONARY cascade constraints
drop table EQUIPMENTTYPE cascade constraints
drop table RUNTIMEINSTANCESETUP cascade constraints
drop table LOGGINGSETUP cascade constraints
drop table SEQUENCE cascade constraints
drop table SYSTEM_INFO cascade constraints
drop table PERSISTABLE cascade constraints
drop table VERSIONABLE cascade constraints
drop table PACKAGES cascade constraints
drop table PACKAGEUSAGES cascade constraints
drop table HASGROUP cascade constraints
drop table BACKBONEMEMBER cascade constraints
drop table EQUIPMENTINSTANCE cascade constraints
drop table BACKBONEMEMBERCLASS cascade constraints
drop table AGENTSETUP cascade constraints
drop table AUDIT_TRAIL_ENTRY cascade constraints
drop table AUDIT_TRAIL_ACTION cascade constraints
drop table AUDIT_TRAIL_SEVERITY cascade constraints
drop table AUDIT_TRAIL_EXTERNAL_OWNER cascade constraints
drop table TRANSLATIONCATALOG cascade constraints
drop table TRANSLATIONDICTIONARY cascade constraints
drop table OBJECTVIEW cascade constraints
drop table EXECUTIONENVIRONMENT cascade constraints
drop table HASENVIRONMENTSETTING cascade constraints
drop table ENVIRONMENTSETTING cascade constraints
drop table ENVIRONMENTSETTINGCATEGORY cascade constraints
drop table EAF_USER cascade constraints
drop table REFLECTIONCACHE cascade constraints
drop table RUNTIMEPARAMETERS cascade constraints
drop table RUNTIMEPARAMETERGROUPS cascade constraints
drop table RUNTIMEPARAMETERGROUPUSAGES cascade constraints
drop table RUNTIMEPARAMETERCHANGESET cascade constraints
drop table TAGS cascade constraints
drop table TAGUSAGES cascade constraints
drop table DATATYPES cascade constraints
drop table DOMAIN_STATE cascade constraints
drop table NHIBERNATE_UNIQUE_KEY cascade constraints
create table CELLINSTANCE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table CELLTYPE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table EQUIPMENTDICTIONARY (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table EQUIPMENTTYPE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table RUNTIMEINSTANCESETUP (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
CELL_INSTANCE NUMBER(20,0),
RUNTIMEINSTANCE_COMMENT VARCHAR2(255),
RUNTIMESETTINGS BLOB,
STATE NUMBER(10,0),
TARGET_ID NUMBER(20,0),
LOGGINGSETUP_ID NUMBER(20,0),
PILOT_VERSION_ID NUMBER(20,0),
AUTORESTARTPENDING NUMBER(1,0),
PILOT_VERSION_USER VARCHAR2(255),
PILOT_VERSION_TIME VARCHAR2(255),
ASSIGNEDTO_ID NUMBER(20,0),
PRIMARY_ID NUMBER(20,0),
primary key (ID),
unique (NAME)
)
create table LOGGINGSETUP (
ID NUMBER(20,0) not null,
Uuid VARCHAR2(255) not null,
MAJOR NUMBER(10,0),
MINOR NUMBER(10,0),
PATCH NUMBER(10,0),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
NAME VARCHAR2(255),
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table SEQUENCE (
NAME VARCHAR2(255) not null,
NEXT_VALUE NUMBER(20,0) not null,
primary key (NAME)
)
create table SYSTEM_INFO (
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
primary key (UUID)
)
create table PERSISTABLE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
CREATIONDATE TIMESTAMP(7) not null,
ISRETIRED NUMBER(1,0) default 0 not null,
RETIREDATE TIMESTAMP(7),
RETIREDBY VARCHAR2(255),
CREATEDBY_ID NUMBER(20,0),
primary key (ID)
)
create table VERSIONABLE (
ID NUMBER(20,0) not null,
CHANGESET NUMBER(20,0),
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
RELEASEDATE TIMESTAMP(7),
RELEASEDBY_ID NUMBER(20,0),
BASEVERSION NUMBER(20,0),
primary key (ID)
)
create table PACKAGES (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
VERSION VARCHAR2(255) not null,
DESCRIPTION VARCHAR2(255),
primary key (ID)
)
create table PACKAGEUSAGES (
ID NUMBER(20,0) not null,
BACKBONEMEMBER_UUID VARCHAR2(255) not null,
PACKAGE_ID NUMBER(20,0) not null,
primary key (ID),
unique (BACKBONEMEMBER_UUID, PACKAGE_ID)
)
create table HASGROUP (
FROMID NUMBER(20,0) not null,
TOID NUMBER(20,0) not null,
primary key (FROMID, TOID)
)
create table BACKBONEMEMBER (
ID NUMBER(20,0) not null,
HASCLASS_ID NUMBER(20,0),
primary key (ID)
)
create table EQUIPMENTINSTANCE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table BACKBONEMEMBERCLASS (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
CONFIGURATIONSPECIFICATION BLOB,
TYPE VARCHAR2(255),
NAME VARCHAR2(255),
primary key (ID),
unique (MAJOR, MINOR, PATCH, TYPE, NAME)
)
create table AGENTSETUP (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255),
HOST VARCHAR2(255) not null,
AGENT_COMMENT VARCHAR2(2000),
STARTUPBEHAVIOR NUMBER(10,0),
CALLBACK_URL VARCHAR2(255),
primary key (ID),
unique (HOST)
)
create table AUDIT_TRAIL_ENTRY (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
ENTRY_COMMENT VARCHAR2(2000),
CREATIONDATE TIMESTAMP(7) not null,
OWNER_ID NUMBER(20,0) not null,
HASACTION_ID NUMBER(20,0) not null,
HASSEVERITY_ID NUMBER(20,0) not null,
CREATEDBY_ID NUMBER(20,0) not null,
primary key (ID)
)
create table AUDIT_TRAIL_ACTION (
ID NUMBER(20,0) not null,
NAME VARCHAR2(2000),
ACTION_COMMENT VARCHAR2(2000),
primary key (ID),
unique (NAME)
)
create table AUDIT_TRAIL_SEVERITY (
ID NUMBER(20,0) not null,
NAME VARCHAR2(2000),
SEVERITY_COMMENT VARCHAR2(2000),
SEVERITY_LEVEL NUMBER(10,0),
primary key (ID),
unique (NAME)
)
create table AUDIT_TRAIL_EXTERNAL_OWNER (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255),
primary key (ID),
unique (NAME)
)
create table TRANSLATIONCATALOG (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) unique,
CATALOG_COMMENT CLOB,
primary key (ID)
)
create table TRANSLATIONDICTIONARY (
ID NUMBER(20,0) not null,
LANGUAGE VARCHAR2(255),
CONFIGURATION BLOB,
TRANSLATIONCATALOG_ID NUMBER(20,0),
primary key (ID)
)
create table OBJECTVIEW (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (NAME)
)
create table EXECUTIONENVIRONMENT (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
primary key (ID),
unique (NAME)
)
create table HASENVIRONMENTSETTING (
FROMID NUMBER(20,0) not null,
TOID NUMBER(20,0) not null,
primary key (FROMID, TOID)
)
create table ENVIRONMENTSETTING (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
BASEVERSION NUMBER(20,0),
NAME VARCHAR2(255) not null,
VALUE CLOB,
SETTING_COMNMENT VARCHAR2(2000),
HASCATEGORY_ID NUMBER(20,0),
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME),
unique (BASEVERSION, NAME)
)
create table ENVIRONMENTSETTINGCATEGORY (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
SETTING_COMNMENT VARCHAR2(2000),
primary key (ID),
unique (NAME)
)
create table EAF_USER (
ID NUMBER(20,0) not null,
ACCOUNT VARCHAR2(255),
primary key (ID),
unique (ACCOUNT)
)
create table REFLECTIONCACHE (
CACHE_KEY VARCHAR2(2000) not null,
CONTENTS CLOB not null,
primary key (CACHE_KEY)
)
create table RUNTIMEPARAMETERS (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
GROUPUUID VARCHAR2(255),
NAME VARCHAR2(255),
VALUE CLOB,
DATATYPE VARCHAR2(255),
MODIFICATIONTYPE VARCHAR2(255),
CHANGESET_ID NUMBER(20,0),
primary key (ID)
)
create table RUNTIMEPARAMETERGROUPS (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
PARENTUUID VARCHAR2(255),
NAME VARCHAR2(255),
MODIFICATIONTYPE VARCHAR2(255),
CHANGESET_ID NUMBER(20,0),
primary key (ID)
)
create table RUNTIMEPARAMETERGROUPUSAGES (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
USEDGROUPUUID VARCHAR2(255),
USERID VARCHAR2(255),
USERTYPE VARCHAR2(255),
primary key (ID)
)
create table RUNTIMEPARAMETERCHANGESET (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
DESCRIPTION VARCHAR2(2000),
CREATED_BY VARCHAR2(255),
CREATE_TIME TIMESTAMP(7),
primary key (ID)
)
create table TAGS (
ID NUMBER(20,0) not null,
NORMALIZEDNAME VARCHAR2(255),
NAME VARCHAR2(255),
primary key (ID),
unique (NORMALIZEDNAME)
)
create table TAGUSAGES (
ID NUMBER(20,0) not null,
ENTITYTYPE VARCHAR2(255),
ENTITYID VARCHAR2(255),
TagID NUMBER(20,0) not null,
primary key (ID)
)
create table DATATYPES (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
NAME VARCHAR2(255),
BASETYPE VARCHAR2(255),
DESCRIPTION VARCHAR2(255),
TYPECONSTRAINT CLOB,
primary key (ID)
)
create table DOMAIN_STATE (
APPLICATION_ID VARCHAR2(255) not null,
EXPIRE_DATE VARCHAR2(255) not null,
CONTENT BLOB,
primary key (APPLICATION_ID)
)
create index IDX_CELLINSTANCE_NAME on CELLINSTANCE (NAME)
alter table CELLINSTANCE
add constraint FK_D18807EB
foreign key (ID)
references BACKBONEMEMBER
create index IDX_CELLTYPE_NAME on CELLTYPE (NAME)
alter table CELLTYPE
add constraint FK_89E074AC
foreign key (ID)
references BACKBONEMEMBER
create index IDX_EQUIPMENTDICTIONARY_NAME on EQUIPMENTDICTIONARY (NAME)
alter table EQUIPMENTDICTIONARY
add constraint FK_A31C70D5
foreign key (ID)
references BACKBONEMEMBER
create index IDX_EQUIPMENTTYPE_NAME on EQUIPMENTTYPE (NAME)
alter table EQUIPMENTTYPE
add constraint FK_46EECF3A
foreign key (ID)
references BACKBONEMEMBER
create index IDX_CELLINSTANCE on RUNTIMEINSTANCESETUP (CELL_INSTANCE)
create index IDX_ASSIGNED_AGENTSETUP on RUNTIMEINSTANCESETUP (ASSIGNEDTO_ID)
create index IDX_TARGET_CELLINSTANCE on RUNTIMEINSTANCESETUP (TARGET_ID)
create index IDX_TARGET_LOGGINGSETUP on RUNTIMEINSTANCESETUP (LOGGINGSETUP_ID)
create index IDX_PRIMARY_RUNTIMEINSTANCE on RUNTIMEINSTANCESETUP (PRIMARY_ID)
create index IDX_PILOT_CELLINSTANCE on RUNTIMEINSTANCESETUP (PILOT_VERSION_ID)
alter table RUNTIMEINSTANCESETUP
add constraint FK_TARGET_CELLINSTANCE
foreign key (TARGET_ID)
references CELLINSTANCE
alter table RUNTIMEINSTANCESETUP
add constraint FK_TARGET_LOGGINGSETUP
foreign key (LOGGINGSETUP_ID)
references LOGGINGSETUP
alter table RUNTIMEINSTANCESETUP
add constraint FK_83711C90
foreign key (ID)
references PERSISTABLE
alter table RUNTIMEINSTANCESETUP
add constraint FK_CELLINSTANCE
foreign key (CELL_INSTANCE)
references CELLINSTANCE
alter table RUNTIMEINSTANCESETUP
add constraint FK_ASSIGNED_AGENTSETUP
foreign key (ASSIGNEDTO_ID)
references AGENTSETUP
alter table RUNTIMEINSTANCESETUP
add constraint FK_PRIMARY_RUNTIMEINSTANCE
foreign key (PRIMARY_ID)
references RUNTIMEINSTANCESETUP
alter table RUNTIMEINSTANCESETUP
add constraint FK_PILOT_CELLINSTANCE
foreign key (PILOT_VERSION_ID)
references CELLINSTANCE
alter table LOGGINGSETUP
add constraint FK_282A222
foreign key (ID)
references VERSIONABLE
create index IDX_PERSISTABLE_CREATEDBY on PERSISTABLE (CREATEDBY_ID)
create index IDX_PERSISTABLE_UUID on PERSISTABLE (UUID)
create index IDX_PERSISTABLE_CREATIONDATE on PERSISTABLE (CREATIONDATE)
alter table PERSISTABLE
add constraint FK_PERSISTABLE_CREATEDBY
foreign key (CREATEDBY_ID)
references EAF_USER
create index IDX_VERSIONABLE_RELEASEDBY on VERSIONABLE (RELEASEDBY_ID)
create index FK_BASEVERSION on VERSIONABLE (BASEVERSION)
alter table VERSIONABLE
add constraint FK_VERSIONABLE_RELEASEDBY
foreign key (RELEASEDBY_ID)
references EAF_USER
alter table VERSIONABLE
add constraint FK_BASEVERSION
foreign key (BASEVERSION)
references VERSIONABLE
alter table VERSIONABLE
add constraint FK_C3011D92
foreign key (ID)
references PERSISTABLE
alter table PACKAGEUSAGES
add constraint FK_5D49A41C
foreign key (PACKAGE_ID)
references PACKAGES
alter table HASGROUP
add constraint FK_HASGROUPS_T
foreign key (TOID)
references BACKBONEMEMBER
alter table HASGROUP
add constraint FK_HASGROUPS_S
foreign key (FROMID)
references BACKBONEMEMBER
create index IDX_HASCLASS on BACKBONEMEMBER (HASCLASS_ID)
alter table BACKBONEMEMBER
add constraint FK_EC2B69B5
foreign key (ID)
references VERSIONABLE
alter table BACKBONEMEMBER
add constraint FK_HASCLASS
foreign key (HASCLASS_ID)
references BACKBONEMEMBERCLASS
create index IDX_EQUIPMENTINSTANCE_NAME on EQUIPMENTINSTANCE (NAME)
alter table EQUIPMENTINSTANCE
add constraint FK_72BB532A
foreign key (ID)
references BACKBONEMEMBER
alter table BACKBONEMEMBERCLASS
add constraint FK_99DBCED
foreign key (ID)
references VERSIONABLE
alter table AGENTSETUP
add constraint FK_CD620C1F
foreign key (ID)
references PERSISTABLE
create index IDX_AUDITTRAIL_CREATIONDATE on AUDIT_TRAIL_ENTRY (CREATIONDATE)
create index IDX_AUDITTRAIL_OWNER on AUDIT_TRAIL_ENTRY (OWNER_ID)
create index IDX_AUDITTRAIL_ACTION on AUDIT_TRAIL_ENTRY (HASACTION_ID)
create index IDX_AUDITTRAIL_SEVERITY on AUDIT_TRAIL_ENTRY (HASSEVERITY_ID)
create index IDX_AUDITTRAIL_CREATEDBY on AUDIT_TRAIL_ENTRY (CREATEDBY_ID)
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_OWNER
foreign key (OWNER_ID)
references PERSISTABLE
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_ACTION
foreign key (HASACTION_ID)
references AUDIT_TRAIL_ACTION
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_SEVERITY
foreign key (HASSEVERITY_ID)
references AUDIT_TRAIL_SEVERITY
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_CREATEDBY
foreign key (CREATEDBY_ID)
references EAF_USER
alter table AUDIT_TRAIL_EXTERNAL_OWNER
add constraint FK_85BFD8C9
foreign key (ID)
references PERSISTABLE
alter table TRANSLATIONCATALOG
add constraint FK_553F6815
foreign key (ID)
references PERSISTABLE
create index IDX_TRANSLATIONCATALOG on TRANSLATIONDICTIONARY (TRANSLATIONCATALOG_ID)
alter table TRANSLATIONDICTIONARY
add constraint FK_85DC11F4
foreign key (ID)
references VERSIONABLE
alter table TRANSLATIONDICTIONARY
add constraint FK_TRANSLATIONCATALOG
foreign key (TRANSLATIONCATALOG_ID)
references TRANSLATIONCATALOG
alter table OBJECTVIEW
add constraint FK_F4B6B7DA
foreign key (ID)
references PERSISTABLE
alter table EXECUTIONENVIRONMENT
add constraint FK_E3EAB46E
foreign key (ID)
references PERSISTABLE
alter table HASENVIRONMENTSETTING
add constraint FK_HASENVIRONMENTSETTING_T
foreign key (TOID)
references ENVIRONMENTSETTING
alter table HASENVIRONMENTSETTING
add constraint FK_HASENVIRONMENTSETTING_S
foreign key (FROMID)
references EXECUTIONENVIRONMENT
create index IDX_ENVSETTING_BASEVERSION on ENVIRONMENTSETTING (BASEVERSION)
create index IDX_HASCATEGORY on ENVIRONMENTSETTING (HASCATEGORY_ID)
alter table ENVIRONMENTSETTING
add constraint FK_AB58846D
foreign key (ID)
references VERSIONABLE
alter table ENVIRONMENTSETTING
add constraint FK_ENVSETTING_BASEVERSION
foreign key (BASEVERSION)
references VERSIONABLE
alter table ENVIRONMENTSETTING
add constraint FK_HASCATEGORY
foreign key (HASCATEGORY_ID)
references ENVIRONMENTSETTINGCATEGORY
alter table ENVIRONMENTSETTINGCATEGORY
add constraint FK_CA6167CE
foreign key (ID)
references PERSISTABLE
alter table EAF_USER
add constraint FK_66C9DC63
foreign key (ID)
references PERSISTABLE
create index IDX_RP_UUID on RUNTIMEPARAMETERS (UUID)
create index IDX_RP_GROUPUUID on RUNTIMEPARAMETERS (GROUPUUID)
alter table RUNTIMEPARAMETERS
add constraint FK_245A17B5
foreign key (CHANGESET_ID)
references RUNTIMEPARAMETERCHANGESET
create index IDX_RPG_UUID on RUNTIMEPARAMETERGROUPS (UUID)
create index IDX_RPG_PARENTUUID on RUNTIMEPARAMETERGROUPS (PARENTUUID)
alter table RUNTIMEPARAMETERGROUPS
add constraint FK_8A2A11B8
foreign key (CHANGESET_ID)
references RUNTIMEPARAMETERCHANGESET
create index IDX_RPGU_UUID on RUNTIMEPARAMETERGROUPUSAGES (UUID)
create index IDX_RPGU_USEDGROUPUUID on RUNTIMEPARAMETERGROUPUSAGES (USEDGROUPUUID)
create index IDX_RPC_UUID on RUNTIMEPARAMETERCHANGESET (UUID)
alter table TAGUSAGES
add constraint FK_9F455CF9
foreign key (TagID)
references TAGS
create index IDX_DOMAIN_STATE_EXPIRE_DATE on DOMAIN_STATE (EXPIRE_DATE)
create table NHIBERNATE_UNIQUE_KEY (
NEXT_HI NUMBER(20,0)
)
insert into NHIBERNATE_UNIQUE_KEY values ( 1 )
Database deployment completed.
Schema version: 3.2.0
System ID: qiWF2Ua1FkeXyIWbqA_WOg
```
## mklink
```bash Tue Aug 20 2024 09:23:35 GMT-0700 (Mountain Standard Time)
# D:
# mkdir -p "D:\EAF\EAF Compare Configurations"
# cd "D:\EAF\EAF Compare Configurations"
# mkdir -p "D:\EAF\EAF Compare Configurations\.vscode"
# echo {"diffEditor.ignoreTrimWhitespace": true}>.vscode\settings.json
# git config user.name Mike Phares
# git config user.email mike.phares@infineon.com
mkdir -p "D:\EAF\EAF Compare Configurations\EAF Management Agent"
mkdir -p "D:\EAF\EAF Compare Configurations\EAF Management Server"
mklink /J "D:\EAF\EAF Compare Configurations\EAF Management Agent\v3.2.1" "D:\EAF\EAF Management Agent\v3.2.1\Configuration"
mklink /J "D:\EAF\EAF Compare Configurations\EAF Management Server\v3.2.1" "D:\EAF\EAF Management Server\v3.2.1\Configuration"
# git add .
# git commit -m init
# git log -1
code-insiders "D:\EAF\EAF Compare Configurations"
```

View File

@ -0,0 +1,933 @@
---
created: 2024-08-20T15:47:34.502Z
type: note
updated: 2024-08-22T19:01:38.368Z
---
# EAF Management Server v3.2.1 Leo Test
```bash Tue Aug 20 2024 09:00:03 GMT-0700 (Mountain Standard Time)
rmdir "D:\EAF\EAF Management Server\Bin"
rmdir "D:\EAF\EAF Management Server\Build"
rmdir "D:\EAF\EAF Management Server\Configuration"
rmdir "D:\EAF\EAF Management Server\Documentation"
rmdir "D:\EAF\EAF Management Server\Health"
rmdir "D:\EAF\EAF Management Server\Logs"
rmdir "D:\EAF\EAF Management Server\StartedInstances"
rmdir "D:\EAF\EAF Management Server\Temp"
rmdir "D:\EAF\EAF Management Agent\Bin"
rmdir "D:\EAF\EAF Management Agent\Configuration"
rmdir "D:\EAF\EAF Management Agent\Logs"
mklink /J "D:\EAF\EAF Management Server\Bin" "D:\EAF\EAF Management Server\v3.2.1\Bin"
mklink /J "D:\EAF\EAF Management Server\Build" "D:\EAF\EAF Management Server\v3.2.1\Build"
mklink /J "D:\EAF\EAF Management Server\Configuration" "D:\EAF\EAF Management Server\v3.2.1\Configuration"
mklink /J "D:\EAF\EAF Management Server\Documentation" "D:\EAF\EAF Management Server\v3.2.1\Documentation"
mklink /J "D:\EAF\EAF Management Server\Health" "D:\EAF\EAF Management Server\v3.2.1\Health"
mklink /J "D:\EAF\EAF Management Server\Logs" "D:\EAF\EAF Management Server\v3.2.1\Logs"
mklink /J "D:\EAF\EAF Management Server\StartedInstances" "D:\EAF\EAF Management Server\v3.2.1\StartedInstances"
mklink /J "D:\EAF\EAF Management Server\Temp" "D:\EAF\EAF Management Server\v3.2.1\Temp"
mklink /J "D:\EAF\EAF Management Agent\Bin" "D:\EAF\EAF Management Agent\v3.2.1\Bin"
mklink /J "D:\EAF\EAF Management Agent\Configuration" "D:\EAF\EAF Management Agent\v3.2.1\Configuration"
mklink /J "D:\EAF\EAF Management Agent\Logs" "D:\EAF\EAF Management Agent\v3.2.1\Logs"
```
## Database
```bash Tue Aug 20 2024 09:00:06 GMT-0700 (Mountain Standard Time)
D:
cd "D:\EAF\EAF Management Server\Bin"
"D:\EAF\EAF Management Server\Bin\EafManagement.DatabaseBuilder.exe" --oracle --libs EafManagement.Implementation.dll;EafManagement.Core.dll;EafManagementExtensions.PackageReflectionCache.dll;EafManagement.RuntimeParameters.dll;EafManagement.Tags.dll;EafManagement.DataTypes.dll;EafManagement.DomainStateCache.dll --connectionString "Data Source=eaftest.leo.infineon.com;User Id=eafleotest;Password=<Password>;"
```
```log Tue Aug 20 2024 09:00:39 GMT-0700 (Mountain Standard Time)
Loading assembly: EafManagement.Implementation.dll
Loading assembly: EafManagement.Core.dll
Loading assembly: EafManagementExtensions.PackageReflectionCache.dll
Loading assembly: EafManagement.RuntimeParameters.dll
Loading assembly: EafManagement.Tags.dll
Loading assembly: EafManagement.DataTypes.dll
Loading assembly: EafManagement.DomainStateCache.dll
drop table CELLINSTANCE cascade constraints
drop table CELLTYPE cascade constraints
drop table EQUIPMENTDICTIONARY cascade constraints
drop table EQUIPMENTTYPE cascade constraints
drop table RUNTIMEINSTANCESETUP cascade constraints
drop table LOGGINGSETUP cascade constraints
drop table SEQUENCE cascade constraints
drop table SYSTEM_INFO cascade constraints
drop table PERSISTABLE cascade constraints
drop table VERSIONABLE cascade constraints
drop table PACKAGES cascade constraints
drop table PACKAGEUSAGES cascade constraints
drop table HASGROUP cascade constraints
drop table BACKBONEMEMBER cascade constraints
drop table EQUIPMENTINSTANCE cascade constraints
drop table BACKBONEMEMBERCLASS cascade constraints
drop table AGENTSETUP cascade constraints
drop table AUDIT_TRAIL_ENTRY cascade constraints
drop table AUDIT_TRAIL_ACTION cascade constraints
drop table AUDIT_TRAIL_SEVERITY cascade constraints
drop table AUDIT_TRAIL_EXTERNAL_OWNER cascade constraints
drop table TRANSLATIONCATALOG cascade constraints
drop table TRANSLATIONDICTIONARY cascade constraints
drop table OBJECTVIEW cascade constraints
drop table EXECUTIONENVIRONMENT cascade constraints
drop table HASENVIRONMENTSETTING cascade constraints
drop table ENVIRONMENTSETTING cascade constraints
drop table ENVIRONMENTSETTINGCATEGORY cascade constraints
drop table EAF_USER cascade constraints
drop table REFLECTIONCACHE cascade constraints
drop table RUNTIMEPARAMETERS cascade constraints
drop table RUNTIMEPARAMETERGROUPS cascade constraints
drop table RUNTIMEPARAMETERGROUPUSAGES cascade constraints
drop table RUNTIMEPARAMETERCHANGESET cascade constraints
drop table TAGS cascade constraints
drop table TAGUSAGES cascade constraints
drop table DATATYPES cascade constraints
drop table DOMAIN_STATE cascade constraints
drop table NHIBERNATE_UNIQUE_KEY cascade constraints
create table CELLINSTANCE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table CELLTYPE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table EQUIPMENTDICTIONARY (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table EQUIPMENTTYPE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table RUNTIMEINSTANCESETUP (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
CELL_INSTANCE NUMBER(20,0),
RUNTIMEINSTANCE_COMMENT VARCHAR2(255),
RUNTIMESETTINGS BLOB,
STATE NUMBER(10,0),
TARGET_ID NUMBER(20,0),
LOGGINGSETUP_ID NUMBER(20,0),
PILOT_VERSION_ID NUMBER(20,0),
AUTORESTARTPENDING NUMBER(1,0),
PILOT_VERSION_USER VARCHAR2(255),
PILOT_VERSION_TIME VARCHAR2(255),
ASSIGNEDTO_ID NUMBER(20,0),
PRIMARY_ID NUMBER(20,0),
primary key (ID),
unique (NAME)
)
create table LOGGINGSETUP (
ID NUMBER(20,0) not null,
Uuid VARCHAR2(255) not null,
MAJOR NUMBER(10,0),
MINOR NUMBER(10,0),
PATCH NUMBER(10,0),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
NAME VARCHAR2(255),
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table SEQUENCE (
NAME VARCHAR2(255) not null,
NEXT_VALUE NUMBER(20,0) not null,
primary key (NAME)
)
create table SYSTEM_INFO (
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
primary key (UUID)
)
create table PERSISTABLE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
CREATIONDATE TIMESTAMP(7) not null,
ISRETIRED NUMBER(1,0) default 0 not null,
RETIREDATE TIMESTAMP(7),
RETIREDBY VARCHAR2(255),
CREATEDBY_ID NUMBER(20,0),
primary key (ID)
)
create table VERSIONABLE (
ID NUMBER(20,0) not null,
CHANGESET NUMBER(20,0),
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
RELEASEDATE TIMESTAMP(7),
RELEASEDBY_ID NUMBER(20,0),
BASEVERSION NUMBER(20,0),
primary key (ID)
)
create table PACKAGES (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
VERSION VARCHAR2(255) not null,
DESCRIPTION VARCHAR2(255),
primary key (ID)
)
create table PACKAGEUSAGES (
ID NUMBER(20,0) not null,
BACKBONEMEMBER_UUID VARCHAR2(255) not null,
PACKAGE_ID NUMBER(20,0) not null,
primary key (ID),
unique (BACKBONEMEMBER_UUID, PACKAGE_ID)
)
create table HASGROUP (
FROMID NUMBER(20,0) not null,
TOID NUMBER(20,0) not null,
primary key (FROMID, TOID)
)
create table BACKBONEMEMBER (
ID NUMBER(20,0) not null,
HASCLASS_ID NUMBER(20,0),
primary key (ID)
)
create table EQUIPMENTINSTANCE (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
NAME VARCHAR2(200),
DESCRIPTION VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME)
)
create table BACKBONEMEMBERCLASS (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
CONFIGURATIONSPECIFICATION BLOB,
TYPE VARCHAR2(255),
NAME VARCHAR2(255),
primary key (ID),
unique (MAJOR, MINOR, PATCH, TYPE, NAME)
)
create table AGENTSETUP (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255),
HOST VARCHAR2(255) not null,
AGENT_COMMENT VARCHAR2(2000),
STARTUPBEHAVIOR NUMBER(10,0),
CALLBACK_URL VARCHAR2(255),
primary key (ID),
unique (HOST)
)
create table AUDIT_TRAIL_ENTRY (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
ENTRY_COMMENT VARCHAR2(2000),
CREATIONDATE TIMESTAMP(7) not null,
OWNER_ID NUMBER(20,0) not null,
HASACTION_ID NUMBER(20,0) not null,
HASSEVERITY_ID NUMBER(20,0) not null,
CREATEDBY_ID NUMBER(20,0) not null,
primary key (ID)
)
create table AUDIT_TRAIL_ACTION (
ID NUMBER(20,0) not null,
NAME VARCHAR2(2000),
ACTION_COMMENT VARCHAR2(2000),
primary key (ID),
unique (NAME)
)
create table AUDIT_TRAIL_SEVERITY (
ID NUMBER(20,0) not null,
NAME VARCHAR2(2000),
SEVERITY_COMMENT VARCHAR2(2000),
SEVERITY_LEVEL NUMBER(10,0),
primary key (ID),
unique (NAME)
)
create table AUDIT_TRAIL_EXTERNAL_OWNER (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255),
primary key (ID),
unique (NAME)
)
create table TRANSLATIONCATALOG (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) unique,
CATALOG_COMMENT CLOB,
primary key (ID)
)
create table TRANSLATIONDICTIONARY (
ID NUMBER(20,0) not null,
LANGUAGE VARCHAR2(255),
CONFIGURATION BLOB,
TRANSLATIONCATALOG_ID NUMBER(20,0),
primary key (ID)
)
create table OBJECTVIEW (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255),
CONFIGURATION BLOB,
primary key (ID),
unique (NAME)
)
create table EXECUTIONENVIRONMENT (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
primary key (ID),
unique (NAME)
)
create table HASENVIRONMENTSETTING (
FROMID NUMBER(20,0) not null,
TOID NUMBER(20,0) not null,
primary key (FROMID, TOID)
)
create table ENVIRONMENTSETTING (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255) not null,
MAJOR NUMBER(10,0) not null,
MINOR NUMBER(10,0) not null,
PATCH NUMBER(10,0) not null,
BASEVERSION NUMBER(20,0),
NAME VARCHAR2(255) not null,
VALUE CLOB,
SETTING_COMNMENT VARCHAR2(2000),
HASCATEGORY_ID NUMBER(20,0),
primary key (ID),
unique (MAJOR, MINOR, PATCH, NAME),
unique (BASEVERSION, NAME)
)
create table ENVIRONMENTSETTINGCATEGORY (
ID NUMBER(20,0) not null,
NAME VARCHAR2(255) not null,
SETTING_COMNMENT VARCHAR2(2000),
primary key (ID),
unique (NAME)
)
create table EAF_USER (
ID NUMBER(20,0) not null,
ACCOUNT VARCHAR2(255),
primary key (ID),
unique (ACCOUNT)
)
create table REFLECTIONCACHE (
CACHE_KEY VARCHAR2(2000) not null,
CONTENTS CLOB not null,
primary key (CACHE_KEY)
)
create table RUNTIMEPARAMETERS (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
GROUPUUID VARCHAR2(255),
NAME VARCHAR2(255),
VALUE CLOB,
DATATYPE VARCHAR2(255),
MODIFICATIONTYPE VARCHAR2(255),
CHANGESET_ID NUMBER(20,0),
primary key (ID)
)
create table RUNTIMEPARAMETERGROUPS (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
PARENTUUID VARCHAR2(255),
NAME VARCHAR2(255),
MODIFICATIONTYPE VARCHAR2(255),
CHANGESET_ID NUMBER(20,0),
primary key (ID)
)
create table RUNTIMEPARAMETERGROUPUSAGES (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
USEDGROUPUUID VARCHAR2(255),
USERID VARCHAR2(255),
USERTYPE VARCHAR2(255),
primary key (ID)
)
create table RUNTIMEPARAMETERCHANGESET (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
DESCRIPTION VARCHAR2(2000),
CREATED_BY VARCHAR2(255),
CREATE_TIME TIMESTAMP(7),
primary key (ID)
)
create table TAGS (
ID NUMBER(20,0) not null,
NORMALIZEDNAME VARCHAR2(255),
NAME VARCHAR2(255),
primary key (ID),
unique (NORMALIZEDNAME)
)
create table TAGUSAGES (
ID NUMBER(20,0) not null,
ENTITYTYPE VARCHAR2(255),
ENTITYID VARCHAR2(255),
TagID NUMBER(20,0) not null,
primary key (ID)
)
create table DATATYPES (
ID NUMBER(20,0) not null,
UUID VARCHAR2(255),
NAME VARCHAR2(255),
BASETYPE VARCHAR2(255),
DESCRIPTION VARCHAR2(255),
TYPECONSTRAINT CLOB,
primary key (ID)
)
create table DOMAIN_STATE (
APPLICATION_ID VARCHAR2(255) not null,
EXPIRE_DATE VARCHAR2(255) not null,
CONTENT BLOB,
primary key (APPLICATION_ID)
)
create index IDX_CELLINSTANCE_NAME on CELLINSTANCE (NAME)
alter table CELLINSTANCE
add constraint FK_D18807EB
foreign key (ID)
references BACKBONEMEMBER
create index IDX_CELLTYPE_NAME on CELLTYPE (NAME)
alter table CELLTYPE
add constraint FK_89E074AC
foreign key (ID)
references BACKBONEMEMBER
create index IDX_EQUIPMENTDICTIONARY_NAME on EQUIPMENTDICTIONARY (NAME)
alter table EQUIPMENTDICTIONARY
add constraint FK_A31C70D5
foreign key (ID)
references BACKBONEMEMBER
create index IDX_EQUIPMENTTYPE_NAME on EQUIPMENTTYPE (NAME)
alter table EQUIPMENTTYPE
add constraint FK_46EECF3A
foreign key (ID)
references BACKBONEMEMBER
create index IDX_CELLINSTANCE on RUNTIMEINSTANCESETUP (CELL_INSTANCE)
create index IDX_ASSIGNED_AGENTSETUP on RUNTIMEINSTANCESETUP (ASSIGNEDTO_ID)
create index IDX_TARGET_CELLINSTANCE on RUNTIMEINSTANCESETUP (TARGET_ID)
create index IDX_TARGET_LOGGINGSETUP on RUNTIMEINSTANCESETUP (LOGGINGSETUP_ID)
create index IDX_PRIMARY_RUNTIMEINSTANCE on RUNTIMEINSTANCESETUP (PRIMARY_ID)
create index IDX_PILOT_CELLINSTANCE on RUNTIMEINSTANCESETUP (PILOT_VERSION_ID)
alter table RUNTIMEINSTANCESETUP
add constraint FK_TARGET_CELLINSTANCE
foreign key (TARGET_ID)
references CELLINSTANCE
alter table RUNTIMEINSTANCESETUP
add constraint FK_TARGET_LOGGINGSETUP
foreign key (LOGGINGSETUP_ID)
references LOGGINGSETUP
alter table RUNTIMEINSTANCESETUP
add constraint FK_83711C90
foreign key (ID)
references PERSISTABLE
alter table RUNTIMEINSTANCESETUP
add constraint FK_CELLINSTANCE
foreign key (CELL_INSTANCE)
references CELLINSTANCE
alter table RUNTIMEINSTANCESETUP
add constraint FK_ASSIGNED_AGENTSETUP
foreign key (ASSIGNEDTO_ID)
references AGENTSETUP
alter table RUNTIMEINSTANCESETUP
add constraint FK_PRIMARY_RUNTIMEINSTANCE
foreign key (PRIMARY_ID)
references RUNTIMEINSTANCESETUP
alter table RUNTIMEINSTANCESETUP
add constraint FK_PILOT_CELLINSTANCE
foreign key (PILOT_VERSION_ID)
references CELLINSTANCE
alter table LOGGINGSETUP
add constraint FK_282A222
foreign key (ID)
references VERSIONABLE
create index IDX_PERSISTABLE_CREATEDBY on PERSISTABLE (CREATEDBY_ID)
create index IDX_PERSISTABLE_UUID on PERSISTABLE (UUID)
create index IDX_PERSISTABLE_CREATIONDATE on PERSISTABLE (CREATIONDATE)
alter table PERSISTABLE
add constraint FK_PERSISTABLE_CREATEDBY
foreign key (CREATEDBY_ID)
references EAF_USER
create index IDX_VERSIONABLE_RELEASEDBY on VERSIONABLE (RELEASEDBY_ID)
create index FK_BASEVERSION on VERSIONABLE (BASEVERSION)
alter table VERSIONABLE
add constraint FK_VERSIONABLE_RELEASEDBY
foreign key (RELEASEDBY_ID)
references EAF_USER
alter table VERSIONABLE
add constraint FK_BASEVERSION
foreign key (BASEVERSION)
references VERSIONABLE
alter table VERSIONABLE
add constraint FK_C3011D92
foreign key (ID)
references PERSISTABLE
alter table PACKAGEUSAGES
add constraint FK_5D49A41C
foreign key (PACKAGE_ID)
references PACKAGES
alter table HASGROUP
add constraint FK_HASGROUPS_T
foreign key (TOID)
references BACKBONEMEMBER
alter table HASGROUP
add constraint FK_HASGROUPS_S
foreign key (FROMID)
references BACKBONEMEMBER
create index IDX_HASCLASS on BACKBONEMEMBER (HASCLASS_ID)
alter table BACKBONEMEMBER
add constraint FK_EC2B69B5
foreign key (ID)
references VERSIONABLE
alter table BACKBONEMEMBER
add constraint FK_HASCLASS
foreign key (HASCLASS_ID)
references BACKBONEMEMBERCLASS
create index IDX_EQUIPMENTINSTANCE_NAME on EQUIPMENTINSTANCE (NAME)
alter table EQUIPMENTINSTANCE
add constraint FK_72BB532A
foreign key (ID)
references BACKBONEMEMBER
alter table BACKBONEMEMBERCLASS
add constraint FK_99DBCED
foreign key (ID)
references VERSIONABLE
alter table AGENTSETUP
add constraint FK_CD620C1F
foreign key (ID)
references PERSISTABLE
create index IDX_AUDITTRAIL_CREATIONDATE on AUDIT_TRAIL_ENTRY (CREATIONDATE)
create index IDX_AUDITTRAIL_OWNER on AUDIT_TRAIL_ENTRY (OWNER_ID)
create index IDX_AUDITTRAIL_ACTION on AUDIT_TRAIL_ENTRY (HASACTION_ID)
create index IDX_AUDITTRAIL_SEVERITY on AUDIT_TRAIL_ENTRY (HASSEVERITY_ID)
create index IDX_AUDITTRAIL_CREATEDBY on AUDIT_TRAIL_ENTRY (CREATEDBY_ID)
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_OWNER
foreign key (OWNER_ID)
references PERSISTABLE
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_ACTION
foreign key (HASACTION_ID)
references AUDIT_TRAIL_ACTION
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_SEVERITY
foreign key (HASSEVERITY_ID)
references AUDIT_TRAIL_SEVERITY
alter table AUDIT_TRAIL_ENTRY
add constraint FK_AUDITTRAIL_CREATEDBY
foreign key (CREATEDBY_ID)
references EAF_USER
alter table AUDIT_TRAIL_EXTERNAL_OWNER
add constraint FK_85BFD8C9
foreign key (ID)
references PERSISTABLE
alter table TRANSLATIONCATALOG
add constraint FK_553F6815
foreign key (ID)
references PERSISTABLE
create index IDX_TRANSLATIONCATALOG on TRANSLATIONDICTIONARY (TRANSLATIONCATALOG_ID)
alter table TRANSLATIONDICTIONARY
add constraint FK_85DC11F4
foreign key (ID)
references VERSIONABLE
alter table TRANSLATIONDICTIONARY
add constraint FK_TRANSLATIONCATALOG
foreign key (TRANSLATIONCATALOG_ID)
references TRANSLATIONCATALOG
alter table OBJECTVIEW
add constraint FK_F4B6B7DA
foreign key (ID)
references PERSISTABLE
alter table EXECUTIONENVIRONMENT
add constraint FK_E3EAB46E
foreign key (ID)
references PERSISTABLE
alter table HASENVIRONMENTSETTING
add constraint FK_HASENVIRONMENTSETTING_T
foreign key (TOID)
references ENVIRONMENTSETTING
alter table HASENVIRONMENTSETTING
add constraint FK_HASENVIRONMENTSETTING_S
foreign key (FROMID)
references EXECUTIONENVIRONMENT
create index IDX_ENVSETTING_BASEVERSION on ENVIRONMENTSETTING (BASEVERSION)
create index IDX_HASCATEGORY on ENVIRONMENTSETTING (HASCATEGORY_ID)
alter table ENVIRONMENTSETTING
add constraint FK_AB58846D
foreign key (ID)
references VERSIONABLE
alter table ENVIRONMENTSETTING
add constraint FK_ENVSETTING_BASEVERSION
foreign key (BASEVERSION)
references VERSIONABLE
alter table ENVIRONMENTSETTING
add constraint FK_HASCATEGORY
foreign key (HASCATEGORY_ID)
references ENVIRONMENTSETTINGCATEGORY
alter table ENVIRONMENTSETTINGCATEGORY
add constraint FK_CA6167CE
foreign key (ID)
references PERSISTABLE
alter table EAF_USER
add constraint FK_66C9DC63
foreign key (ID)
references PERSISTABLE
create index IDX_RP_UUID on RUNTIMEPARAMETERS (UUID)
create index IDX_RP_GROUPUUID on RUNTIMEPARAMETERS (GROUPUUID)
alter table RUNTIMEPARAMETERS
add constraint FK_245A17B5
foreign key (CHANGESET_ID)
references RUNTIMEPARAMETERCHANGESET
create index IDX_RPG_UUID on RUNTIMEPARAMETERGROUPS (UUID)
create index IDX_RPG_PARENTUUID on RUNTIMEPARAMETERGROUPS (PARENTUUID)
alter table RUNTIMEPARAMETERGROUPS
add constraint FK_8A2A11B8
foreign key (CHANGESET_ID)
references RUNTIMEPARAMETERCHANGESET
create index IDX_RPGU_UUID on RUNTIMEPARAMETERGROUPUSAGES (UUID)
create index IDX_RPGU_USEDGROUPUUID on RUNTIMEPARAMETERGROUPUSAGES (USEDGROUPUUID)
create index IDX_RPC_UUID on RUNTIMEPARAMETERCHANGESET (UUID)
alter table TAGUSAGES
add constraint FK_9F455CF9
foreign key (TagID)
references TAGS
create index IDX_DOMAIN_STATE_EXPIRE_DATE on DOMAIN_STATE (EXPIRE_DATE)
create table NHIBERNATE_UNIQUE_KEY (
NEXT_HI NUMBER(20,0)
)
insert into NHIBERNATE_UNIQUE_KEY values ( 1 )
Database deployment completed.
Schema version: 3.2.0
System ID: NNePVIAArUyYxeGU64uYzg
```
## robocopy
```bash
D:
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1"
robocopy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.1\Rollback Scripts" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\Rollback Scripts" /E
robocopy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.1\EAF\EAF Management Agent" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent" /E
robocopy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.1\EAF\EAF Management Server" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server" /E
robocopy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.1\EAF\EAF Management Agent Migration" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent Migration" /E
copy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.1\EAF.zip" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF.zip"
code-insiders "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1"
# Replace \t for *.config 2 spaces
```
```bash
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\PCL" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Bin"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\Rollback Scripts\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent\Bin\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent\Logs\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Bin\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Logs\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Temp\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Build\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent Migration\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent\Persistence\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Reflection\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Persistence\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent\Configuration\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Configuration\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\Documentation\v3.2.1"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server\StartedInstances\v3.2.1"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\Rollback Scripts\v3.2.1"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent\v3.2.1"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.1"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent Migration\v3.2.1"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\Rollback Scripts\v3.2.1"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent\v3.2.1"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.1"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent Migration\v3.2.1"
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\Rollback Scripts" "\\10.95.1.211\Share\Stealth\DEAF\Rollback Scripts\v3.2.1" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent" "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent\v3.2.1" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server" "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.1" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent Migration" "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent Migration\v3.2.1" /E
copy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF.zip" "\\10.95.1.211\Share\Stealth\DEAF\v3.2.1.zip"
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\Rollback Scripts" "\\messdv003.infineon.com\APC\Stealth\DEAF\Rollback Scripts\v3.2.1" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent" "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent\v3.2.1" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Server" "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.1" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF Management Agent Migration" "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent Migration\v3.2.1" /E
copy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.1\EAF.zip" "\\messdv003.infineon.com\Share\Stealth\DEAF\v3.2.1.zip"
mkdir -p "D:\EAF\Rollback Scripts"
mkdir -p "D:\EAF\EAF Management Agent"
mkdir -p "D:\EAF\EAF Management Server"
mkdir -p "D:\EAF\EAF Management Server"
mkdir -p "D:\EAF\EAF Management Agent Migration"
robocopy "\\10.95.1.211\Share\Stealth\DEAF\Rollback Scripts\v3.2.1" "D:\EAF\Rollback Scripts\v3.2.1" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent\v3.2.1" "D:\EAF\EAF Management Agent\v3.2.1" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.1" "D:\EAF\EAF Management Server\v3.2.1" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.1" "D:\EAF\EAF Management Server\v3.2.1" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent Migration\v3.2.1" "D:\EAF\EAF Management Agent Migration\v3.2.1" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\Rollback Scripts\v3.2.1" "D:\EAF\Rollback Scripts\v3.2.1" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent\v3.2.1" "D:\EAF\EAF Management Agent\v3.2.1" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.1" "D:\EAF\EAF Management Server\v3.2.1" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.1" "D:\EAF\EAF Management Server\v3.2.1" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent Migration\v3.2.1" "D:\EAF\EAF Management Agent Migration\v3.2.1" /E
```
```bash
# D:
# mkdir -p "D:\EAF\EAF Compare Configurations"
# cd "D:\EAF\EAF Compare Configurations"
# mkdir -p "D:\EAF\EAF Compare Configurations\.vscode"
# echo {"diffEditor.ignoreTrimWhitespace": true}>.vscode\settings.json
# git config user.name Mike Phares
# git config user.email mike.phares@infineon.com
mkdir -p "D:\EAF\EAF Compare Configurations\EAF Management Agent"
mkdir -p "D:\EAF\EAF Compare Configurations\EAF Management Server"
mklink /J "D:\EAF\EAF Compare Configurations\EAF Management Agent\v3.2.1" "D:\EAF\EAF Management Agent\v3.2.1\Configuration"
mklink /J "D:\EAF\EAF Compare Configurations\EAF Management Server\v3.2.1" "D:\EAF\EAF Management Server\v3.2.1\Configuration"
# git add .
# git commit -m init
# git log -1
code-insiders "D:\EAF\EAF Compare Configurations"
```
```
cachePath="\\##server##
deploymentStoragePath="\\##server##
```
```
##path##
##share##
##server##
##agentname##
```
```bash
git add .
git commit -m v3.2.1
git log -1
```
```bash Tue Aug 20 2024 10:49:27 GMT-0700 (Mountain Standard Time)
cd "D:\EAF\EAF Management Server\Bin"
# sc stop "EAF Management Server"
"D:\EAF\EAF Management Server\Bin\EAFManagementServer.exe" console
```
```bash
# sc delete "EAF Management Server"
sc create "EAF Management Server" start= delayed-auto binPath= "D:\EAF\EAF Management Server\Bin\EAFManagementServer.exe" DisplayName= "EAF Management Server"
# sc delete "EAF Management Agent"
sc create "EAF Management Agent" start= delayed-auto binPath= "D:\EAF\EAF Management Agent\Bin\EafManagement.Agent.exe" DisplayName= "EAF Runtime Agent"
```
```bash
# sc config "EAF Runtime Agent" displayname= "EAF Management Agent - v3.2.1"
sc config "EAF Management Agent" displayname= "EAF Management Agent - v3.2.1"
sc config "EAF Management Server" displayname= "EAF Management Server - v3.2.1"
```
```xml
<disableFreezeValidation value="true" />
```
```conf
# Mango
# http://localhost:9003
```
```bash
D:
cd "D:\EAF\EAF Management Agent\Bin"
# sc stop "EAF Management Agent"
"D:\EAF\EAF Management Agent\Bin\EafManagement.Agent.exe" console
```
```bash
sc start "EAF Management Server"
sc start "EAF Runtime Agent"
```

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,505 @@
---
assigned: ''
created: 2024-01-14T02:18:19.182Z
progress: 0
started: 2023-11-07T00:00:00.000Z
status: 6-UAT
tags:
- EAF
type: note
updated: 2024-08-19T21:31:54.701Z
---
# EAF Runtime Release v2.52.0 Steps
## Steps
```bash
D:
mkdir "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0"
robocopy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.52.0.0\EAF v2.52.0.0 IFX.EAF Kernel SEMI" "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0\EAF v2.52.0.0 IFX.EAF Kernel SEMI" /E
robocopy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.52.0.0\Configuration Templates" "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0\Configuration Templates" /E
copy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.52.0.0\EAF v2.52.0.0 IFX.EAF Kernel SEMI.zip" "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0\EAF v2.52.0.0 IFX.EAF Kernel SEMI.zip"
copy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.52.0.0\IFXAPI-Versions-v2.52.0.0.csv" "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0\IFXAPI-Versions-v2.52.0.0.csv"
copy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.52.0.0\Infineon.EAF.Runtime.2.52.0.nupkg" "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0\Infineon.EAF.Runtime.2.52.0.nupkg"
copy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.52.0.0\Infineon.EAF.Runtime.Testing.2.52.0.nupkg" "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0\Infineon.EAF.Runtime.Testing.2.52.0.nupkg"
mkdir "D:\EAF\EAF Deployment Storage\IFX.EAF Kernel SEMI\v2.52.0.0"
robocopy "D:\EAF\drssdv702.eu.infineon.comeafdevDeliveredPackagesIFX.EAF Kernel SEMI\v2.52.0.0\EAF v2.52.0.0 IFX.EAF Kernel SEMI" "D:\EAF\EAF Deployment Storage\IFX.EAF Kernel SEMI\v2.52.0.0" /E
```
```mango
v2.52.0.0
```
```bash
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC"
git checkout -q -b v2_52_0 --no-track
git push --set-upstream origin v2_52_0
rem
```
```bash
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC"
git ls-files --others --modified --deleted --exclude-standard
rem
```
- [x] Export all CI
- [x] Import all CI
- [x] Create Adaptation for each v2.52.0.0
```Find Replace
v2.49.3
v2.52.0
>2.49.3
>2.52.0
```
```Find Replace
v2_49_3
v2_52_0
**/v2.52.0/*.cs*
```
```Find Replace
v2_43_0
v2_52_0
**/v2.52.0/*.cs*
```
```Find Replace
#if DEBUG
[Ignore]
#endif
[TestMethod]
[Ignore]
[TestMethod]
**/v2.49.3/*.cs*
```
```Find Replace
", "v2.43.0"
", "v2.52.0"
**/Static/*.cs*
```
```Find Replace
", "v2.43.4"
", "v2.52.0"
**/Static/*.cs*
```
```Find Replace
", "v2.47.5"
", "v2.52.0"
**/Static/*.cs*
```
```Find Replace
", "v2.49.2"
", "v2.52.0"
**/Static/*.cs*
```
```Find Replace
", "v2.49.3"
", "v2.52.0"
**/Static/*.cs*
```
```Find Replace
", "v2.47.0"
", "v2.52.0"
**/Static/*.cs*
```
```Find Replace
PackageReference Include="Infineon.EAF.Runtime">
<Version>2.49.3</Version
PackageReference Include="Infineon.EAF.Runtime">
<Version>2.52.0</Version
*.csp*
```
```bash
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation"
dotnet test
dotnet test -c Release
dir
```
```bash
mklink /J "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\DEP08SIASM"
mklink /J "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\DEP08SIHTRPLC"
mklink /J "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MESAFIBACKLOG"
mklink /J "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08AFMD3100"
mklink /J "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\06_SourceCode"
mklink /J "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\06_SourceCode"
mklink /J "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08DDUPSFS6420"
mklink /J "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08DDUPSP1TBI"
mklink /J "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08RESIHGCV"
mklink /J "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08RESIMAPCDE"
mklink /J "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08RESISRP2100"
mklink /J "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08THFTIRQS408M"
mklink /J "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08THFTIRSTRATUS"
mklink /J "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\METCLIMATEC"
dir
```
```bash
code "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation"
code "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation"
code "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation"
code "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation"
code "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation"
code "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation"
code "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation"
code "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation"
code "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation"
code "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation"
code "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation"
code "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation"
code "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation"
code "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation"
code "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation"
dir
```
```bash
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\DEP08SIASM\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\DEP08SIHTRPLC\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MESAFIBACKLOG\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08AFMD3100\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08ANLYSDIFAAST230\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08AWCT\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08DDUPSFS6420\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08DDUPSP1TBI\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08RESIHGCV\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08RESIMAPCDE\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08RESISRP2100\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08THFTIRQS408M\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08THFTIRSTRATUS\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\METCLIMATEC\Source" "Day-Helper-2024-01-29" "*.json"
dir
```
```bash
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dir
```
```bash
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIASM?version=GBv2_52_0&_a=history"
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIHTRPLC?version=GBv2_52_0&_a=history"
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MESAFIBACKLOG?version=GBv2_52_0&_a=history"
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08AFMD3100?version=GBv2_52_0&_a=history"
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08ANLYSDIFAAST230?version=GBv2_52_0&_a=history"
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08AWCT?version=GBv2_52_0&_a=history"
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSFS6420?version=GBv2_52_0&_a=history"
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSP1TBI?version=GBv2_52_0&_a=history"
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIHGCV?version=GBv2_52_0&_a=history"
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIMAPCDE?version=GBv2_52_0&_a=history"
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESISRP2100?version=GBv2_52_0&_a=history"
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_1
git push --set-upstream origin v2_52_1
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRQS408M?version=GBv2_52_1&_a=history"
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRSTRATUS?version=GBv2_52_0&_a=history"
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC"
git add .vscode/mklink.md
git checkout -q -b v2_52_0 --no-track
git commit -m "5-Other-Small"
git push --set-upstream origin v2_52_0
git push --set-upstream origin v2_52_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/METCLIMATEC?version=GBv2_52_0&_a=history"
dir
```
```conf
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\mestsa07ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\messa08ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\messa09ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\messa011ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mestsa07ec.infineon.com\d$\EAF\EAF Deployment Storage
\\messa08ec.infineon.com\d$\EAF\EAF Deployment Storage
```

View File

@ -0,0 +1,447 @@
---
assigned: ''
created: 2024-04-29T14:14:41.977Z
progress: 0
started: 2024-04-28T00:00:00.000Z
tags:
- EAF
type: note
updated: 2024-08-19T21:31:59.746Z
---
# EAF Runtime Release v2.56.0 Steps
## Steps
- [x] Copy binaries
```bash
mkdir "\\10.95.1.211\Share\Stealth\DEAFEAF Deployment StorageIFX.EAF Kernel SEMI\v2.56.0.0\IFX.EAF Kernel SEMI\v2.56.0.0"
mkdir "\\messdv003.infineon.com\APC\Stealth\DEAFEAF Deployment StorageIFX.EAF Kernel SEMI\v2.56.0.0\IFX.EAF Kernel SEMI\v2.56.0.0"
robocopy "D:\EAF\EAF Deployment Storage\IFX.EAF Kernel SEMI\v2.56.0.0" "\\10.95.1.211\Share\Stealth\DEAFEAF Deployment StorageIFX.EAF Kernel SEMI\v2.56.0.0\IFX.EAF Kernel SEMI\v2.56.0.0" /E
robocopy "D:\EAF\EAF Deployment Storage\IFX.EAF Kernel SEMI\v2.56.0.0" "\\messdv003.infineon.com\APC\Stealth\DEAFEAF Deployment StorageIFX.EAF Kernel SEMI\v2.56.0.0\IFX.EAF Kernel SEMI\v2.56.0.0" /E
robocopy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.56.0.0\Configuration Templates" "\\10.95.1.211\Share\Stealth\DEAFEAF Deployment StorageIFX.EAF Kernel SEMI\v2.56.0.0\Configuration Templates\v2.56.0.0" /E
robocopy "\\eafdev.drs.infineon.com\eafdev\DeliveredPackages\IFX.EAF Kernel SEMI\v2.56.0.0\Configuration Templates" "\\messdv003.infineon.com\APC\Stealth\DEAFEAF Deployment StorageIFX.EAF Kernel SEMI\v2.56.0.0\Configuration Templates\v2.56.0.0" /E```
```
- [x] Create symbolic links
```bash
mklink /J "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\DEP08CEPIEPSILON"
mklink /J "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\DEP08SIASM"
mklink /J "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\DEP08SIHTRPLC"
mklink /J "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MESAFIBACKLOG"
mklink /J "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08AFMD3100"
mklink /J "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\06_SourceCode"
mklink /J "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\06_SourceCode"
mklink /J "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08DDUPSFS6420"
mklink /J "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08DDUPSP1TBI"
mklink /J "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08RESIHGCV"
mklink /J "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08RESIMAPCDE"
mklink /J "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08RESISRP2100"
mklink /J "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08THFTIRQS408M"
mklink /J "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\MET08THFTIRSTRATUS"
mklink /J "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\.kanbn" "D:\5-Other-Small\Kanban\METCLIMATEC"
dir
```
- [x] Open each project in code
```bash
code "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation"
code "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation"
code "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation"
code "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation"
code "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation"
code "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation"
code "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation"
code "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation"
code "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation"
code "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation"
code "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation"
code "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation"
code "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation"
code "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation"
code "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation"
dir
```
- [x] Create new branch and delete old remote branch
```bash
T:
cls
cd "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_1
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC"
git checkout -q -b v2_56_0 --no-track
git push --set-upstream origin v2_56_0
git push origin -d v2_52_0
rem
```
- [x] Create new tests
```bash
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X 'T:/' 'Day-Helper-2024-04-26' 'System Volume Information' '06_SourceCode' 'CreateSelfDescription' 'Extract' 'Static' '*.cs' 'v2.52.0' 'v2.56.0'
```
- [x] Find Replace code
```Find Replace
#if DEBUG
[Ignore]
#endif
[TestMethod]
[Ignore]
[TestMethod]
**/v2.49.3/*.cs*
```
```Find Replace
", "v2.47.0"
", "v2.56.0"
**/Static/*.cs*
```
```Find Replace
PackageReference Include="Infineon.EAF.Runtime">
<Version>2.52.0</Version
PackageReference Include="Infineon.EAF.Runtime">
<Version>2.56.0</Version
*.csp*
```
- [x] Mike
```bash
T:
cls
cd "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS"
git ls-files --others --modified --deleted --exclude-standard
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC"
git ls-files --others --modified --deleted --exclude-standard
rem
```
- [ ] Create Adaptation for each v2.56.0.0
```mango
v2.56.0.0
```
- [ ] Export all CI
- [ ] Import all CI
```Find Replace
v2.52.0
v2.56.0
>2.52.1
>2.56.0
```
```bash
T:
cls
cd "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation"
dotnet test
REM dotnet test -c Release
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation"
dotnet test
dotnet test -c Release
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation"
dotnet test
dotnet test -c Release
dir
```
```bash
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\DEP08CEPIEPSILON\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\DEP08SIASM\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\DEP08SIHTRPLC\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MESAFIBACKLOG\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08AFMD3100\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08ANLYSDIFAAST230\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08AWCT\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08DDUPSFS6420\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08DDUPSP1TBI\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08RESIHGCV\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08RESIMAPCDE\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08RESISRP2100\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08THFTIRQS408M\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\MET08THFTIRSTRATUS\Source" "Day-Helper-2024-01-29" "*.json"
"C:\Users\MESPhares\AppData\Local\IFXApps\File-Folder-Helper\File-Folder-Helper.exe" s X "\\oi-metrology-import-prod.mes.infineon.com\APPS\Metrology\METCLIMATEC\Source" "Day-Helper-2024-01-29" "*.json"
dir
```
```bash
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation"
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dotnet format --report .vscode --verbosity detailed --severity warn
dir
```
```bash
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM"
git add DEP08SIASM.Tests.csproj
git checkout -q -b v2_56_0 --no-track
git commit -m "Bump"
git push --set-upstream origin v2_56_0
git push --set-upstream origin v2_56_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/METCLIMATEC?version=GBv2_56_0&_a=history"
dir
```
```conf
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\mestsa07ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\messa08ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\messa09ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mesfs.infineon.com\EC_EAFRepository\Staging\DeploymentStorage
\\messa011ec.infineon.com\d$\EAF\EAF Deployment Storage
\\mestsa07ec.infineon.com\d$\EAF\EAF Deployment Storage
\\messa08ec.infineon.com\d$\EAF\EAF Deployment Storage
```
- [ ] \\mesfs.infineon.com\EC_Characterization_Si\In Process\DEP08SIASM
- [ ] \\mesfs.infineon.com\EC_Characterization_Si\In Process\DEP08SIHTRPLC
- [ ] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MESAFIBACKLOG
- [ ] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08AFMD3100
- [ ] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08AWCT
- [ ] \\mesfs.infineon.com\EC_Characterization_Si\In Process\METCLIMATEC
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08ANLYSDIFAAST230
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08DDUPSFS6420
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08DDUPSP1TBI
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08RESIHGCV
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08RESIMAPCDE
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08RESISRP2100
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08THFTIRQS408M
- [x] \\mesfs.infineon.com\EC_Characterization_Si\In Process\MET08THFTIRSTRATUS
- [ ] <d7p1:FileScanningIntervalInSeconds>5 -> 1 DEP08SIASM
- [ ] <d7p1:FileScanningIntervalInSeconds>5 -> 1 DEP08SIHTRPLC
- [ ] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MESAFIBACKLOG
- [ ] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08AFMD3100
- [ ] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08AWCT
- [ ] <d7p1:FileScanningIntervalInSeconds>5 -> 1 METCLIMATEC
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08ANLYSDIFAAST230
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08DDUPSFS6420
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08DDUPSP1TBI
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08RESIHGCV
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08RESIMAPCDE
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08RESISRP2100
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08THFTIRQS408M
- [x] <d7p1:FileScanningIntervalInSeconds>5 -> 1 MET08THFTIRSTRATUS

View File

@ -0,0 +1,258 @@
---
created: 2024-08-19T21:31:24.694Z
tags:
- EAF
type: note
updated: 2024-08-19T21:31:50.601Z
---
# EAF Runtime Release v2.57.0 Steps
## Steps
```c# Mon Aug 19 2024 14:58:37 GMT-0700 (Mountain Standard Time)
Version("2.56.0.0")]
Version("2.57.0.0")]
Infineon.EAF.Runtime">
<Version>2.56.0</Version
Infineon.EAF.Runtime">
<Version>2.57.0</Version
```
```c# Mon Aug 19 2024 15:00:42 GMT-0700 (Mountain Standard Time)
", "v2.47.0"
", "v2.56.0"
**/Static/*.cs*
```
```xml Mon Aug 19 2024 15:00:51 GMT-0700 (Mountain Standard Time)
PackageReference Include="Infineon.EAF.Runtime">
<Version>2.52.0</Version
PackageReference Include="Infineon.EAF.Runtime">
<Version>2.56.0</Version
*.csp*
```
```bash Mon Aug 19 2024 15:02:48 GMT-0700 (Mountain Standard Time)
robocopy "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
robocopy "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\CreateSelfDescription\Development\v2.56.0" "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\CreateSelfDescription\Development\v2.57.0" /E
#
robocopy "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
robocopy "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\CreateSelfDescription\Staging\v2.56.0" "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\CreateSelfDescription\Staging\v2.57.0" /E
#
robocopy "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
robocopy "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\CreateSelfDescription\Production\v2.56.0" "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\CreateSelfDescription\Production\v2.57.0" /E
#
robocopy "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\Extract\Development\v2.57.0" /E
robocopy "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\Extract\Development\v2.56.0" "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\Extract\Development\v2.57.0" /E
#
robocopy "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
robocopy "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\Extract\Staging\v2.56.0" "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\Extract\Staging\v2.57.0" /E
#
robocopy "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\DEP08CEPIEPSILON\06_SourceCode\DEP08CEPIEPSILON\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\DEP08SIASM\06_SourceCode\DEP08SIASM\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08AWCT\06_SourceCode\MET08AWCT\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS\Adaptation\_Tests\Extract\Production\v2.57.0" /E
robocopy "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\Extract\Production\v2.56.0" "T:\METCLIMATEC\06_SourceCode\METCLIMATEC\Adaptation\_Tests\Extract\Production\v2.57.0" /E
```
```c# Mon Aug 19 2024 15:01:11 GMT-0700 (Mountain Standard Time)
#if DEBUG
[Ignore]
#endif
[TestMethod]
[Ignore]
[TestMethod]
**/v2.56.0/*.cs*
```
```c# Mon Aug 19 2024 15:01:11 GMT-0700 (Mountain Standard Time)
#if true
#if v2_56_0
**/v2.56.0/*.cs*
```
```c# Mon Aug 19 2024 15:01:11 GMT-0700 (Mountain Standard Time)
v2_56_0
v2_57_0
**/v2.57.0/*.cs*
```
```bash Mon Aug 19 2024 16:49:55 GMT-0700 (Mountain Standard Time)
T:
cls
cd "T:\DEP08SIASM\06_SourceCode\DEP08SIASM"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIASM?version=GBv2_57_0&_a=history"
cd "T:\DEP08SIHTRPLC\06_SourceCode\DEP08SIHTRPLC"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIHTRPLC?version=GBv2_57_0&_a=history"
cd "T:\MESAFIBACKLOG\06_SourceCode\MESAFIBACKLOG"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MESAFIBACKLOG?version=GBv2_57_0&_a=history"
cd "T:\MET08AFMD3100\06_SourceCode\MET08AFMD3100"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08AFMD3100?version=GBv2_57_0&_a=history"
cd "T:\MET08ANLYSDIFAAST230\06_SourceCode\MET08ANLYSDIFAAST230"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08ANLYSDIFAAST230?version=GBv2_57_0&_a=history"
cd "T:\MET08AWCT\06_SourceCode\MET08AWCT"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08AWCT?version=GBv2_57_0&_a=history"
cd "T:\MET08DDUPSFS6420\06_SourceCode\MET08DDUPSFS6420"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSFS6420?version=GBv2_57_0&_a=history"
cd "T:\MET08DDUPSP1TBI\06_SourceCode\MET08DDUPSP1TBI"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSP1TBI?version=GBv2_57_0&_a=history"
cd "T:\MET08RESIHGCV\06_SourceCode\MET08RESIHGCV"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIHGCV?version=GBv2_57_0&_a=history"
cd "T:\MET08RESIMAPCDE\06_SourceCode\MET08RESIMAPCDE"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIMAPCDE?version=GBv2_57_0&_a=history"
cd "T:\MET08RESISRP2100\06_SourceCode\MET08RESISRP2100"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESISRP2100?version=GBv2_57_0&_a=history"
cd "T:\MET08THFTIRQS408M\06_SourceCode\MET08THFTIRQS408M"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_52_1
git push --set-upstream mesafi v2_52_1
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRQS408M?version=GBv2_52_1&_a=history"
cd "T:\MET08THFTIRSTRATUS\06_SourceCode\MET08THFTIRSTRATUS"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRSTRATUS?version=GBv2_57_0&_a=history"
cd "T:\METCLIMATEC\06_SourceCode\METCLIMATEC"
git add .vscode/mklink.md
git checkout -q -b v2_57_0 --no-track
git commit -m "v2.57.0"
git push --set-upstream mesafi v2_57_0
git push --set-upstream mesafi v2_57_0
explorer "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/METCLIMATEC?version=GBv2_57_0&_a=history"
dir
```

161
logs/v3.2.0.md Normal file
View File

@ -0,0 +1,161 @@
---
created: 2024-08-19T17:50:24.545Z
type: note
updated: 2024-11-02T15:39:44.000Z
---
# V 3 2 0 Development
```bash
D:
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0"
robocopy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.0\EAF\EAF Management Server" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server" /E
robocopy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.0\EAF\EAF Management Agent" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\PCL" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Bin"
# robocopy "\\drssdv702.eu.infineon.com\eafdev\DeliveredPackages\EAF Management\v3.2.0" "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0" EAF.zip
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\Rollback Scripts\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent\Bin\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent\Logs\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Bin\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Logs\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Temp\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Build\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent Migration\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent\Persistence\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Reflection\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Persistence\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent\Configuration\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Configuration\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\Documentation\v3.2.0"
mkdir -p "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server\StartedInstances\v3.2.0"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\Rollback Scripts\v3.2.0"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent\v3.2.0"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.0"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\Rollback Scripts\v3.2.0"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent\v3.2.0"
mkdir -p "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent Migration\v3.2.0"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.0"
mkdir -p "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent Migration\v3.2.0"
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\Rollback Scripts" "\\10.95.1.211\Share\Stealth\DEAF\Rollback Scripts\v3.2.0" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent" "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent\v3.2.0" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\Rollback Scripts" "\\messdv003.infineon.com\APC\Stealth\DEAF\Rollback Scripts\v3.2.0" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server" "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.0" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent" "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent\v3.2.0" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent" "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent Migration\v3.2.0" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Server" "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.0" /E
robocopy "D:\EAF\drssdv702.eu.infineon.com-eafdev-DeliveredPackages-EAF Management\v3.2.0\EAF Management Agent" "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent Migration\v3.2.0" /E
mkdir -p "D:\EAF\Rollback Scripts"
mkdir -p "D:\EAF\EAF Management Agent"
mkdir -p "D:\EAF\EAF Management Server"
mkdir -p "D:\EAF\EAF Management Server"
mkdir -p "D:\EAF\EAF Management Agent Migration"
robocopy "\\10.95.1.211\Share\Stealth\DEAF\Rollback Scripts\v3.2.0" "D:\EAF\Rollback Scripts\v3.2.0" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent\v3.2.0" "D:\EAF\EAF Management Agent\v3.2.0" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.0" "D:\EAF\EAF Management Server\v3.2.0" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Server\v3.2.0" "D:\EAF\EAF Management Server\v3.2.0" /E
robocopy "\\10.95.1.211\Share\Stealth\DEAF\EAF Management Agent Migration\v3.2.0" "D:\EAF\EAF Management Agent Migration\v3.2.0" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\Rollback Scripts\v3.2.0" "D:\EAF\Rollback Scripts\v3.2.0" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent\v3.2.0" "D:\EAF\EAF Management Agent\v3.2.0" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.0" "D:\EAF\EAF Management Server\v3.2.0" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Server\v3.2.0" "D:\EAF\EAF Management Server\v3.2.0" /E
# robocopy "\\messdv003.infineon.com\APC\Stealth\DEAF\EAF Management Agent Migration\v3.2.0" "D:\EAF\EAF Management Agent Migration\v3.2.0" /E
```
```bash
# D:
# mkdir -p "D:\EAF\EAF Compare Configurations"
# cd "D:\EAF\EAF Compare Configurations"
# mkdir -p "D:\EAF\EAF Compare Configurations\.vscode"
# echo {"diffEditor.ignoreTrimWhitespace": true}>.vscode\settings.json
# git config user.name Mike Phares
# git config user.email mike.phares@infineon.com
mkdir -p "D:\EAF\EAF Compare Configurations\EAF Management Agent"
mkdir -p "D:\EAF\EAF Compare Configurations\EAF Management Server"
mklink /J "D:\EAF\EAF Compare Configurations\EAF Management Agent\v3.2.0" "D:\EAF\EAF Management Agent\v3.2.0\Configuration"
mklink /J "D:\EAF\EAF Compare Configurations\EAF Management Server\v3.2.0" "D:\EAF\EAF Management Server\v3.2.0\Configuration"
# git add .
# git commit -m init
# git log -1
code-insiders "D:\EAF\EAF Compare Configurations"
```
```
cachePath="\\##server##
deploymentStoragePath="\\##server##
```
```
##path##
##share##
##server##
##agentname##
```
- [x] Dif EAF Management Server to last version
- [x] Dif EAF Management Agent to last version
```bash
git add .
git commit -m v3.2.0
git log -1
```
```bash
D:
"D:\EAF\EAF Management Server\v3.2.0\Bin\EAFManagementServer.exe" updatedb
```
```conf
Management Server Database Update Starting...
Initialization Complete - Update Executing...
Database update completed. No steps executed. System already up to date.
Click any key within 00:00:10 sec. time.
```
```bash
rmdir "D:\EAF\EAF Management Server\Bin"
rmdir "D:\EAF\EAF Management Server\Build"
rmdir "D:\EAF\EAF Management Server\Configuration"
rmdir "D:\EAF\EAF Management Server\Documentation"
rmdir "D:\EAF\EAF Management Server\Health"
rmdir "D:\EAF\EAF Management Server\Logs"
rmdir "D:\EAF\EAF Management Server\StartedInstances"
rmdir "D:\EAF\EAF Management Server\Temp"
rmdir "D:\EAF\EAF Management Agent\Bin"
rmdir "D:\EAF\EAF Management Agent\Configuration"
rmdir "D:\EAF\EAF Management Agent\Logs"
mklink /J "D:\EAF\EAF Management Server\Bin" "D:\EAF\EAF Management Server\v3.2.0\Bin"
mklink /J "D:\EAF\EAF Management Server\Build" "D:\EAF\EAF Management Server\v3.2.0\Build"
mklink /J "D:\EAF\EAF Management Server\Configuration" "D:\EAF\EAF Management Server\v3.2.0\Configuration"
mklink /J "D:\EAF\EAF Management Server\Documentation" "D:\EAF\EAF Management Server\v3.2.0\Documentation"
mklink /J "D:\EAF\EAF Management Server\Health" "D:\EAF\EAF Management Server\v3.2.0\Health"
mklink /J "D:\EAF\EAF Management Server\Logs" "D:\EAF\EAF Management Server\v3.2.0\Logs"
mklink /J "D:\EAF\EAF Management Server\StartedInstances" "D:\EAF\EAF Management Server\v3.2.0\StartedInstances"
mklink /J "D:\EAF\EAF Management Server\Temp" "D:\EAF\EAF Management Server\v3.2.0\Temp"
mklink /J "D:\EAF\EAF Management Agent\Bin" "D:\EAF\EAF Management Agent\v3.2.0\Bin"
mklink /J "D:\EAF\EAF Management Agent\Configuration" "D:\EAF\EAF Management Agent\v3.2.0\Configuration"
mklink /J "D:\EAF\EAF Management Agent\Logs" "D:\EAF\EAF Management Agent\v3.2.0\Logs"
```
```bash
# sc delete "EAF Management Server"
# sc create "EAF Management Server" start= delayed-auto binPath= "D:\EAF\EAF Management Server\Bin\EAFManagementServer.exe" DisplayName= "EAF Management Server"
# sc delete "EAF Management Agent"
# sc create "EAF Management Agent" start= delayed-auto binPath= "D:\EAF\EAF Management Agent\Bin\EAFRuntimeAgent.exe" DisplayName= "EAF Runtime Agent"
sc stop "EAF Management Agent"
"D:\EAF\EAF Management Agent\Bin\EAFRuntimeAgent.exe" console
sc stop "EAF Management Server"
"D:\EAF\EAF Management Server\Bin\EAFManagementServer.exe" console
sc config "EAF Management Agent" displayname= "EAF Management Agent - v3.2.0"
sc config "EAF Management Server" displayname= "EAF Management Server - v3.2.0"
```
```conf
# Mango
# http://localhost:9003
```
```bash
sc start "EAF Management Server"
sc start "EAF Runtime Agent"
```