diff --git a/.gitignore b/.gitignore index 7c7ee90..6ba6148 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,6 @@ x86/ bld/ [Bb]in/ [Oo]bj/ -[Ll]og/ # Visual Studio 2015/2017 cache/options directory .vs/ diff --git a/.groovy b/.groovy new file mode 100644 index 0000000..4da0682 --- /dev/null +++ b/.groovy @@ -0,0 +1,149 @@ +#!/usr/bin/env groovy +import groovy.transform.Field + +@Field def _DDrive = 'D:/' +@Field def _AssemblyName = '...' +@Field def _NetVersion = 'net6.0' +@Field def _TargetLocation = '...' +@Field def _GitCommitSeven = '...' +@Field def _TestProjectDirectory = 'Adaptation' +@Field def _DDriveNet = "${_DDrive}${_NetVersion}" +@Field def _ProgramFilesDotnet = 'C:/Program Files/dotnet/dotnet.exe' +@Field def _ProgramFilesMSBuild = 'C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/MSBuild/Current/Bin/MSBuild.exe' + +pipeline { + agent any + parameters { + string(name: 'EAF_ENVIRONMENT', defaultValue: 'Staging', description: 'Environment for file-share') + string(name: 'DEFAULT_FILE_SERVER', defaultValue: 'messv02ecc1.ec.local', description: 'Default file server...') + } + stages { + stage('Git') { + steps { + bat(returnStatus: true, script: 'git init') + bat(returnStatus: true, script: 'git remote add origin \\\\mestsa07ec.ec.local\\Git\\MET08RESIMAPCDE.git') + bat(returnStatus: true, script: 'git pull origin master') + } + } + stage('Setup') { + steps { + script { + _AssemblyName = "${env.JOB_NAME}" + _GitCommitSeven = '1234567' + def files = findFiles(glob: '*.csproj') + if (files.length != 1) { + error("Build failed because couldn't find a *.csproj file") + } + echo """ + ${files[0].name} + ${files[0].path} + ${files[0].directory} + ${files[0].length} + ${files[0].lastModified} + """ + _AssemblyName = files[0].name.split('[.]csproj')[0] + _TargetLocation = "\\\\${params.DEFAULT_FILE_SERVER}\\EC_EAFRepository\\${params.EAF_ENVIRONMENT}\\DeploymentStorage\\Adaptation_${_AssemblyName}" + } + } + } + stage('Info') { + steps { + echo "BUILD_NUMBER ${env.BUILD_NUMBER}" // 11 + echo "JOB_NAME ${env.JOB_NAME}" // MET08RESIMAPCDE + echo "_AssemblyName ${_AssemblyName}" // YODA Viewer + echo "WORKSPACE ${env.WORKSPACE}" // D:\.jenkins\_\MET08RESIMAPCDE + echo "JENKINS_URL ${env.JENKINS_URL}" // http://localhost:8080/ + } + } + stage('Core Build') { + steps { + echo "Build number is ${currentBuild.number}" + dir(_TestProjectDirectory) { + bat(returnStatus: true, script: '"' + "${_ProgramFilesDotnet}" + '" ' + + 'build --runtime win-x64 --self-contained --verbosity quiet') + } + } + } + // stage('Test') { + // options { + // timeout(time: 10, unit: 'MINUTES') + // } + // steps { + // dir(_TestProjectDirectory) { + // bat('dotnet --info') + // } + // } + // } + stage('Framework Build') { + steps { + echo "Build number is ${currentBuild.number}" + bat(returnStatus: true, script: '"' + "${_ProgramFilesMSBuild}" + '" ' + + '/target:Restore ' + + '/detailedsummary ' + + '/consoleloggerparameters:PerformanceSummary;ErrorsOnly; ' + + '/property:Configuration=Debug;TargetFrameworkVersion=v4.8 ' + + _AssemblyName + '.csproj') + bat(returnStatus: true, script: '"' + "${_ProgramFilesMSBuild}" + '" ' + + '/target:Build ' + + '/detailedsummary ' + + '/consoleloggerparameters:PerformanceSummary;ErrorsOnly; ' + + '/property:Configuration=Debug;TargetFrameworkVersion=v4.8 ' + + _AssemblyName + '.csproj') + } + } + stage('Commit Id') { + steps { + dir('bin/Debug') { + writeFile file: "${_AssemblyName}.txt", text: "${env.GIT_COMMIT}-${env.BUILD_NUMBER}-${env.GIT_URL}" + } + } + } + stage('Package') { + steps { + fileOperations([fileZipOperation(folderPath: 'bin/Debug', outputFolderPath: "${_DDriveNet}/${_GitCommitSeven}-${env.BUILD_NUMBER}-${env.JOB_NAME}-Debug")]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*", renameFiles: false, sourceCaptureExpression: '', targetLocation: "${_DDriveNet}/${_GitCommitSeven}-${env.BUILD_NUMBER}-${env.JOB_NAME}-Debug", targetNameExpression: '')]) + } + } + // stage('Publish') { + // steps { + // bat(returnStatus: true, script: '"' + "${_ProgramFilesDotnet}" + '" ' + + // 'remove reference "../Client/' + "${env.JOB_NAME}" + '.Client.csproj"') + // bat(returnStatus: true, script: '"' + "${_ProgramFilesDotnet}" + '" ' + + // 'publish --configuration Release --runtime win-x64 --verbosity quiet ' + + // "--self-contained true --p:Version=6.0.202-${_GitCommitSeven}-${env.BUILD_NUMBER} -o " + + // '"' + "${_DDriveNet}/${_GitCommitSeven}-${env.BUILD_NUMBER}-${env.JOB_NAME}" + '"') + // } + // } + // stage('Force Fail') { + // steps { + // error("Build failed because of this and that..") + // } + // } + stage('Copy Files to: file-share') { + steps { + dir('bin/Debug') { + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.txt", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.dll", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.exe", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.pdb", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + } + } + } + } + post { + always { + dir('bin') { + deleteDir() + } + dir('obj') { + deleteDir() + } + dir(_TestProjectDirectory + '/bin') { + deleteDir() + } + dir(_TestProjectDirectory + '/obj') { + deleteDir() + } + } + } +} diff --git a/Adaptation/.editorconfig b/Adaptation/.editorconfig index a3ebdb2..d155153 100644 --- a/Adaptation/.editorconfig +++ b/Adaptation/.editorconfig @@ -1,137 +1,10 @@ -# Remove the line below if you want to inherit .editorconfig settings from higher directories -root = true - -# C# files [*.cs] - -#### Core EditorConfig Options #### - -# Indentation and spacing -indent_size = 4 -indent_style = space -tab_width = 4 - -# New line preferences -end_of_line = crlf -insert_final_newline = false - -#### .NET Coding Conventions #### - -# Organize usings -dotnet_separate_import_directive_groups = false -dotnet_sort_system_directives_first = false -file_header_template = unset - -# this. and Me. preferences -dotnet_style_qualification_for_event = false:error -dotnet_style_qualification_for_field = false -dotnet_style_qualification_for_method = false:error -dotnet_style_qualification_for_property = false:error - -# Language keywords vs BCL types preferences -dotnet_style_predefined_type_for_locals_parameters_members = true -dotnet_style_predefined_type_for_member_access = true - -# Parentheses preferences -dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity -dotnet_style_parentheses_in_other_binary_operators = always_for_clarity -dotnet_style_parentheses_in_other_operators = never_if_unnecessary -dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity - -# Modifier preferences -dotnet_style_require_accessibility_modifiers = for_non_interface_members - -# Expression-level preferences -dotnet_style_coalesce_expression = true -dotnet_style_collection_initializer = true:warning -dotnet_style_explicit_tuple_names = true:warning -dotnet_style_namespace_match_folder = true -dotnet_style_null_propagation = true:warning -dotnet_style_object_initializer = true:warning -dotnet_style_operator_placement_when_wrapping = beginning_of_line -dotnet_style_prefer_auto_properties = true:warning -dotnet_style_prefer_compound_assignment = true:warning -dotnet_style_prefer_conditional_expression_over_assignment = false -dotnet_style_prefer_conditional_expression_over_return = false -dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning -dotnet_style_prefer_inferred_tuple_names = true:warning -dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning -dotnet_style_prefer_simplified_boolean_expressions = true:warning -dotnet_style_prefer_simplified_interpolation = true - -# Field preferences -dotnet_style_readonly_field = true:warning - -# Parameter preferences -dotnet_code_quality_unused_parameters = all - -# Suppression preferences -dotnet_remove_unnecessary_suppression_exclusions = 0 - -# New line preferences -dotnet_style_allow_multiple_blank_lines_experimental = false:warning -dotnet_style_allow_statement_immediately_after_block_experimental = true - -#### C# Coding Conventions #### - -# var preferences -csharp_style_var_elsewhere = false:warning -csharp_style_var_for_built_in_types = false:warning -csharp_style_var_when_type_is_apparent = false:warning - -# Expression-bodied members -csharp_style_expression_bodied_accessors = when_on_single_line:warning -csharp_style_expression_bodied_constructors = when_on_single_line:warning -csharp_style_expression_bodied_indexers = when_on_single_line:warning -csharp_style_expression_bodied_lambdas = when_on_single_line:warning -csharp_style_expression_bodied_local_functions = when_on_single_line:warning -csharp_style_expression_bodied_methods = when_on_single_line:warning -csharp_style_expression_bodied_operators = when_on_single_line:warning -csharp_style_expression_bodied_properties = when_on_single_line:warning - -# Pattern matching preferences -csharp_style_pattern_matching_over_as_with_null_check = true:warning -csharp_style_pattern_matching_over_is_with_cast_check = true:warning -csharp_style_prefer_not_pattern = true:warning -csharp_style_prefer_pattern_matching = true:warning -csharp_style_prefer_switch_expression = true:warning - -# Null-checking preferences -csharp_style_conditional_delegate_call = true - -# Modifier preferences -csharp_prefer_static_local_function = true:warning -csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async - -# Code-block preferences -csharp_prefer_braces = false -csharp_prefer_simple_using_statement = true:warning -csharp_style_namespace_declarations = file_scoped:warning - -# Expression-level preferences -csharp_prefer_simple_default_expression = true:warning -csharp_style_deconstructed_variable_declaration = false -csharp_style_implicit_object_creation_when_type_is_apparent = true:warning -csharp_style_inlined_variable_declaration = false -csharp_style_pattern_local_over_anonymous_function = true:warning -csharp_style_prefer_index_operator = false:warning -csharp_style_prefer_null_check_over_type_check = true -csharp_style_prefer_range_operator = false:warning -csharp_style_throw_expression = true -csharp_style_unused_value_assignment_preference = discard_variable:warning -csharp_style_unused_value_expression_statement_preference = discard_variable:warning - -# 'using' directive preferences -csharp_using_directive_placement = outside_namespace - -# New line preferences -csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true -csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true -csharp_style_allow_embedded_statements_on_same_line_experimental = true - -#### C# Formatting Rules #### - -# New line preferences +csharp_indent_block_contents = true +csharp_indent_braces = false +csharp_indent_case_contents = true +csharp_indent_case_contents_when_block = true +csharp_indent_labels = one_less_than_current +csharp_indent_switch_labels = true csharp_new_line_before_catch = true csharp_new_line_before_else = true csharp_new_line_before_finally = true @@ -139,16 +12,13 @@ csharp_new_line_before_members_in_anonymous_types = true csharp_new_line_before_members_in_object_initializers = true csharp_new_line_before_open_brace = all csharp_new_line_between_query_expression_clauses = true - -# Indentation preferences -csharp_indent_block_contents = true -csharp_indent_braces = false -csharp_indent_case_contents = true -csharp_indent_case_contents_when_block = true -csharp_indent_labels = one_less_than_current -csharp_indent_switch_labels = true - -# Space preferences +csharp_prefer_braces = false +csharp_prefer_simple_default_expression = true:warning +csharp_prefer_simple_using_statement = true:warning +csharp_prefer_static_local_function = true:warning +csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async +csharp_preserve_single_line_blocks = true +csharp_preserve_single_line_statements = false csharp_space_after_cast = false csharp_space_after_colon_in_inheritance_clause = true csharp_space_after_comma = true @@ -171,166 +41,202 @@ csharp_space_between_method_declaration_name_and_open_parenthesis = false csharp_space_between_method_declaration_parameter_list_parentheses = false csharp_space_between_parentheses = false csharp_space_between_square_brackets = false - -# Wrapping preferences -csharp_preserve_single_line_blocks = true -csharp_preserve_single_line_statements = false - -#### Naming styles #### - -# Naming rules - -dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning -dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface -dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i - -dotnet_naming_rule.types_should_be_pascal_case.severity = warning -dotnet_naming_rule.types_should_be_pascal_case.symbols = types -dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.severity = warning -dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.symbols = private_or_internal_field -dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.style = private_of_internal_field - -dotnet_naming_rule.enum_should_be_pascal_case.severity = warning -dotnet_naming_rule.enum_should_be_pascal_case.symbols = enum -dotnet_naming_rule.enum_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.severity = warning -dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.symbols = public_or_protected_field -dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.style = private_of_internal_field - -dotnet_naming_rule.class_should_be_pascal_case.severity = warning -dotnet_naming_rule.class_should_be_pascal_case.symbols = class -dotnet_naming_rule.class_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.method_should_be_pascal_case.severity = warning -dotnet_naming_rule.method_should_be_pascal_case.symbols = method -dotnet_naming_rule.method_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.severity = warning -dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.symbols = private_or_internal_static_field -dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.style = private_of_internal_field - -dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning -dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field -dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.property_should_be_pascal_case.severity = warning -dotnet_naming_rule.property_should_be_pascal_case.symbols = property -dotnet_naming_rule.property_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.static_method_should_be_pascal_case.severity = warning -dotnet_naming_rule.static_method_should_be_pascal_case.symbols = static_method -dotnet_naming_rule.static_method_should_be_pascal_case.style = pascal_case - +csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true +csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true +csharp_style_allow_embedded_statements_on_same_line_experimental = true +csharp_style_conditional_delegate_call = true +csharp_style_deconstructed_variable_declaration = false +csharp_style_expression_bodied_accessors = when_on_single_line:warning +csharp_style_expression_bodied_constructors = when_on_single_line:warning +csharp_style_expression_bodied_indexers = when_on_single_line:warning +csharp_style_expression_bodied_lambdas = when_on_single_line:warning +csharp_style_expression_bodied_local_functions = when_on_single_line:warning +csharp_style_expression_bodied_methods = when_on_single_line:warning +csharp_style_expression_bodied_operators = when_on_single_line:warning +csharp_style_expression_bodied_properties = when_on_single_line:warning +csharp_style_implicit_object_creation_when_type_is_apparent = true:warning +csharp_style_inlined_variable_declaration = false +csharp_style_namespace_declarations = file_scoped:warning +csharp_style_pattern_local_over_anonymous_function = true:warning +csharp_style_pattern_matching_over_as_with_null_check = true:warning +csharp_style_pattern_matching_over_is_with_cast_check = true:warning +csharp_style_prefer_index_operator = false:warning +csharp_style_prefer_not_pattern = true:warning +csharp_style_prefer_null_check_over_type_check = true +csharp_style_prefer_pattern_matching = true:warning +csharp_style_prefer_range_operator = false:warning +csharp_style_prefer_switch_expression = true:warning +csharp_style_throw_expression = true +csharp_style_unused_value_assignment_preference = discard_variable:warning +csharp_style_unused_value_expression_statement_preference = discard_variable:warning +csharp_style_var_elsewhere = false:warning +csharp_style_var_for_built_in_types = false:warning +csharp_style_var_when_type_is_apparent = false:warning +csharp_using_directive_placement = outside_namespace +dotnet_code_quality_unused_parameters = all +dotnet_code_quality_unused_parameters = non_public # IDE0060: Remove unused parameter +dotnet_code_quality.CAXXXX.api_surface = private, internal +dotnet_diagnostic.CA1825.severity = warning # CA1823: Avoid zero-length array allocations +dotnet_diagnostic.CA1829.severity = warning # CA1829: Use Length/Count property instead of Count() when available +dotnet_diagnostic.CA1834.severity = warning # CA1834: Consider using 'StringBuilder.Append(char)' when applicable +dotnet_diagnostic.IDE0001.severity = warning # IDE0001: Simplify name +dotnet_diagnostic.IDE0002.severity = warning # Simplify (member access) System.Version.Equals("1", "2"); Version.Equals("1", "2"); +dotnet_diagnostic.IDE0005.severity = suggestion # Using directive is unnecessary using System.Text; +dotnet_diagnostic.IDE0060.severity = warning # IDE0060: Remove unused parameter dotnet_naming_rule.abstract_method_should_be_pascal_case.severity = warning -dotnet_naming_rule.abstract_method_should_be_pascal_case.symbols = abstract_method dotnet_naming_rule.abstract_method_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.private_method_should_be_pascal_case.severity = warning -dotnet_naming_rule.private_method_should_be_pascal_case.symbols = private_method -dotnet_naming_rule.private_method_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.event_should_be_pascal_case.severity = warning -dotnet_naming_rule.event_should_be_pascal_case.symbols = event -dotnet_naming_rule.event_should_be_pascal_case.style = pascal_case - +dotnet_naming_rule.abstract_method_should_be_pascal_case.symbols = abstract_method +dotnet_naming_rule.class_should_be_pascal_case.severity = warning +dotnet_naming_rule.class_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.class_should_be_pascal_case.symbols = class dotnet_naming_rule.delegate_should_be_pascal_case.severity = warning -dotnet_naming_rule.delegate_should_be_pascal_case.symbols = delegate dotnet_naming_rule.delegate_should_be_pascal_case.style = pascal_case - -dotnet_naming_rule.struct_should_be_pascal_case.severity = warning -dotnet_naming_rule.struct_should_be_pascal_case.symbols = struct -dotnet_naming_rule.struct_should_be_pascal_case.style = pascal_case - +dotnet_naming_rule.delegate_should_be_pascal_case.symbols = delegate +dotnet_naming_rule.enum_should_be_pascal_case.severity = warning +dotnet_naming_rule.enum_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.enum_should_be_pascal_case.symbols = enum +dotnet_naming_rule.event_should_be_pascal_case.severity = warning +dotnet_naming_rule.event_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.event_should_be_pascal_case.symbols = event +dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning +dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i +dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface +dotnet_naming_rule.method_should_be_pascal_case.severity = warning +dotnet_naming_rule.method_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.method_should_be_pascal_case.symbols = method dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning -dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case - -# Symbol specifications - -dotnet_naming_symbols.class.applicable_kinds = class -dotnet_naming_symbols.class.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.class.required_modifiers = - -dotnet_naming_symbols.interface.applicable_kinds = interface -dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.interface.required_modifiers = - -dotnet_naming_symbols.struct.applicable_kinds = struct -dotnet_naming_symbols.struct.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.struct.required_modifiers = - -dotnet_naming_symbols.enum.applicable_kinds = enum -dotnet_naming_symbols.enum.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.enum.required_modifiers = - -dotnet_naming_symbols.delegate.applicable_kinds = delegate -dotnet_naming_symbols.delegate.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.delegate.required_modifiers = - -dotnet_naming_symbols.event.applicable_kinds = event -dotnet_naming_symbols.event.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.event.required_modifiers = - -dotnet_naming_symbols.method.applicable_kinds = method -dotnet_naming_symbols.method.applicable_accessibilities = public -dotnet_naming_symbols.method.required_modifiers = - -dotnet_naming_symbols.private_method.applicable_kinds = method -dotnet_naming_symbols.private_method.applicable_accessibilities = private -dotnet_naming_symbols.private_method.required_modifiers = - -dotnet_naming_symbols.abstract_method.applicable_kinds = method -dotnet_naming_symbols.abstract_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.abstract_method.required_modifiers = abstract - -dotnet_naming_symbols.static_method.applicable_kinds = method -dotnet_naming_symbols.static_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.static_method.required_modifiers = static - -dotnet_naming_symbols.property.applicable_kinds = property -dotnet_naming_symbols.property.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.property.required_modifiers = - -dotnet_naming_symbols.public_or_protected_field.applicable_kinds = field -dotnet_naming_symbols.public_or_protected_field.applicable_accessibilities = public, protected -dotnet_naming_symbols.public_or_protected_field.required_modifiers = - -dotnet_naming_symbols.static_field.applicable_kinds = field -dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.static_field.required_modifiers = static - -dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field -dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected -dotnet_naming_symbols.private_or_internal_field.required_modifiers = - -dotnet_naming_symbols.private_or_internal_static_field.applicable_kinds = field -dotnet_naming_symbols.private_or_internal_static_field.applicable_accessibilities = internal, private, private_protected -dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = static - -dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum -dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.types.required_modifiers = - -dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method -dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected -dotnet_naming_symbols.non_field_members.required_modifiers = - -# Naming styles - -dotnet_naming_style.pascal_case.required_prefix = -dotnet_naming_style.pascal_case.required_suffix = -dotnet_naming_style.pascal_case.word_separator = -dotnet_naming_style.pascal_case.capitalization = pascal_case - +dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members +dotnet_naming_rule.private_method_should_be_pascal_case.severity = warning +dotnet_naming_rule.private_method_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.private_method_should_be_pascal_case.symbols = private_method +dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.severity = warning +dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.style = private_of_internal_field +dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.symbols = private_or_internal_field +dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.severity = warning +dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.style = private_of_internal_field +dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.symbols = private_or_internal_static_field +dotnet_naming_rule.property_should_be_pascal_case.severity = warning +dotnet_naming_rule.property_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.property_should_be_pascal_case.symbols = property +dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.severity = warning +dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.style = private_of_internal_field +dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.symbols = public_or_protected_field +dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning +dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field +dotnet_naming_rule.static_method_should_be_pascal_case.severity = warning +dotnet_naming_rule.static_method_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.static_method_should_be_pascal_case.symbols = static_method +dotnet_naming_rule.struct_should_be_pascal_case.severity = warning +dotnet_naming_rule.struct_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.struct_should_be_pascal_case.symbols = struct +dotnet_naming_rule.types_should_be_pascal_case.severity = warning +dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.types_should_be_pascal_case.symbols = types +dotnet_naming_style.begins_with_i.capitalization = pascal_case dotnet_naming_style.begins_with_i.required_prefix = I dotnet_naming_style.begins_with_i.required_suffix = dotnet_naming_style.begins_with_i.word_separator = -dotnet_naming_style.begins_with_i.capitalization = pascal_case - +dotnet_naming_style.pascal_case.capitalization = pascal_case +dotnet_naming_style.pascal_case.required_prefix = +dotnet_naming_style.pascal_case.required_suffix = +dotnet_naming_style.pascal_case.word_separator = +dotnet_naming_style.private_of_internal_field.capitalization = pascal_case dotnet_naming_style.private_of_internal_field.required_prefix = _ dotnet_naming_style.private_of_internal_field.required_suffix = dotnet_naming_style.private_of_internal_field.word_separator = -dotnet_naming_style.private_of_internal_field.capitalization = pascal_case +dotnet_naming_symbols.abstract_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.abstract_method.applicable_kinds = method +dotnet_naming_symbols.abstract_method.required_modifiers = abstract +dotnet_naming_symbols.class.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.class.applicable_kinds = class +dotnet_naming_symbols.class.required_modifiers = +dotnet_naming_symbols.delegate.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.delegate.applicable_kinds = delegate +dotnet_naming_symbols.delegate.required_modifiers = +dotnet_naming_symbols.enum.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.enum.applicable_kinds = enum +dotnet_naming_symbols.enum.required_modifiers = +dotnet_naming_symbols.event.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.event.applicable_kinds = event +dotnet_naming_symbols.event.required_modifiers = +dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.interface.applicable_kinds = interface +dotnet_naming_symbols.interface.required_modifiers = +dotnet_naming_symbols.method.applicable_accessibilities = public +dotnet_naming_symbols.method.applicable_kinds = method +dotnet_naming_symbols.method.required_modifiers = +dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method +dotnet_naming_symbols.non_field_members.required_modifiers = +dotnet_naming_symbols.private_method.applicable_accessibilities = private +dotnet_naming_symbols.private_method.applicable_kinds = method +dotnet_naming_symbols.private_method.required_modifiers = +dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected +dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field +dotnet_naming_symbols.private_or_internal_field.required_modifiers = +dotnet_naming_symbols.private_or_internal_static_field.applicable_accessibilities = internal, private, private_protected +dotnet_naming_symbols.private_or_internal_static_field.applicable_kinds = field +dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = static +dotnet_naming_symbols.property.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.property.applicable_kinds = property +dotnet_naming_symbols.property.required_modifiers = +dotnet_naming_symbols.public_or_protected_field.applicable_accessibilities = public, protected +dotnet_naming_symbols.public_or_protected_field.applicable_kinds = field +dotnet_naming_symbols.public_or_protected_field.required_modifiers = +dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.static_field.applicable_kinds = field +dotnet_naming_symbols.static_field.required_modifiers = static +dotnet_naming_symbols.static_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.static_method.applicable_kinds = method +dotnet_naming_symbols.static_method.required_modifiers = static +dotnet_naming_symbols.struct.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.struct.applicable_kinds = struct +dotnet_naming_symbols.struct.required_modifiers = +dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum +dotnet_naming_symbols.types.required_modifiers = +dotnet_remove_unnecessary_suppression_exclusions = 0 +dotnet_separate_import_directive_groups = false +dotnet_sort_system_directives_first = false +dotnet_style_allow_multiple_blank_lines_experimental = false:warning +dotnet_style_allow_statement_immediately_after_block_experimental = true +dotnet_style_coalesce_expression = true +dotnet_style_collection_initializer = true:warning +dotnet_style_explicit_tuple_names = true:warning +dotnet_style_namespace_match_folder = true +dotnet_style_null_propagation = true:warning +dotnet_style_object_initializer = true:warning +dotnet_style_operator_placement_when_wrapping = beginning_of_line +dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity +dotnet_style_parentheses_in_other_operators = never_if_unnecessary +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity +dotnet_style_predefined_type_for_locals_parameters_members = true +dotnet_style_predefined_type_for_member_access = true +dotnet_style_prefer_auto_properties = true:warning +dotnet_style_prefer_compound_assignment = true:warning +dotnet_style_prefer_conditional_expression_over_assignment = false +dotnet_style_prefer_conditional_expression_over_return = false +dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning +dotnet_style_prefer_inferred_tuple_names = true:warning +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning +dotnet_style_prefer_simplified_boolean_expressions = true:warning +dotnet_style_prefer_simplified_interpolation = true +dotnet_style_qualification_for_event = false:error +dotnet_style_qualification_for_field = false +dotnet_style_qualification_for_method = false:error +dotnet_style_qualification_for_property = false:error +dotnet_style_readonly_field = true:warning +dotnet_style_require_accessibility_modifiers = for_non_interface_members +end_of_line = crlf +file_header_template = unset +indent_size = 4 +indent_style = space +insert_final_newline = false +root = true +tab_width = 4 +# https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1822 +# https://github.com/dotnet/aspnetcore/blob/main/.editorconfig +# https://github.com/dotnet/project-system/blob/main/.editorconfig \ No newline at end of file diff --git a/Adaptation/Eaf/Management/ConfigurationData/CellAutomation/ModelObjectParameterDefinition.cs b/Adaptation/Eaf/Management/ConfigurationData/CellAutomation/ModelObjectParameterDefinition.cs index 067bf67..bdc8731 100644 --- a/Adaptation/Eaf/Management/ConfigurationData/CellAutomation/ModelObjectParameterDefinition.cs +++ b/Adaptation/Eaf/Management/ConfigurationData/CellAutomation/ModelObjectParameterDefinition.cs @@ -2,7 +2,7 @@ namespace Adaptation.Eaf.Management.ConfigurationData.CellAutomation; -[System.Runtime.Serialization.DataContractAttribute(IsReference = true)] +[System.Runtime.Serialization.DataContract(IsReference = true)] public class ModelObjectParameterDefinition : IConfigurationObject { @@ -13,15 +13,15 @@ public class ModelObjectParameterDefinition : IConfigurationObject public ModelObjectParameterDefinition(string name, ModelObjectParameterType valueType, object defaultValue) { } public ModelObjectParameterDefinition(string name, Type enumType, object defaultValue) { } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long Id { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual string Name { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual string Value { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual ModelObjectParameterType ValueType { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual string EnumType { get; set; } public virtual ModelObjectParameterDefinition Clone() => null; diff --git a/Adaptation/Eaf/Management/ConfigurationData/Semiconductor/CellInstances/SecsConnectionConfiguration.cs b/Adaptation/Eaf/Management/ConfigurationData/Semiconductor/CellInstances/SecsConnectionConfiguration.cs index bea5a40..b8c1bd3 100644 --- a/Adaptation/Eaf/Management/ConfigurationData/Semiconductor/CellInstances/SecsConnectionConfiguration.cs +++ b/Adaptation/Eaf/Management/ConfigurationData/Semiconductor/CellInstances/SecsConnectionConfiguration.cs @@ -3,41 +3,41 @@ using System; namespace Adaptation.Eaf.Management.ConfigurationData.Semiconductor.CellInstances; -[System.Runtime.Serialization.DataContractAttribute] +[System.Runtime.Serialization.DataContract] public class SecsConnectionConfiguration { public SecsConnectionConfiguration() { } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T6HsmsControlMessage { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T5ConnectionSeperation { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T4InterBlock { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T3MessageReply { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T2Protocol { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T1InterCharacter { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual SerialBaudRate? BaudRate { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual SecsTransportType? PortType { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long? Port { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan LinkTestTimer { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual string Host { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long? DeviceId { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual HsmsSessionMode? SessionMode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual HsmsConnectionMode? ConnectionMode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T7ConnectionIdle { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual TimeSpan T8NetworkIntercharacter { get; set; } } \ No newline at end of file diff --git a/Adaptation/FileHandlers/RsM/ProcessData.cs b/Adaptation/FileHandlers/RsM/ProcessData.cs index 63a1940..4fb9f83 100644 --- a/Adaptation/FileHandlers/RsM/ProcessData.cs +++ b/Adaptation/FileHandlers/RsM/ProcessData.cs @@ -165,12 +165,13 @@ public class ProcessData : IProcessData StandardDeviationPercentage = Math.Round(standardDeviation / average, 4).ToString("0.00%"); } - private void SetOperatorData(string[] segments) + private void SetOperatorData(IFileRead fileRead, string[] segments) { if (segments.Length > 1) Employee = segments[0]; if (segments.Length > 2) EquipId = segments[1]; + EquipId = fileRead.CellInstanceName; } private void SetEngineerData(string[] segments) @@ -203,29 +204,29 @@ public class ProcessData : IProcessData private void Parse(IFileRead fileRead, Logistics logistics, List fileInfoCollection) { - if (fileRead is null) - { } Lot = "LotID"; Detail detail; if (fileInfoCollection is null) { } + string[] segments; string timeFormat = "yyyyMMddHHmmss"; string[] separator = new string[] { " " }; string[] lines = File.ReadAllLines(logistics.ReportFullPath); for (int i = 0; i < lines.Length; i++) { + segments = lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries); if (lines[i].Contains(",")) - SetTitleData(lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries)); + SetTitleData(segments); else if (lines[i].Contains(",<FileName, Proj,Rcpe, LotID,WfrID>")) - SetFileNameData(lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries)); + SetFileNameData(segments); else if (lines[i].Contains(",<DateTime,Temp,TCR%,N|P>")) - SetDateTimeData(logistics, lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries)); + SetDateTimeData(logistics, segments); else if (lines[i].Contains(",<Operator, Epuipment>")) - SetOperatorData(lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries)); + SetOperatorData(fileRead, segments); else if (lines[i].Contains(",<Engineer>")) - SetEngineerData(lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries)); + SetEngineerData(segments); else if (lines[i].Contains(",<NumProbePoints, SingleOrDualProbeConfig, #ActPrbPts, Rsens,IdrvMx,VinGain, DataRejectSigma, MeritThreshold>")) - SetNumProbePointsData(lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries)); + SetNumProbePointsData(segments); else if (lines[i].Contains(",<R,Th,Data, Rs,RsA,RsB, #Smpl, x,y, Irng,Vrng,ChiSq,merit,DataIntegrity>")) { for (int z = i; z < lines.Length; z++) diff --git a/Adaptation/Ifx/Eaf/Common/Configuration/ConnectionSetting.cs b/Adaptation/Ifx/Eaf/Common/Configuration/ConnectionSetting.cs index 8cf469f..5a62594 100644 --- a/Adaptation/Ifx/Eaf/Common/Configuration/ConnectionSetting.cs +++ b/Adaptation/Ifx/Eaf/Common/Configuration/ConnectionSetting.cs @@ -1,6 +1,6 @@ namespace Adaptation.Ifx.Eaf.Common.Configuration; -[System.Runtime.Serialization.DataContractAttribute] +[System.Runtime.Serialization.DataContract] public class ConnectionSetting { @@ -9,9 +9,9 @@ public class ConnectionSetting public ConnectionSetting(string name, string value) { } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string Name { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string Value { get; set; } } \ No newline at end of file diff --git a/Adaptation/Ifx/Eaf/EquipmentConnector/File/Configuration/FileConnectorConfiguration.cs b/Adaptation/Ifx/Eaf/EquipmentConnector/File/Configuration/FileConnectorConfiguration.cs index 4e4aa83..05fe1cc 100644 --- a/Adaptation/Ifx/Eaf/EquipmentConnector/File/Configuration/FileConnectorConfiguration.cs +++ b/Adaptation/Ifx/Eaf/EquipmentConnector/File/Configuration/FileConnectorConfiguration.cs @@ -4,85 +4,85 @@ using System.Collections.Generic; namespace Adaptation.Ifx.Eaf.EquipmentConnector.File.Configuration; -[System.Runtime.Serialization.DataContractAttribute] +[System.Runtime.Serialization.DataContract] public class FileConnectorConfiguration { public const ulong IDLE_EVENT_WAIT_TIME_DEFAULT = 360; public const ulong FILE_HANDLE_TIMEOUT_DEFAULT = 15; - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual bool? TriggerOnChanged { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long? PostProcessingRetries { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual bool? CopySourceFolderStructure { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public IfPostProcessingFailsEnum? IfPostProcessingFailsAction { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string AlternateTargetFolder { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public long? FileHandleTimeout { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public bool? DeleteEmptySourceSubFolders { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public long? IdleEventWaitTimeInSeconds { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string FileAgeThreshold { get; set; } public bool? FolderAgeCheckIndividualSubFolders { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual ZipModeEnum? ZipMode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public FileAgeFilterEnum? FileAgeFilterMode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string ZipTargetFileName { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string ZipErrorTargetFileName { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public long? ZipFileSubFolderLevel { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string DefaultPlaceHolderValue { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public bool? UseZip64Mode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public List<ConnectionSetting> ConnectionSettings { get; set; } public string SourceDirectoryCloaking { get; set; } public string FolderAgeThreshold { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long? FileScanningIntervalInSeconds { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual bool? TriggerOnCreated { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long? ZipFileTime { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string SourceFileLocation { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string SourceFileFilter { get; set; } public List<string> SourceFileFilters { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual bool? IncludeSubDirectories { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual FileScanningOptionEnum? FileScanningOption { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string TargetFileLocation { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string ErrorTargetFileLocation { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string TargetFileName { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long? FileHandleWaitTime { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public IfFileExistEnum? IfFileExistAction { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public long? ConnectionRetryInterval { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public PreProcessingModeEnum? PreProcessingMode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public PostProcessingModeEnum? PostProcessingMode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public PostProcessingModeEnum? ErrorPostProcessingMode { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public virtual long? ZipFileAmount { get; set; } - [System.Runtime.Serialization.DataMemberAttribute] + [System.Runtime.Serialization.DataMember] public string ErrorTargetFileName { get; set; } public void Initialize() => throw new NotImplementedException(); diff --git a/Adaptation/MET08RESIMAPCDE.Tests.csproj b/Adaptation/MET08RESIMAPCDE.Tests.csproj index 5294b48..354001d 100644 --- a/Adaptation/MET08RESIMAPCDE.Tests.csproj +++ b/Adaptation/MET08RESIMAPCDE.Tests.csproj @@ -54,7 +54,7 @@ <PackageReference Include="System.Data.OleDb" Version="6.0.0" /> <PackageReference Include="System.Data.SqlClient" Version="4.8.3" /> <PackageReference Include="System.Drawing.Common" Version="6.0.0" /> - <PackageReference Include="System.Text.Json" Version="6.0.1" /> + <PackageReference Include="System.Text.Json" Version="6.0.3" /> </ItemGroup> <ItemGroup> <PackageReference Include="coverlet.collector" Version="3.1.1" /> diff --git a/Adaptation/Shared/Duplicator/Description.cs b/Adaptation/Shared/Duplicator/Description.cs index 04295ef..abbb7a4 100644 --- a/Adaptation/Shared/Duplicator/Description.cs +++ b/Adaptation/Shared/Duplicator/Description.cs @@ -6,7 +6,7 @@ using System.Text.Json; namespace Adaptation.Shared.Duplicator; -public class Description : IDescription, Shared.Properties.IDescription +public class Description : IDescription, Properties.IDescription { public int Test { get; set; } diff --git a/Adaptation/Shared/Metrology/WS.cs b/Adaptation/Shared/Metrology/WS.cs index d5e7e96..ae43eb9 100644 --- a/Adaptation/Shared/Metrology/WS.cs +++ b/Adaptation/Shared/Metrology/WS.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.IO; using System.Linq; using System.Net.Http; using System.Text; @@ -97,12 +98,12 @@ public partial class WS if (headerAttachments is not null) { foreach (Attachment attachment in headerAttachments) - AttachFile(url, headerID, "", System.IO.File.ReadAllBytes(attachment.SourceFileName), attachment.DestinationFileName); + AttachFile(url, headerID, "", File.ReadAllBytes(attachment.SourceFileName), attachment.DestinationFileName); } if (dataAttachments is not null) { foreach (Attachment attachment in dataAttachments) - AttachFile(url, headerID, attachment.UniqueId, System.IO.File.ReadAllBytes(attachment.SourceFileName), attachment.DestinationFileName); + AttachFile(url, headerID, attachment.UniqueId, File.ReadAllBytes(attachment.SourceFileName), attachment.DestinationFileName); } //MessageBox.Show(r.ToString()); } diff --git a/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE2.cs b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE2.cs new file mode 100644 index 0000000..275ed0e --- /dev/null +++ b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE2.cs @@ -0,0 +1,52 @@ +using Microsoft.Extensions.Logging; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Shared; +using System.Diagnostics; + +namespace _Tests.CreateSelfDescription.Staging.v2_43_0; + +[TestClass] +public class CDE2 : EAFLoggingUnitTesting +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + internal static CDE2 EAFLoggingUnitTesting { get; private set; } + + public CDE2() : base(testContext: null, declaringType: null, skipEquipmentDictionary: false) + { + if (EAFLoggingUnitTesting is null) + throw new Exception(); + } + + public CDE2(TestContext testContext) : base(testContext, new StackFrame().GetMethod().DeclaringType, skipEquipmentDictionary: false) + { + } + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + if (EAFLoggingUnitTesting is null) + EAFLoggingUnitTesting = new CDE2(testContext); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(testContext.TestName, " - ClassInitialize")); + string[] fileNameAndText = EAFLoggingUnitTesting.AdaptationTesting.GetCSharpText(testContext.TestName); + File.WriteAllText(fileNameAndText[0], fileNameAndText[1]); + File.WriteAllText(fileNameAndText[2], fileNameAndText[3]); + } + + [ClassCleanup()] + public static void ClassCleanup() + { + if (EAFLoggingUnitTesting.Logger is not null) + EAFLoggingUnitTesting.Logger.LogInformation("Cleanup"); + if (EAFLoggingUnitTesting is not null) + EAFLoggingUnitTesting.Dispose(); + } + + [TestMethod] + public void Staging__v2_43_0__CDE2__() + { + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE3-EQPT.cs b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE3-EQPT.cs new file mode 100644 index 0000000..0d5685f --- /dev/null +++ b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE3-EQPT.cs @@ -0,0 +1,58 @@ +using Microsoft.Extensions.Logging; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Shared; +using System.Diagnostics; +using System.Reflection; + +namespace _Tests.CreateSelfDescription.Staging.v2_43_0; + +[TestClass] +public class CDE3_EQPT : EAFLoggingUnitTesting +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + internal static CDE3_EQPT EAFLoggingUnitTesting { get; private set; } + + public CDE3_EQPT() : base(testContext: null, declaringType: null, skipEquipmentDictionary: false) + { + if (EAFLoggingUnitTesting is null) + throw new Exception(); + } + + public CDE3_EQPT(TestContext testContext) : base(testContext, new StackFrame().GetMethod().DeclaringType, skipEquipmentDictionary: false) + { + } + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + if (EAFLoggingUnitTesting is null) + EAFLoggingUnitTesting = new CDE3_EQPT(testContext); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(testContext.TestName, " - ClassInitialize")); + string[] fileNameAndText = EAFLoggingUnitTesting.AdaptationTesting.GetCSharpText(testContext.TestName); + File.WriteAllText(fileNameAndText[0], fileNameAndText[1]); + File.WriteAllText(fileNameAndText[2], fileNameAndText[3]); + } + + [ClassCleanup()] + public static void ClassCleanup() + { + if (EAFLoggingUnitTesting.Logger is not null) + EAFLoggingUnitTesting.Logger.LogInformation("Cleanup"); + if (EAFLoggingUnitTesting is not null) + EAFLoggingUnitTesting.Dispose(); + } + + [TestMethod] + public void Staging__v2_43_0__CDE3_EQPT__DownloadRsMFile() + { + string check = "WafrMeas.log|.RsM"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE3.cs b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE3.cs new file mode 100644 index 0000000..cc2a4cb --- /dev/null +++ b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE3.cs @@ -0,0 +1,58 @@ +using Microsoft.Extensions.Logging; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Shared; +using System.Diagnostics; +using System.Reflection; + +namespace _Tests.CreateSelfDescription.Staging.v2_43_0; + +[TestClass] +public class CDE3 : EAFLoggingUnitTesting +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + internal static CDE3 EAFLoggingUnitTesting { get; private set; } + + public CDE3() : base(testContext: null, declaringType: null, skipEquipmentDictionary: false) + { + if (EAFLoggingUnitTesting is null) + throw new Exception(); + } + + public CDE3(TestContext testContext) : base(testContext, new StackFrame().GetMethod().DeclaringType, skipEquipmentDictionary: false) + { + } + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + if (EAFLoggingUnitTesting is null) + EAFLoggingUnitTesting = new CDE3(testContext); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(testContext.TestName, " - ClassInitialize")); + string[] fileNameAndText = EAFLoggingUnitTesting.AdaptationTesting.GetCSharpText(testContext.TestName); + File.WriteAllText(fileNameAndText[0], fileNameAndText[1]); + File.WriteAllText(fileNameAndText[2], fileNameAndText[3]); + } + + [ClassCleanup()] + public static void ClassCleanup() + { + if (EAFLoggingUnitTesting.Logger is not null) + EAFLoggingUnitTesting.Logger.LogInformation("Cleanup"); + if (EAFLoggingUnitTesting is not null) + EAFLoggingUnitTesting.Dispose(); + } + + [TestMethod] + public void Staging__v2_43_0__CDE3__RsM() + { + string check = "*.RsM"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE5.cs b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE5.cs new file mode 100644 index 0000000..802e31b --- /dev/null +++ b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/CDE5.cs @@ -0,0 +1,52 @@ +using Microsoft.Extensions.Logging; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Shared; +using System.Diagnostics; + +namespace _Tests.CreateSelfDescription.Staging.v2_43_0; + +[TestClass] +public class CDE5 : EAFLoggingUnitTesting +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + internal static CDE5 EAFLoggingUnitTesting { get; private set; } + + public CDE5() : base(testContext: null, declaringType: null, skipEquipmentDictionary: false) + { + if (EAFLoggingUnitTesting is null) + throw new Exception(); + } + + public CDE5(TestContext testContext) : base(testContext, new StackFrame().GetMethod().DeclaringType, skipEquipmentDictionary: false) + { + } + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + if (EAFLoggingUnitTesting is null) + EAFLoggingUnitTesting = new CDE5(testContext); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(testContext.TestName, " - ClassInitialize")); + string[] fileNameAndText = EAFLoggingUnitTesting.AdaptationTesting.GetCSharpText(testContext.TestName); + File.WriteAllText(fileNameAndText[0], fileNameAndText[1]); + File.WriteAllText(fileNameAndText[2], fileNameAndText[3]); + } + + [ClassCleanup()] + public static void ClassCleanup() + { + if (EAFLoggingUnitTesting.Logger is not null) + EAFLoggingUnitTesting.Logger.LogInformation("Cleanup"); + if (EAFLoggingUnitTesting is not null) + EAFLoggingUnitTesting.Dispose(); + } + + [TestMethod] + public void Staging__v2_43_0__CDE5__() + { + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/MET08RESIMAPCDE.cs b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/MET08RESIMAPCDE.cs new file mode 100644 index 0000000..089d9cd --- /dev/null +++ b/Adaptation/_Tests/CreateSelfDescription/Staging/v2.43.0/MET08RESIMAPCDE.cs @@ -0,0 +1,138 @@ +using Microsoft.Extensions.Logging; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Shared; +using System.Diagnostics; +using System.Reflection; + +namespace _Tests.CreateSelfDescription.Staging.v2_43_0; + +[TestClass] +public class MET08RESIMAPCDE : EAFLoggingUnitTesting +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + internal static MET08RESIMAPCDE EAFLoggingUnitTesting { get; private set; } + + public MET08RESIMAPCDE() : base(testContext: null, declaringType: null, skipEquipmentDictionary: false) + { + if (EAFLoggingUnitTesting is null) + throw new Exception(); + } + + public MET08RESIMAPCDE(TestContext testContext) : base(testContext, new StackFrame().GetMethod().DeclaringType, skipEquipmentDictionary: false) + { + } + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + if (EAFLoggingUnitTesting is null) + EAFLoggingUnitTesting = new MET08RESIMAPCDE(testContext); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(testContext.TestName, " - ClassInitialize")); + string[] fileNameAndText = EAFLoggingUnitTesting.AdaptationTesting.GetCSharpText(testContext.TestName); + File.WriteAllText(fileNameAndText[0], fileNameAndText[1]); + File.WriteAllText(fileNameAndText[2], fileNameAndText[3]); + } + + [ClassCleanup()] + public static void ClassCleanup() + { + if (EAFLoggingUnitTesting.Logger is not null) + EAFLoggingUnitTesting.Logger.LogInformation("Cleanup"); + if (EAFLoggingUnitTesting is not null) + EAFLoggingUnitTesting.Dispose(); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE() + { + string check = "~IsXToOpenInsightMetrologyViewer"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_() + { + string check = "~IsXToIQSSi"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE__() + { + string check = "~IsXToOpenInsight"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE___() + { + string check = "~IsXToOpenInsightMetrologyViewerAttachments"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE____() + { + string check = "~IsXToAPC"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_____() + { + string check = "~IsXToSPaCe"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE______() + { + string check = "~IsXToArchive"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_______() + { + string check = "~IsArchive"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE________() + { + string check = "~IsDummy"; + MethodBase methodBase = new StackFrame().GetMethod(); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); + _ = Helpers.Metrology.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); + EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit")); + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE2.cs b/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE2.cs new file mode 100644 index 0000000..e69de29 diff --git a/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE3-EQPT.cs b/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE3-EQPT.cs new file mode 100644 index 0000000..c2d1da8 --- /dev/null +++ b/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE3-EQPT.cs @@ -0,0 +1,24 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace _Tests.Extract.Staging.v2_43_0; + +[TestClass] +public class CDE3_EQPT +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + private static CreateSelfDescription.Staging.v2_43_0.CDE3_EQPT _CDE3_EQPT; + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + CreateSelfDescription.Staging.v2_43_0.CDE3_EQPT.ClassInitialize(testContext); + _CDE3_EQPT = CreateSelfDescription.Staging.v2_43_0.CDE3_EQPT.EAFLoggingUnitTesting; + } + + [TestMethod] + public void Staging__v2_43_0__CDE3_EQPT__DownloadRsMFile() => _CDE3_EQPT.Staging__v2_43_0__CDE3_EQPT__DownloadRsMFile(); + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE3.cs b/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE3.cs new file mode 100644 index 0000000..56f5832 --- /dev/null +++ b/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE3.cs @@ -0,0 +1,70 @@ +using Adaptation.Shared; +using Adaptation.Shared.Methods; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using System.Diagnostics; +using System.Reflection; + +namespace _Tests.Extract.Staging.v2_43_0; + +[TestClass] +public class CDE3 +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + private static CreateSelfDescription.Staging.v2_43_0.CDE3 _CDE3; + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + CreateSelfDescription.Staging.v2_43_0.CDE3.ClassInitialize(testContext); + _CDE3 = CreateSelfDescription.Staging.v2_43_0.CDE3.EAFLoggingUnitTesting; + } + + [TestMethod] + public void Staging__v2_43_0__CDE3__RsM() => _CDE3.Staging__v2_43_0__CDE3__RsM(); + + [TestMethod] + public void Staging__v2_43_0__CDE3__RsM643047560320000000__Normal() + { + DateTime dateTime; + string check = "*.RsM"; + _CDE3.Staging__v2_43_0__CDE3__RsM(); + MethodBase methodBase = new StackFrame().GetMethod(); + string[] variables = _CDE3.AdaptationTesting.GetVariables(methodBase, check); + IFileRead fileRead = _CDE3.AdaptationTesting.Get(methodBase, sourceFileLocation: variables[2], sourceFileFilter: variables[3], useCyclicalForDescription: false); + Logistics logistics = new(fileRead); + string extractResultItem1 = Helpers.Metrology.ReExtractComapareUpdatePassDirectory(variables, fileRead, logistics, validatePDSF: false); + dateTime = Adaptation.FileHandlers.RsM.ProcessData.GetDateTime(logistics, string.Empty); + Assert.IsTrue(dateTime == logistics.DateTimeFromSequence); + dateTime = Adaptation.FileHandlers.RsM.ProcessData.GetDateTime(logistics, "00:13 09/27/38"); + Assert.IsTrue(dateTime == logistics.DateTimeFromSequence); + string logBody = @" +RUN [59-478796-3978.1] +Recipe LSL_6in \ WACKER2 RESISTIVITY #### +EQUIP# CDE3 Engineer Engineer +LotID LotID D.L.RATIO #.#### +OPERATOR Operator TEMP 19.4 00:13 09/27/38 +AutoOptimizeGain = ### AutoProbeHeightSet = ## +DataReject > #.#Sigma +0 ..\LSL_6in.prj\WACKER2.rcp\8927A117.RsM 00:13 09/27/38 +pt# R Th Rs[Ohm/sq@T] Merit +1 65.0 -44.5 577.7672 77.80 +2 32.5 -44.5 572.4527 103.00 +3 0.0 0.5 581.8071 108.00 +4 -32.5 -44.5 576.9838 93.00 +5 -65.0 -44.5 577.0866 69.80 +Avg = 577.219 0.58% SEMI Radial= #.##% + "; + bool logBodyCheck = logBody.Trim() == extractResultItem1.Trim(); + if (!logBodyCheck) + { + _ = Process.Start("explorer.exe", variables[5]); + File.WriteAllText(Path.Combine(variables[5], "0.log"), logBody.Trim()); + File.WriteAllText(Path.Combine(variables[5], "1.log"), extractResultItem1.Trim()); + } + Assert.IsTrue(logBodyCheck, "Log Body doesn't match!"); + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE5.cs b/Adaptation/_Tests/Extract/Staging/v2.43.0/CDE5.cs new file mode 100644 index 0000000..e69de29 diff --git a/Adaptation/_Tests/Extract/Staging/v2.43.0/MET08RESIMAPCDE.cs b/Adaptation/_Tests/Extract/Staging/v2.43.0/MET08RESIMAPCDE.cs new file mode 100644 index 0000000..91ba7fe --- /dev/null +++ b/Adaptation/_Tests/Extract/Staging/v2.43.0/MET08RESIMAPCDE.cs @@ -0,0 +1,64 @@ +using Adaptation.Shared; +using Adaptation.Shared.Methods; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using System.Diagnostics; +using System.Reflection; + +namespace _Tests.Extract.Staging.v2_43_0; + +[TestClass] +public class MET08RESIMAPCDE +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + private static CreateSelfDescription.Staging.v2_43_0.MET08RESIMAPCDE _MET08RESIMAPCDE; + + [ClassInitialize] + public static void ClassInitialize(TestContext testContext) + { + CreateSelfDescription.Staging.v2_43_0.MET08RESIMAPCDE.ClassInitialize(testContext); + _MET08RESIMAPCDE = CreateSelfDescription.Staging.v2_43_0.MET08RESIMAPCDE.EAFLoggingUnitTesting; + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE637710931421087642__Normal() + { + string check = "~IsXToOpenInsightMetrologyViewer"; + MethodBase methodBase = new StackFrame().GetMethod(); + _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE(); + string[] variables = _MET08RESIMAPCDE.AdaptationTesting.GetVariables(methodBase, check); + IFileRead fileRead = _MET08RESIMAPCDE.AdaptationTesting.Get(methodBase, sourceFileLocation: variables[2], sourceFileFilter: variables[3], useCyclicalForDescription: false); + Logistics logistics = new(fileRead); + _ = Helpers.Metrology.ReExtractComapareUpdatePassDirectory(variables, fileRead, logistics); + } + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE__() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE__(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE___() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE___(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE____() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE____(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_____() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_____(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE______() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE______(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_______() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE_______(); + + [TestMethod] + public void Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE________() => _MET08RESIMAPCDE.Staging__v2_43_0__MET08RESIMAPCDE__MET08RESIMAPCDE________(); + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Helpers/Metrology.cs b/Adaptation/_Tests/Helpers/Metrology.cs index d397324..c059318 100644 --- a/Adaptation/_Tests/Helpers/Metrology.cs +++ b/Adaptation/_Tests/Helpers/Metrology.cs @@ -76,17 +76,17 @@ public class Metrology DateTime dateTime = DateTime.Now; try { Directory.SetLastWriteTime(searchDirectory, dateTime); } - catch (System.Exception) { } + catch (Exception) { } string ticksDirectory = Path.GetDirectoryName(searchDirectory); try { Directory.SetLastWriteTime(ticksDirectory, dateTime); } - catch (System.Exception) { } + catch (Exception) { } string[] directories = Directory.GetDirectories(searchDirectory, "*", SearchOption.TopDirectoryOnly); foreach (string directory in directories) { try { Directory.SetLastWriteTime(directory, dateTime); } - catch (System.Exception) { } + catch (Exception) { } } } @@ -164,7 +164,7 @@ public class Metrology return result; } - internal static string ReExtractComapareUpdatePassDirectory(string[] variables, IFileRead fileRead, Logistics logistics) + internal static string ReExtractComapareUpdatePassDirectory(string[] variables, IFileRead fileRead, Logistics logistics, bool validatePDSF = true) { string result; Tuple<string, Test[], JsonElement[], List<FileInfo>> extractResult = fileRead.ReExtract(); @@ -173,14 +173,17 @@ public class Metrology Assert.IsNotNull(extractResult.Item4); Tuple<string, string[], string[]> pdsf = GetLogisticsColumnsAndBody(variables[2], variables[4]); Tuple<string, string[], string[]> pdsfNew = GetLogisticsColumnsAndBody(fileRead, logistics, extractResult, pdsf); - CompareSave(variables[5], pdsf, pdsfNew); - Assert.IsTrue(pdsf.Item1 == pdsfNew.Item1, "Item1 check!"); - string[] json = GetItem2(pdsf, pdsfNew); - CompareSaveJSON(variables[5], json); - Assert.IsTrue(json[0] == json[1], "Item2 check!"); - string[] join = GetItem3(pdsf, pdsfNew); - CompareSaveTSV(variables[5], join); - Assert.IsTrue(join[0] == join[1], "Item3 (Join) check!"); + if (validatePDSF) + { + CompareSave(variables[5], pdsf, pdsfNew); + Assert.IsTrue(pdsf.Item1 == pdsfNew.Item1, "Item1 check!"); + string[] json = GetItem2(pdsf, pdsfNew); + CompareSaveJSON(variables[5], json); + Assert.IsTrue(json[0] == json[1], "Item2 check!"); + string[] join = GetItem3(pdsf, pdsfNew); + CompareSaveTSV(variables[5], join); + Assert.IsTrue(join[0] == join[1], "Item3 (Join) check!"); + } UpdatePassDirectory(variables[2]); result = extractResult.Item1; return result; diff --git a/Adaptation/_Tests/Shared/AdaptationTesting.cs b/Adaptation/_Tests/Shared/AdaptationTesting.cs index ae60df3..22ca92e 100644 --- a/Adaptation/_Tests/Shared/AdaptationTesting.cs +++ b/Adaptation/_Tests/Shared/AdaptationTesting.cs @@ -341,7 +341,7 @@ public class AdaptationTesting : ISMTP { xml = XDocument.Load(url).ToString(); } - catch (System.Exception exception) + catch (Exception exception) { throw new Exception(string.Concat(url, System.Environment.NewLine, exception.Message)); } @@ -656,7 +656,7 @@ public class AdaptationTesting : ISMTP { xml = XDocument.Load(url).ToString(); } - catch (System.Exception exception) + catch (Exception exception) { throw new Exception(string.Concat(url, System.Environment.NewLine, exception.Message)); } @@ -777,7 +777,7 @@ public class AdaptationTesting : ISMTP { xml = XDocument.Load(url).ToString(); } - catch (System.Exception exception) + catch (Exception exception) { throw new Exception(string.Concat(url, System.Environment.NewLine, exception.Message)); } diff --git a/Adaptation/_Tests/Shared/IsEnvironment.cs b/Adaptation/_Tests/Shared/IsEnvironment.cs index d47716e..6135607 100644 --- a/Adaptation/_Tests/Shared/IsEnvironment.cs +++ b/Adaptation/_Tests/Shared/IsEnvironment.cs @@ -155,11 +155,11 @@ public class IsEnvironment { string result; if (isEnvironment.Windows) - result = nameof(IsEnvironment.Windows); + result = nameof(Windows); else if (isEnvironment.Linux) - result = nameof(IsEnvironment.Linux); + result = nameof(Linux); else if (isEnvironment.OSX) - result = nameof(IsEnvironment.OSX); + result = nameof(OSX); else throw new Exception(); return result; diff --git a/Adaptation/_Tests/Shared/Log/ConsoleLogger.cs b/Adaptation/_Tests/Shared/Log/ConsoleLogger.cs new file mode 100644 index 0000000..9cb544b --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/ConsoleLogger.cs @@ -0,0 +1,35 @@ +using Microsoft.Extensions.Logging; + +namespace Shared; + +public class ConsoleLogger : ILogger +{ + + public int EventId { get; set; } + + private readonly string _Name; + private readonly LogLevel _LogLevel; + + public ConsoleLogger(LogLevel logLevel, string name) + { + _Name = name; + EventId = 0; + _LogLevel = logLevel; + if (string.IsNullOrEmpty(_Name)) + { } + } + + public IDisposable BeginScope<TState>(TState state) => null; + + public bool IsEnabled(LogLevel logLevel) => logLevel >= _LogLevel; + + public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter) + { + if (IsEnabled(logLevel) && (EventId == 0 || EventId == eventId.Id)) + { + string message = formatter(state, null); + Console.WriteLine(message); + } + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/Log/ConsoleProvider.cs b/Adaptation/_Tests/Shared/Log/ConsoleProvider.cs new file mode 100644 index 0000000..2967940 --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/ConsoleProvider.cs @@ -0,0 +1,26 @@ +using Microsoft.Extensions.Logging; +using System.Collections.Concurrent; + +namespace Shared; + +public class ConsoleProvider : ILoggerProvider +{ + + private readonly LogLevel _LogLevel; + private readonly ConcurrentDictionary<string, ConsoleLogger> _Loggers; + + public ConsoleProvider(LogLevel logLevel) + { + _LogLevel = logLevel; + _Loggers = new ConcurrentDictionary<string, ConsoleLogger>(); + } + + public ILogger CreateLogger(string categoryName) => _Loggers.GetOrAdd(categoryName, name => new ConsoleLogger(_LogLevel, name)); + + public void Dispose() + { + _Loggers.Clear(); + GC.SuppressFinalize(this); + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/Log/DebugLogger.cs b/Adaptation/_Tests/Shared/Log/DebugLogger.cs new file mode 100644 index 0000000..a258fbf --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/DebugLogger.cs @@ -0,0 +1,35 @@ +using Microsoft.Extensions.Logging; + +namespace Shared; + +public class DebugLogger : ILogger +{ + + public int EventId { get; set; } + + private readonly string _Name; + private readonly LogLevel _LogLevel; + + public DebugLogger(LogLevel logLevel, string name) + { + _Name = name; + EventId = 0; + _LogLevel = logLevel; + if (string.IsNullOrEmpty(_Name)) + { } + } + + public IDisposable BeginScope<TState>(TState state) => null; + + public bool IsEnabled(LogLevel logLevel) => logLevel >= _LogLevel; + + public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter) + { + if (IsEnabled(logLevel) && (EventId == 0 || EventId == eventId.Id)) + { + string message = formatter(state, null); + System.Diagnostics.Debug.Print(message); + } + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/Log/DebugProvider.cs b/Adaptation/_Tests/Shared/Log/DebugProvider.cs new file mode 100644 index 0000000..5bed1d3 --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/DebugProvider.cs @@ -0,0 +1,26 @@ +using Microsoft.Extensions.Logging; +using System.Collections.Concurrent; + +namespace Shared; + +public class DebugProvider : ILoggerProvider +{ + + private readonly LogLevel _LogLevel; + private readonly ConcurrentDictionary<string, DebugLogger> _Loggers; + + public DebugProvider(LogLevel logLevel) + { + _LogLevel = logLevel; + _Loggers = new ConcurrentDictionary<string, DebugLogger>(); + } + + public ILogger CreateLogger(string categoryName) => _Loggers.GetOrAdd(categoryName, name => new DebugLogger(_LogLevel, name)); + + public void Dispose() + { + _Loggers.Clear(); + GC.SuppressFinalize(this); + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/Log/FeedbackLogger.cs b/Adaptation/_Tests/Shared/Log/FeedbackLogger.cs new file mode 100644 index 0000000..d9bcd96 --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/FeedbackLogger.cs @@ -0,0 +1,48 @@ +using Microsoft.Extensions.Logging; + +namespace Shared; + +public class FeedbackLogger : ILogger +{ + + public int EventId { get; set; } + + private readonly string _Name; + private readonly LogLevel _LogLevel; + private readonly IFeedback _Feedback; + + public FeedbackLogger(LogLevel logLevel, IFeedback feedback, string name) + { + _Feedback = feedback; + _Name = name; + EventId = 0; + _LogLevel = logLevel; + if (string.IsNullOrEmpty(_Name)) + { } + } + + public IDisposable BeginScope<TState>(TState state) => null; + + public bool IsEnabled(LogLevel logLevel) => logLevel >= _LogLevel; + + public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter) + { + if (IsEnabled(logLevel) && (EventId == 0 || EventId == eventId.Id)) + { + string message = formatter(state, null); + int color = logLevel switch + { + LogLevel.Trace => -1, + LogLevel.Debug => -1, + LogLevel.Information => -16776961, + LogLevel.Warning => -65281, + LogLevel.Error => -65536, + LogLevel.Critical => -65536, + LogLevel.None => -1, + _ => throw new Exception(), + }; + _Feedback.Print(message, color); + } + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/Log/FeedbackProvider.cs b/Adaptation/_Tests/Shared/Log/FeedbackProvider.cs new file mode 100644 index 0000000..cdb994e --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/FeedbackProvider.cs @@ -0,0 +1,28 @@ +using Microsoft.Extensions.Logging; +using System.Collections.Concurrent; + +namespace Shared; + +public class FeedbackProvider : ILoggerProvider +{ + + private readonly LogLevel _LogLevel; + private readonly IFeedback _Feedback; + private readonly ConcurrentDictionary<string, FeedbackLogger> _Loggers; + + public FeedbackProvider(LogLevel logLevel, IFeedback feedback) + { + _LogLevel = logLevel; + _Feedback = feedback; + _Loggers = new ConcurrentDictionary<string, FeedbackLogger>(); + } + + public ILogger CreateLogger(string categoryName) => _Loggers.GetOrAdd(categoryName, name => new FeedbackLogger(_LogLevel, _Feedback, name)); + + public void Dispose() + { + _Loggers.Clear(); + GC.SuppressFinalize(this); + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/Log/IFeedback.cs b/Adaptation/_Tests/Shared/Log/IFeedback.cs new file mode 100644 index 0000000..6430c3a --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/IFeedback.cs @@ -0,0 +1,9 @@ +namespace Shared; + +public interface IFeedback +{ + + List<string> Messages { get; } + void Print(string message, int color); + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/Log/Log.cs b/Adaptation/_Tests/Shared/Log/Log.cs new file mode 100644 index 0000000..c31c055 --- /dev/null +++ b/Adaptation/_Tests/Shared/Log/Log.cs @@ -0,0 +1,136 @@ +using Microsoft.Extensions.Logging; + +namespace Shared; + +public class Log +{ + +#pragma warning disable CA2254 +#pragma warning disable IDE0060 + + private readonly ILogger _Logger; + + public Log(ILogger logger) => _Logger = logger; + + public void Black(object message) => _Logger.LogInformation(message.ToString()); + public void Blue(object message) => _Logger.LogInformation(message.ToString()); + public void Gray(object message) => _Logger.LogInformation(message.ToString()); + public void Green(object message) => _Logger.LogInformation(message.ToString()); + public void Magenta(string message, Exception exception) => _Logger.LogWarning(message, exception); + public void Red(string message, Exception exception) => _Logger.LogError(message, exception); + public void White(object message) => _Logger.LogInformation(message.ToString()); + public void Yellow(string message, Exception exception) => _Logger.LogWarning(message, exception); + + // + + public void DoLog(LogLevel logLevel, EventId eventId, Exception exception, string message, params object[] args) => _Logger.Log(logLevel, eventId, exception, message, args); + public void DoLog(LogLevel logLevel, EventId eventId, string message, params object[] args) => _Logger.Log(logLevel, eventId, message, args); + public void DoLog(LogLevel logLevel, Exception exception, string message, params object[] args) => _Logger.Log(logLevel, exception, message, args); + public void DoLog(LogLevel logLevel, string message, params object[] args) => _Logger.Log(logLevel, message, args); + public void LogCritical(EventId eventId, Exception exception, string message, params object[] args) => _Logger.LogCritical(eventId, exception, message, args); + public void LogCritical(EventId eventId, string message, params object[] args) => _Logger.LogCritical(eventId, message, args); + public void LogCritical(Exception exception, string message, params object[] args) => _Logger.LogCritical(exception, message, args); + public void LogCritical(string message, params object[] args) => _Logger.LogCritical(message, args); + public void LogDebug(EventId eventId, Exception exception, string message, params object[] args) => _Logger.LogDebug(eventId, exception, message, args); + public void LogDebug(EventId eventId, string message, params object[] args) => _Logger.LogDebug(eventId, message, args); + public void LogDebug(Exception exception, string message, params object[] args) => _Logger.LogDebug(exception, message, args); + public void LogDebug(string message, params object[] args) => _Logger.LogDebug(message, args); + public void LogError(EventId eventId, Exception exception, string message, params object[] args) => _Logger.LogError(eventId, exception, message, args); + public void LogError(EventId eventId, string message, params object[] args) => _Logger.LogError(eventId, message, args); + public void LogError(Exception exception, string message, params object[] args) => _Logger.LogError(message, args); + public void LogError(string message, params object[] args) => _Logger.LogError(message, args); + public void LogInformation(EventId eventId, Exception exception, string message, params object[] args) => _Logger.LogInformation(eventId, exception, message, args); + public void LogInformation(EventId eventId, string message, params object[] args) => _Logger.LogInformation(eventId, message, args); + public void LogInformation(Exception exception, string message, params object[] args) => _Logger.LogInformation(exception, message, args); + public void LogInformation(string message, params object[] args) => _Logger.LogInformation(message, args); + public void LogTrace(EventId eventId, Exception exception, string message, params object[] args) => _Logger.LogTrace(eventId, exception, message, args); + public void LogTrace(EventId eventId, string message, params object[] args) => _Logger.LogTrace(eventId, message, args); + public void LogTrace(Exception exception, string message, params object[] args) => _Logger.LogTrace(exception, message, args); + public void LogTrace(string message, params object[] args) => _Logger.LogTrace(message, args); + public void LogWarning(EventId eventId, Exception exception, string message, params object[] args) => _Logger.LogWarning(eventId, exception, message, args); + public void LogWarning(EventId eventId, string message, params object[] args) => _Logger.LogWarning(eventId, message, args); + public void LogWarning(Exception exception, string message, params object[] args) => _Logger.LogWarning(exception, message, args); + public void LogWarning(string message, params object[] args) => _Logger.LogWarning(message, args); + + // + + public void Debug() => _Logger.LogDebug(string.Empty); + public void Debug(object message) => _Logger.LogDebug(message.ToString()); + public void Debug(string message, Exception exception) => _Logger.LogDebug(exception, message); + public void DebugFormat(IFormatProvider provider, string format, params object[] args) => _Logger.LogDebug(string.Format(provider, format, args)); + public void DebugFormat(string format, object arg0, object arg1, object arg2) => _Logger.LogDebug(string.Format(format, arg0, arg1, arg2)); + public void DebugFormat(string format, object arg0, object arg1) => _Logger.LogDebug(string.Format(format, arg0, arg1)); + public void DebugFormat(string format, object arg0) => _Logger.LogDebug(string.Format(format, arg0)); + public void DebugFormat(string format, params object[] args) => _Logger.LogDebug(string.Format(format, args)); + public void Error(object message) => _Logger.LogError(message.ToString()); + public void Error(string message, Exception exception) => _Logger.LogError(exception, message.ToString()); + public void ErrorFormat(IFormatProvider provider, string format, params object[] args) => _Logger.LogError(string.Format(provider, format, args)); + public void ErrorFormat(string format, object arg0, object arg1, object arg2) => _Logger.LogError(string.Format(format, arg0, arg1, arg2)); + public void ErrorFormat(string format, object arg0, object arg1) => _Logger.LogError(string.Format(format, arg0, arg1)); + public void ErrorFormat(string format, object arg0) => _Logger.LogError(string.Format(format, arg0)); + public void ErrorFormat(string format, params object[] args) => _Logger.LogError(string.Format(format, args)); + public void Fatal(object message) => _Logger.LogCritical(message.ToString()); + public void Fatal(string message, Exception exception) => _Logger.LogCritical(exception, message.ToString()); + public void FatalFormat(IFormatProvider provider, string format, params object[] args) => _Logger.LogCritical(string.Format(provider, format, args)); + public void FatalFormat(string format, object arg0, object arg1, object arg2) => _Logger.LogCritical(string.Format(format, arg0, arg1, arg2)); + public void FatalFormat(string format, object arg0, object arg1) => _Logger.LogCritical(string.Format(format, arg0, arg1)); + public void FatalFormat(string format, object arg0) => _Logger.LogCritical(string.Format(format, arg0)); + public void FatalFormat(string format, params object[] args) => _Logger.LogCritical(string.Format(format, args)); + public void Info(object message) => _Logger.LogInformation(message.ToString()); + public void Info(string message, Exception exception) => _Logger.LogInformation(exception, message.ToString()); + public void InfoFormat(IFormatProvider provider, string format, params object[] args) => _Logger.LogInformation(string.Format(provider, format, args)); + public void InfoFormat(string format, object arg0, object arg1, object arg2) => _Logger.LogInformation(string.Format(format, arg0, arg1, arg2)); + public void InfoFormat(string format, object arg0, object arg1) => _Logger.LogInformation(string.Format(format, arg0, arg1)); + public void InfoFormat(string format, object arg0) => _Logger.LogInformation(string.Format(format, arg0)); + public void InfoFormat(string format, params object[] args) => _Logger.LogInformation(string.Format(format, args)); + public void Warn(object message) => _Logger.LogWarning(message.ToString()); + public void Warn(string message, Exception exception) => _Logger.LogWarning(exception, message.ToString()); + public void WarnFormat(IFormatProvider provider, string format, params object[] args) => _Logger.LogWarning(string.Format(provider, format, args)); + public void WarnFormat(string format, object arg0, object arg1, object arg2) => _Logger.LogWarning(string.Format(format, arg0, arg1, arg2)); + public void WarnFormat(string format, object arg0, object arg1) => _Logger.LogWarning(string.Format(format, arg0, arg1)); + public void WarnFormat(string format, object arg0) => _Logger.LogWarning(string.Format(format, arg0)); + public void WarnFormat(string format, params object[] args) => _Logger.LogWarning(string.Format(format, args)); + + public static string GetWorkingDirectory(string executingAssemblyName, string subDirectoryName) + { + string result = string.Empty; + string traceFile; + List<string> directories = new(); + Environment.SpecialFolder[] specialFolders = new Environment.SpecialFolder[] + { + Environment.SpecialFolder.LocalApplicationData, + Environment.SpecialFolder.ApplicationData, + Environment.SpecialFolder.History, + Environment.SpecialFolder.CommonApplicationData, + Environment.SpecialFolder.InternetCache + }; + foreach (Environment.SpecialFolder specialFolder in specialFolders) + directories.Add(Path.Combine(Environment.GetFolderPath(specialFolder), subDirectoryName, executingAssemblyName)); + foreach (string directory in directories) + { + for (int i = 1; i < 3; i++) + { + if (i == 1) + result = directory; + else + result = string.Concat("D", directory[1..]); + try + { + if (!Directory.Exists(result)) + _ = Directory.CreateDirectory(result); + traceFile = string.Concat(result, @"\", DateTime.Now.Ticks, ".txt"); + File.WriteAllText(traceFile, traceFile); + File.Delete(traceFile); + break; + } + catch (Exception) { result = string.Empty; } + } + if (!string.IsNullOrEmpty(result)) + break; + } + if (string.IsNullOrEmpty(result)) + throw new Exception("Unable to set working directory!"); + return result; + } + +} \ No newline at end of file diff --git a/Adaptation/_Tests/Shared/LoggingUnitTesting.cs b/Adaptation/_Tests/Shared/LoggingUnitTesting.cs index 1f44068..2ea7bef 100644 --- a/Adaptation/_Tests/Shared/LoggingUnitTesting.cs +++ b/Adaptation/_Tests/Shared/LoggingUnitTesting.cs @@ -48,7 +48,7 @@ public class LoggingUnitTesting : UnitTesting, IDisposable configurationSection = _ConfigurationRoot.GetSection(section); if (configurationSection is null) logLevel = LogLevel.Debug; - else if (!Enum.TryParse<LogLevel>(configurationSection.Value, out logLevel)) + else if (!Enum.TryParse(configurationSection.Value, out logLevel)) logLevel = LogLevel.Debug; logLevels.Add(logLevel); } diff --git a/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/CellInstance.cs b/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/CellInstance.cs index 304f0b2..d7f251f 100644 --- a/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/CellInstance.cs +++ b/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/CellInstance.cs @@ -2,10 +2,10 @@ // NOTE: Generated code may require at least .NET Framework 4.5 or .NET Core/Standard 2.0. /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities", IsNullable = false)] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities", IsNullable = false)] public partial class CellInstanceVersion { @@ -13,13 +13,13 @@ public partial class CellInstanceVersion private string createdByField; - private System.DateTime creationDateField; + private DateTime creationDateField; private object descriptionField; private ExtensionsVersionExtension[] extensionsField; - private System.DateTime freezeDateField; + private DateTime freezeDateField; private string frozenByField; @@ -29,7 +29,7 @@ public partial class CellInstanceVersion private bool isRetiredField; - private System.DateTime retireDateField; + private DateTime retireDateField; private object retiredByField; @@ -56,7 +56,7 @@ public partial class CellInstanceVersion private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public string CreatedBy { @@ -65,16 +65,16 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - public System.DateTime CreationDate + public DateTime CreationDate { get => this.creationDateField; set => this.creationDateField = value; } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities", IsNullable = true)] public object Description { @@ -83,9 +83,9 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlArray(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - [System.Xml.Serialization.XmlArrayItemAttribute("VersionExtension", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("VersionExtension", IsNullable = false)] public ExtensionsVersionExtension[] Extensions { get => this.extensionsField; @@ -93,16 +93,16 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - public System.DateTime FreezeDate + public DateTime FreezeDate { get => this.freezeDateField; set => this.freezeDateField = value; } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public string FrozenBy { @@ -111,7 +111,7 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public long Id { @@ -120,7 +120,7 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public bool IsFrozen { @@ -129,7 +129,7 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public bool IsRetired { @@ -138,16 +138,16 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - public System.DateTime RetireDate + public DateTime RetireDate { get => this.retireDateField; set => this.retireDateField = value; } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities", IsNullable = true)] public object RetiredBy { @@ -184,7 +184,7 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("SelectedDeploymentPackage", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + + [System.Xml.Serialization.XmlArrayItem("SelectedDeploymentPackage", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + "nt", IsNullable = false)] public SelectedDeploymentPackage[] DeploymentPackages { @@ -200,7 +200,7 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("EquipmentConnectionSettings", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlArrayItem("EquipmentConnectionSettings", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances", IsNullable = false)] public EquipmentConnectionSettings[] EquipmentConnections { @@ -230,7 +230,7 @@ public partial class CellInstanceVersion } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -239,11 +239,11 @@ public partial class CellInstanceVersion } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + "nt")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + "nt", IsNullable = false)] public partial class SelectedDeploymentPackage { @@ -277,11 +277,11 @@ public partial class SelectedDeploymentPackage } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances", IsNullable = false)] public partial class EquipmentConnectionSettings { @@ -289,7 +289,7 @@ public partial class EquipmentConnectionSettings private string refField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Ref { get => this.refField; @@ -298,9 +298,9 @@ public partial class EquipmentConnectionSettings } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public partial class ExtensionsVersionExtension { @@ -327,7 +327,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + "s")] public string ClassName { @@ -336,7 +336,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + "s", IsNullable = true)] public object Configuration { @@ -345,7 +345,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + "s")] public string Name { @@ -354,7 +354,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tAutomationClient")] public object Editors { @@ -363,7 +363,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -371,7 +371,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute()] + [System.Xml.Serialization.XmlAttribute()] public string i___type { get => this.i___typeField; @@ -380,9 +380,9 @@ public partial class ExtensionsVersionExtension } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class CellInstanceVersionCellSetting { @@ -395,7 +395,7 @@ public partial class CellInstanceVersionCellSetting private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public long Id { @@ -404,7 +404,7 @@ public partial class CellInstanceVersionCellSetting } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public CellType CellType { @@ -413,7 +413,7 @@ public partial class CellInstanceVersionCellSetting } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public string Name { @@ -422,7 +422,7 @@ public partial class CellInstanceVersionCellSetting } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -431,11 +431,11 @@ public partial class CellInstanceVersionCellSetting } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances", IsNullable = false)] public partial class CellType { @@ -449,7 +449,7 @@ public partial class CellType private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public long Id { get => this.idField; @@ -457,7 +457,7 @@ public partial class CellType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Name { get => this.nameField; @@ -465,7 +465,7 @@ public partial class CellType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Version { get => this.versionField; @@ -473,7 +473,7 @@ public partial class CellType } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -482,9 +482,9 @@ public partial class CellType } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class CellInstanceVersionComponentModel { @@ -495,7 +495,7 @@ public partial class CellInstanceVersionComponentModel private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public long Id { @@ -504,9 +504,9 @@ public partial class CellInstanceVersionComponentModel } /// <remarks/> - [System.Xml.Serialization.XmlArrayAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlArray(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] - [System.Xml.Serialization.XmlArrayItemAttribute("CellComponent", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("CellComponent", IsNullable = false)] public ComponentsCellComponent[] Components { get => this.componentsField; @@ -514,7 +514,7 @@ public partial class CellInstanceVersionComponentModel } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -523,9 +523,9 @@ public partial class CellInstanceVersionComponentModel } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponent { @@ -545,7 +545,7 @@ public partial class ComponentsCellComponent private string idField; /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("CellComponent", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("CellComponent", IsNullable = false)] public ComponentsCellComponentCellComponent[] Children { get => this.childrenField; @@ -574,7 +574,7 @@ public partial class ComponentsCellComponent } /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("ComponentParameter", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("ComponentParameter", IsNullable = false)] public ComponentsCellComponentComponentParameter[] Parameters { get => this.parametersField; @@ -589,7 +589,7 @@ public partial class ComponentsCellComponent } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -598,9 +598,9 @@ public partial class ComponentsCellComponent } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentCellComponent { @@ -648,7 +648,7 @@ public partial class ComponentsCellComponentCellComponent } /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("ComponentParameter", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("ComponentParameter", IsNullable = false)] public ComponentsCellComponentCellComponentComponentParameter[] Parameters { get => this.parametersField; @@ -663,7 +663,7 @@ public partial class ComponentsCellComponentCellComponent } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -672,9 +672,9 @@ public partial class ComponentsCellComponentCellComponent } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentCellComponentEquipment { @@ -800,7 +800,7 @@ public partial class ComponentsCellComponentCellComponentEquipment private string i___typeField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public long Id { @@ -832,7 +832,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string AlternateTargetFolder { @@ -841,7 +841,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ConnectionRetryInterval { @@ -850,7 +850,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public ConnectionSettings ConnectionSettings { @@ -859,7 +859,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool CopySourceFolderStructure { @@ -868,7 +868,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string DefaultPlaceHolderValue { @@ -877,7 +877,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool DeleteEmptySourceSubFolders { @@ -886,7 +886,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorPostProcessingMode { @@ -895,7 +895,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorTargetFileLocation { @@ -904,7 +904,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorTargetFileName { @@ -913,7 +913,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileAgeFilterMode { @@ -922,7 +922,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileAgeThreshold { @@ -931,7 +931,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long FileHandleTimeout { @@ -940,7 +940,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long FileHandleWaitTime { @@ -949,7 +949,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public int FileScanningIntervalInSeconds { @@ -958,7 +958,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileScanningOption { @@ -967,7 +967,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public int IdleEventWaitTimeInSeconds { @@ -976,7 +976,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string IfFileExistAction { @@ -985,7 +985,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string IfPostProcessingFailsAction { @@ -994,7 +994,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool IncludeSubDirectories { @@ -1003,7 +1003,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string PostProcessingMode { @@ -1012,7 +1012,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long PostProcessingRetries { @@ -1021,7 +1021,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string PreProcessingMode { @@ -1030,7 +1030,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SkipSearchDirectoryNames { @@ -1039,7 +1039,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SourceFileFilter { @@ -1048,7 +1048,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SourceFileLocation { @@ -1057,7 +1057,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string TargetFileLocation { @@ -1066,7 +1066,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string TargetFileName { @@ -1075,7 +1075,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool TriggerOnChanged { @@ -1084,7 +1084,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool TriggerOnCreated { @@ -1093,7 +1093,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool UseZip64Mode { @@ -1102,7 +1102,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipErrorTargetFileName { @@ -1111,7 +1111,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileAmount { @@ -1120,7 +1120,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileSubFolderLevel { @@ -1129,7 +1129,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileTime { @@ -1138,7 +1138,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipMode { @@ -1147,7 +1147,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipTargetFileName { @@ -1156,7 +1156,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances")] public string BaudRate { @@ -1165,7 +1165,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances")] public string ConnectionMode { @@ -1174,7 +1174,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances")] public byte DeviceId { @@ -1183,7 +1183,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlIgnoreAttribute()] + [System.Xml.Serialization.XmlIgnore()] public bool DeviceIdSpecified { get => this.deviceIdFieldSpecified; @@ -1191,7 +1191,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances")] public string Host { @@ -1200,7 +1200,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string LinkTestTimer { @@ -1209,7 +1209,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances")] public ushort Port { @@ -1218,7 +1218,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlIgnoreAttribute()] + [System.Xml.Serialization.XmlIgnore()] public bool PortSpecified { get => this.portFieldSpecified; @@ -1226,7 +1226,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances")] public string PortType { @@ -1235,7 +1235,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances")] public string SessionMode { @@ -1244,7 +1244,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T1InterCharacter { @@ -1253,7 +1253,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T2Protocol { @@ -1262,7 +1262,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T3MessageReply { @@ -1271,7 +1271,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T4InterBlock { @@ -1280,7 +1280,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T5ConnectionSeperation { @@ -1289,7 +1289,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T6HsmsControlMessage { @@ -1298,7 +1298,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T7ConnectionIdle { @@ -1307,7 +1307,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Semicond" + "uctor.CellInstances", DataType = "duration")] public string T8NetworkIntercharacter { @@ -1316,7 +1316,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -1324,7 +1324,7 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute()] + [System.Xml.Serialization.XmlAttribute()] public string i___type { get => this.i___typeField; @@ -1333,9 +1333,9 @@ public partial class ComponentsCellComponentCellComponentEquipment } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentChildrenCellComponentEquipmentEquipmentDictionaries { @@ -1343,7 +1343,7 @@ public partial class ComponentsCellComponentChildrenCellComponentEquipmentEquipm private CellEquipmentDictionaryReference cellEquipmentDictionaryReferenceField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public CellEquipmentDictionaryReference CellEquipmentDictionaryReference { get => this.cellEquipmentDictionaryReferenceField; @@ -1352,10 +1352,10 @@ public partial class ComponentsCellComponentChildrenCellComponentEquipmentEquipm } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities", IsNullable = false)] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities", IsNullable = false)] public partial class CellEquipmentDictionaryReference { @@ -1389,7 +1389,7 @@ public partial class CellEquipmentDictionaryReference } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -1398,9 +1398,9 @@ public partial class CellEquipmentDictionaryReference } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentCellComponentEquipmentEquipmentType { @@ -1414,7 +1414,7 @@ public partial class ComponentsCellComponentCellComponentEquipmentEquipmentType private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public long Id { get => this.idField; @@ -1422,7 +1422,7 @@ public partial class ComponentsCellComponentCellComponentEquipmentEquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Name { get => this.nameField; @@ -1430,7 +1430,7 @@ public partial class ComponentsCellComponentCellComponentEquipmentEquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Version { get => this.versionField; @@ -1438,7 +1438,7 @@ public partial class ComponentsCellComponentCellComponentEquipmentEquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -1447,9 +1447,9 @@ public partial class ComponentsCellComponentCellComponentEquipmentEquipmentType } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentCellComponentComponentParameter { @@ -1469,7 +1469,7 @@ public partial class ComponentsCellComponentCellComponentComponentParameter private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation", IsNullable = true)] public object EnumType { @@ -1478,7 +1478,7 @@ public partial class ComponentsCellComponentCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public long Id { @@ -1487,7 +1487,7 @@ public partial class ComponentsCellComponentCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public string Name { @@ -1496,7 +1496,7 @@ public partial class ComponentsCellComponentCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public string Value { @@ -1505,7 +1505,7 @@ public partial class ComponentsCellComponentCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public string ValueType { @@ -1521,7 +1521,7 @@ public partial class ComponentsCellComponentCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -1530,9 +1530,9 @@ public partial class ComponentsCellComponentCellComponentComponentParameter } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentEquipment { @@ -1624,7 +1624,7 @@ public partial class ComponentsCellComponentEquipment private string i___typeField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public long Id { @@ -1654,7 +1654,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string AlternateTargetFolder { @@ -1663,7 +1663,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ConnectionRetryInterval { @@ -1672,7 +1672,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public ConnectionSettings ConnectionSettings { @@ -1681,7 +1681,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool CopySourceFolderStructure { @@ -1690,7 +1690,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string DefaultPlaceHolderValue { @@ -1699,7 +1699,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool DeleteEmptySourceSubFolders { @@ -1708,7 +1708,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorPostProcessingMode { @@ -1717,7 +1717,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorTargetFileLocation { @@ -1726,7 +1726,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorTargetFileName { @@ -1735,7 +1735,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileAgeFilterMode { @@ -1744,7 +1744,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileAgeThreshold { @@ -1753,7 +1753,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long FileHandleTimeout { @@ -1762,7 +1762,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long FileHandleWaitTime { @@ -1771,7 +1771,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public int FileScanningIntervalInSeconds { @@ -1780,7 +1780,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileScanningOption { @@ -1789,7 +1789,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public int IdleEventWaitTimeInSeconds { @@ -1798,7 +1798,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string IfFileExistAction { @@ -1807,7 +1807,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string IfPostProcessingFailsAction { @@ -1816,7 +1816,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool IncludeSubDirectories { @@ -1825,7 +1825,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string PostProcessingMode { @@ -1834,7 +1834,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long PostProcessingRetries { @@ -1843,7 +1843,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string PreProcessingMode { @@ -1852,7 +1852,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SkipSearchDirectoryNames { @@ -1861,7 +1861,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SourceFileFilter { @@ -1870,7 +1870,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SourceFileLocation { @@ -1879,7 +1879,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string TargetFileLocation { @@ -1888,7 +1888,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string TargetFileName { @@ -1897,7 +1897,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool TriggerOnChanged { @@ -1906,7 +1906,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool TriggerOnCreated { @@ -1915,7 +1915,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool UseZip64Mode { @@ -1924,7 +1924,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipErrorTargetFileName { @@ -1933,7 +1933,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileAmount { @@ -1942,7 +1942,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileSubFolderLevel { @@ -1951,7 +1951,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileTime { @@ -1960,7 +1960,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipMode { @@ -1969,7 +1969,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipTargetFileName { @@ -1978,7 +1978,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Ref { get => this.refField; @@ -1986,7 +1986,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -1994,7 +1994,7 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute()] + [System.Xml.Serialization.XmlAttribute()] public string i___type { get => this.i___typeField; @@ -2003,9 +2003,9 @@ public partial class ComponentsCellComponentEquipment } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentEquipmentEquipmentType { @@ -2019,7 +2019,7 @@ public partial class ComponentsCellComponentEquipmentEquipmentType private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public long Id { get => this.idField; @@ -2027,7 +2027,7 @@ public partial class ComponentsCellComponentEquipmentEquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Name { get => this.nameField; @@ -2035,7 +2035,7 @@ public partial class ComponentsCellComponentEquipmentEquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Version { get => this.versionField; @@ -2043,7 +2043,7 @@ public partial class ComponentsCellComponentEquipmentEquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -2052,9 +2052,9 @@ public partial class ComponentsCellComponentEquipmentEquipmentType } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public partial class ComponentsCellComponentComponentParameter { @@ -2074,7 +2074,7 @@ public partial class ComponentsCellComponentComponentParameter private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation", IsNullable = true)] public object EnumType { @@ -2083,7 +2083,7 @@ public partial class ComponentsCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public long Id { @@ -2092,7 +2092,7 @@ public partial class ComponentsCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public string Name { @@ -2101,7 +2101,7 @@ public partial class ComponentsCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public string Value { @@ -2110,7 +2110,7 @@ public partial class ComponentsCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public string ValueType { @@ -2126,7 +2126,7 @@ public partial class ComponentsCellComponentComponentParameter } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -2135,9 +2135,9 @@ public partial class ComponentsCellComponentComponentParameter } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class CellInstanceVersionEdaConnection { @@ -2160,7 +2160,7 @@ public partial class CellInstanceVersionEdaConnection private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public long Id { @@ -2169,7 +2169,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public int CheckInterval { get => this.checkIntervalField; @@ -2177,7 +2177,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public int ConnectionTimeout { get => this.connectionTimeoutField; @@ -2185,7 +2185,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA", IsNullable = true)] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA", IsNullable = true)] public object EdaClientProxyFactoryProviderName { get => this.edaClientProxyFactoryProviderNameField; @@ -2193,7 +2193,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public long MaxLostPings { get => this.maxLostPingsField; @@ -2201,7 +2201,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public string PortName { get => this.portNameField; @@ -2209,7 +2209,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public int PortNumber { get => this.portNumberField; @@ -2217,7 +2217,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public string SSLEnabled { get => this.sSLEnabledField; @@ -2225,7 +2225,7 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -2234,9 +2234,9 @@ public partial class CellInstanceVersionEdaConnection } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class CellInstanceVersionParentInstance { @@ -2272,7 +2272,7 @@ public partial class CellInstanceVersionParentInstance } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object CurrentHost { get => this.currentHostField; @@ -2287,7 +2287,7 @@ public partial class CellInstanceVersionParentInstance } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object Info { get => this.infoField; @@ -2309,7 +2309,7 @@ public partial class CellInstanceVersionParentInstance } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object StartTime { get => this.startTimeField; @@ -2324,7 +2324,7 @@ public partial class CellInstanceVersionParentInstance } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object StopTime { get => this.stopTimeField; @@ -2339,7 +2339,7 @@ public partial class CellInstanceVersionParentInstance } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object TargetHost { get => this.targetHostField; @@ -2347,7 +2347,7 @@ public partial class CellInstanceVersionParentInstance } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -2356,9 +2356,9 @@ public partial class CellInstanceVersionParentInstance } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class CellInstanceVersionEdaTraceHandling { @@ -2373,7 +2373,7 @@ public partial class CellInstanceVersionEdaTraceHandling private TraceSourcePrimaryPrioritiesConnection[] traceSourcePrimaryPrioritiesField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public long MaxParameterCollectionTimeDelta { get => this.maxParameterCollectionTimeDeltaField; @@ -2381,7 +2381,7 @@ public partial class CellInstanceVersionEdaTraceHandling } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA", IsNullable = true)] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA", IsNullable = true)] public object MergeStrategyClass { get => this.mergeStrategyClassField; @@ -2389,7 +2389,7 @@ public partial class CellInstanceVersionEdaTraceHandling } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public object MergeStrategyParameters { get => this.mergeStrategyParametersField; @@ -2397,7 +2397,7 @@ public partial class CellInstanceVersionEdaTraceHandling } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public long TraceCleanupDaemonInterval { get => this.traceCleanupDaemonIntervalField; @@ -2405,8 +2405,8 @@ public partial class CellInstanceVersionEdaTraceHandling } /// <remarks/> - [System.Xml.Serialization.XmlArrayAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] - [System.Xml.Serialization.XmlArrayItemAttribute("Connection", IsNullable = false)] + [System.Xml.Serialization.XmlArray(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] + [System.Xml.Serialization.XmlArrayItem("Connection", IsNullable = false)] public TraceSourcePrimaryPrioritiesConnection[] TraceSourcePrimaryPriorities { get => this.traceSourcePrimaryPrioritiesField; @@ -2415,9 +2415,9 @@ public partial class CellInstanceVersionEdaTraceHandling } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] public partial class TraceSourcePrimaryPrioritiesConnection { @@ -2506,7 +2506,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection private string i___typeField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public long Id { @@ -2515,7 +2515,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public object EquipmentDictionaries { @@ -2524,7 +2524,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public EquipmentType EquipmentType { @@ -2533,7 +2533,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] public string Name { @@ -2542,7 +2542,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string AlternateTargetFolder { @@ -2551,7 +2551,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ConnectionRetryInterval { @@ -2560,7 +2560,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public ConnectionSettings ConnectionSettings { @@ -2569,7 +2569,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool CopySourceFolderStructure { @@ -2578,7 +2578,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string DefaultPlaceHolderValue { @@ -2587,7 +2587,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool DeleteEmptySourceSubFolders { @@ -2596,7 +2596,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorPostProcessingMode { @@ -2605,7 +2605,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorTargetFileLocation { @@ -2614,7 +2614,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ErrorTargetFileName { @@ -2623,7 +2623,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileAgeFilterMode { @@ -2632,7 +2632,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileAgeThreshold { @@ -2641,7 +2641,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long FileHandleTimeout { @@ -2650,7 +2650,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long FileHandleWaitTime { @@ -2659,7 +2659,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public int FileScanningIntervalInSeconds { @@ -2668,7 +2668,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string FileScanningOption { @@ -2677,7 +2677,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public int IdleEventWaitTimeInSeconds { @@ -2686,7 +2686,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string IfFileExistAction { @@ -2695,7 +2695,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string IfPostProcessingFailsAction { @@ -2704,7 +2704,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool IncludeSubDirectories { @@ -2713,7 +2713,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string PostProcessingMode { @@ -2722,7 +2722,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long PostProcessingRetries { @@ -2731,7 +2731,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string PreProcessingMode { @@ -2740,7 +2740,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SkipSearchDirectoryNames { @@ -2749,7 +2749,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SourceFileFilter { @@ -2758,7 +2758,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string SourceFileLocation { @@ -2767,7 +2767,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string TargetFileLocation { @@ -2776,7 +2776,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string TargetFileName { @@ -2785,7 +2785,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool TriggerOnChanged { @@ -2794,7 +2794,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool TriggerOnCreated { @@ -2803,7 +2803,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public bool UseZip64Mode { @@ -2812,7 +2812,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipErrorTargetFileName { @@ -2821,7 +2821,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileAmount { @@ -2830,7 +2830,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileSubFolderLevel { @@ -2839,7 +2839,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public long ZipFileTime { @@ -2848,7 +2848,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipMode { @@ -2857,7 +2857,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] public string ZipTargetFileName { @@ -2866,7 +2866,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -2874,7 +2874,7 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute()] + [System.Xml.Serialization.XmlAttribute()] public string i___type { get => this.i___typeField; @@ -2883,11 +2883,11 @@ public partial class TraceSourcePrimaryPrioritiesConnection } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances", IsNullable = false)] public partial class EquipmentType { @@ -2901,7 +2901,7 @@ public partial class EquipmentType private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public long Id { get => this.idField; @@ -2909,7 +2909,7 @@ public partial class EquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Name { get => this.nameField; @@ -2917,7 +2917,7 @@ public partial class EquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public string Version { get => this.versionField; @@ -2925,7 +2925,7 @@ public partial class EquipmentType } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -2934,11 +2934,11 @@ public partial class EquipmentType } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities", IsNullable = false)] public partial class Extensions { @@ -2946,7 +2946,7 @@ public partial class Extensions private ExtensionsVersionExtension[] versionExtensionField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("VersionExtension")] + [System.Xml.Serialization.XmlElement("VersionExtension")] public ExtensionsVersionExtension[] VersionExtension { get => this.versionExtensionField; @@ -2955,11 +2955,11 @@ public partial class Extensions } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities.CellInstances", IsNullable = false)] public partial class Components { @@ -2967,7 +2967,7 @@ public partial class Components private ComponentsCellComponent[] cellComponentField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("CellComponent")] + [System.Xml.Serialization.XmlElement("CellComponent")] public ComponentsCellComponent[] CellComponent { get => this.cellComponentField; @@ -2976,17 +2976,17 @@ public partial class Components } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA", IsNullable = false)] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA")] +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.EDA", IsNullable = false)] public partial class TraceSourcePrimaryPriorities { private TraceSourcePrimaryPrioritiesConnection[] connectionField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Connection")] + [System.Xml.Serialization.XmlElement("Connection")] public TraceSourcePrimaryPrioritiesConnection[] Connection { get => this.connectionField; @@ -2995,11 +2995,11 @@ public partial class TraceSourcePrimaryPriorities } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.CellInstances", IsNullable = false)] public partial class ConnectionSettings { @@ -3009,7 +3009,7 @@ public partial class ConnectionSettings private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Setting", Namespace = "http://schemas.datacontract.org/2004/07/Ifx.ManagementInterfaceIfx.Common.Connect" + + [System.Xml.Serialization.XmlElement("Setting", Namespace = "http://schemas.datacontract.org/2004/07/Ifx.ManagementInterfaceIfx.Common.Connect" + "ionSettings")] public Setting[] Setting { @@ -3018,7 +3018,7 @@ public partial class ConnectionSettings } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -3027,11 +3027,11 @@ public partial class ConnectionSettings } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Ifx.ManagementInterfaceIfx.Common.Connect" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Ifx.ManagementInterfaceIfx.Common.Connect" + "ionSettings")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Ifx.ManagementInterfaceIfx.Common.Connect" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Ifx.ManagementInterfaceIfx.Common.Connect" + "ionSettings", IsNullable = false)] public partial class Setting { diff --git a/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentDictionary.cs b/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentDictionary.cs index e54c13c..4b66360 100644 --- a/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentDictionary.cs +++ b/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentDictionary.cs @@ -2,11 +2,11 @@ // NOTE: Generated code may require at least .NET Framework 4.5 or .NET Core/Standard 2.0. /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization", IsNullable = false)] public partial class EquipmentDictionaryVersion { @@ -17,7 +17,7 @@ public partial class EquipmentDictionaryVersion private string createdByField; - private System.DateTime creationDateField; + private DateTime creationDateField; private EquipmentDictionaryVersionDataItems dataItemsField; @@ -29,7 +29,7 @@ public partial class EquipmentDictionaryVersion private EquipmentDictionaryVersionEvents eventsField; - private System.DateTime freezeDateField; + private DateTime freezeDateField; private object frozenByField; @@ -43,7 +43,7 @@ public partial class EquipmentDictionaryVersion private EquipmentDictionaryVersionReports reportsField; - private System.DateTime retireDateField; + private DateTime retireDateField; private object retiredByField; @@ -68,7 +68,7 @@ public partial class EquipmentDictionaryVersion } /// <remarks/> - public System.DateTime CreationDate + public DateTime CreationDate { get => this.creationDateField; set => this.creationDateField = value; @@ -110,7 +110,7 @@ public partial class EquipmentDictionaryVersion } /// <remarks/> - public System.DateTime FreezeDate + public DateTime FreezeDate { get => this.freezeDateField; set => this.freezeDateField = value; @@ -159,7 +159,7 @@ public partial class EquipmentDictionaryVersion } /// <remarks/> - public System.DateTime RetireDate + public DateTime RetireDate { get => this.retireDateField; set => this.retireDateField = value; @@ -187,7 +187,7 @@ public partial class EquipmentDictionaryVersion } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -196,9 +196,9 @@ public partial class EquipmentDictionaryVersion } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionAlarms { @@ -208,7 +208,7 @@ public partial class EquipmentDictionaryVersionAlarms private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Alarm")] + [System.Xml.Serialization.XmlElement("Alarm")] public EquipmentDictionaryVersionAlarmsAlarm[] Alarm { get => this.alarmField; @@ -216,7 +216,7 @@ public partial class EquipmentDictionaryVersionAlarms } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -225,9 +225,9 @@ public partial class EquipmentDictionaryVersionAlarms } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionAlarmsAlarm { @@ -281,7 +281,7 @@ public partial class EquipmentDictionaryVersionAlarmsAlarm } /// <remarks/> - [System.Xml.Serialization.XmlIgnoreAttribute()] + [System.Xml.Serialization.XmlIgnore()] public bool IsVirtualSpecified { get => this.isVirtualFieldSpecified; @@ -317,7 +317,7 @@ public partial class EquipmentDictionaryVersionAlarmsAlarm } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -326,9 +326,9 @@ public partial class EquipmentDictionaryVersionAlarmsAlarm } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionDataItems { @@ -338,7 +338,7 @@ public partial class EquipmentDictionaryVersionDataItems private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Item")] + [System.Xml.Serialization.XmlElement("Item")] public EquipmentDictionaryVersionDataItemsItem[] Item { get => this.itemField; @@ -346,7 +346,7 @@ public partial class EquipmentDictionaryVersionDataItems } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -355,9 +355,9 @@ public partial class EquipmentDictionaryVersionDataItems } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionDataItemsItem { @@ -428,7 +428,7 @@ public partial class EquipmentDictionaryVersionDataItemsItem } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -437,9 +437,9 @@ public partial class EquipmentDictionaryVersionDataItemsItem } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionEquipmentSettings { @@ -449,7 +449,7 @@ public partial class EquipmentDictionaryVersionEquipmentSettings private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Setting")] + [System.Xml.Serialization.XmlElement("Setting")] public EquipmentDictionaryVersionEquipmentSettingsSetting[] Setting { get => this.settingField; @@ -457,7 +457,7 @@ public partial class EquipmentDictionaryVersionEquipmentSettings } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -466,9 +466,9 @@ public partial class EquipmentDictionaryVersionEquipmentSettings } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionEquipmentSettingsSetting { @@ -490,7 +490,7 @@ public partial class EquipmentDictionaryVersionEquipmentSettingsSetting private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object Context { get => this.contextField; @@ -540,7 +540,7 @@ public partial class EquipmentDictionaryVersionEquipmentSettingsSetting } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -549,9 +549,9 @@ public partial class EquipmentDictionaryVersionEquipmentSettingsSetting } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionEvents { @@ -561,7 +561,7 @@ public partial class EquipmentDictionaryVersionEvents private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Event")] + [System.Xml.Serialization.XmlElement("Event")] public EquipmentDictionaryVersionEventsEvent[] Event { get => this.eventField; @@ -569,7 +569,7 @@ public partial class EquipmentDictionaryVersionEvents } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -578,9 +578,9 @@ public partial class EquipmentDictionaryVersionEvents } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionEventsEvent { @@ -651,7 +651,7 @@ public partial class EquipmentDictionaryVersionEventsEvent } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -660,9 +660,9 @@ public partial class EquipmentDictionaryVersionEventsEvent } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionEventsEventValidDataItems { @@ -670,7 +670,7 @@ public partial class EquipmentDictionaryVersionEventsEventValidDataItems private string idField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -679,9 +679,9 @@ public partial class EquipmentDictionaryVersionEventsEventValidDataItems } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypes { @@ -691,7 +691,7 @@ public partial class EquipmentDictionaryVersionObjectTypes private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Type")] + [System.Xml.Serialization.XmlElement("Type")] public EquipmentDictionaryVersionObjectTypesType[] Type { get => this.typeField; @@ -699,7 +699,7 @@ public partial class EquipmentDictionaryVersionObjectTypes } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -708,9 +708,9 @@ public partial class EquipmentDictionaryVersionObjectTypes } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesType { @@ -737,7 +737,7 @@ public partial class EquipmentDictionaryVersionObjectTypesType } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object BaseType { get => this.baseTypeField; @@ -773,7 +773,7 @@ public partial class EquipmentDictionaryVersionObjectTypesType } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -782,9 +782,9 @@ public partial class EquipmentDictionaryVersionObjectTypesType } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeAlarms { @@ -792,7 +792,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeAlarms private string idField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -801,9 +801,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeAlarms } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeDataItems { @@ -813,7 +813,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItems private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Item")] + [System.Xml.Serialization.XmlElement("Item")] public EquipmentDictionaryVersionObjectTypesTypeDataItemsItem[] Item { get => this.itemField; @@ -821,7 +821,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItems } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -830,9 +830,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItems } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItem { @@ -867,7 +867,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItem } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -876,9 +876,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItem } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquipmentDataItems { @@ -888,7 +888,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquip private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Item")] + [System.Xml.Serialization.XmlElement("Item")] public EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquipmentDataItemsItem[] Item { get => this.itemField; @@ -896,7 +896,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquip } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -905,9 +905,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquip } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquipmentDataItemsItem { @@ -915,7 +915,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquip private string refField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Ref { get => this.refField; @@ -924,9 +924,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeDataItemsItemEquip } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeEvents { @@ -936,7 +936,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEvents private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Event")] + [System.Xml.Serialization.XmlElement("Event")] public EquipmentDictionaryVersionObjectTypesTypeEventsEvent[] Event { get => this.eventField; @@ -944,7 +944,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEvents } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -953,9 +953,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEvents } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEvent { @@ -990,7 +990,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEvent } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -999,9 +999,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEvent } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEventEquipmentEvents { @@ -1018,7 +1018,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEventEquipme } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -1027,9 +1027,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEventEquipme } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEventEquipmentEventsEvent { @@ -1037,7 +1037,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEventEquipme private string refField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Ref { get => this.refField; @@ -1046,9 +1046,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeEventsEventEquipme } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionObjectTypesTypeSettings { @@ -1056,7 +1056,7 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeSettings private string idField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -1065,9 +1065,9 @@ public partial class EquipmentDictionaryVersionObjectTypesTypeSettings } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionReports { @@ -1077,7 +1077,7 @@ public partial class EquipmentDictionaryVersionReports private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Report")] + [System.Xml.Serialization.XmlElement("Report")] public EquipmentDictionaryVersionReportsReport[] Report { get => this.reportField; @@ -1085,7 +1085,7 @@ public partial class EquipmentDictionaryVersionReports } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -1094,9 +1094,9 @@ public partial class EquipmentDictionaryVersionReports } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionReportsReport { @@ -1158,7 +1158,7 @@ public partial class EquipmentDictionaryVersionReportsReport } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -1167,9 +1167,9 @@ public partial class EquipmentDictionaryVersionReportsReport } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionReportsReportDataItems { @@ -1179,7 +1179,7 @@ public partial class EquipmentDictionaryVersionReportsReportDataItems private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Item")] + [System.Xml.Serialization.XmlElement("Item")] public EquipmentDictionaryVersionReportsReportDataItemsItem[] Item { get => this.itemField; @@ -1187,7 +1187,7 @@ public partial class EquipmentDictionaryVersionReportsReportDataItems } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -1196,9 +1196,9 @@ public partial class EquipmentDictionaryVersionReportsReportDataItems } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionReportsReportDataItemsItem { @@ -1206,7 +1206,7 @@ public partial class EquipmentDictionaryVersionReportsReportDataItemsItem private string refField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Ref { get => this.refField; @@ -1215,9 +1215,9 @@ public partial class EquipmentDictionaryVersionReportsReportDataItemsItem } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionReportsReportLinkEvents { @@ -1227,7 +1227,7 @@ public partial class EquipmentDictionaryVersionReportsReportLinkEvents private string idField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("Event")] + [System.Xml.Serialization.XmlElement("Event")] public EquipmentDictionaryVersionReportsReportLinkEventsEvent[] Event { get => this.eventField; @@ -1235,7 +1235,7 @@ public partial class EquipmentDictionaryVersionReportsReportLinkEvents } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -1244,9 +1244,9 @@ public partial class EquipmentDictionaryVersionReportsReportLinkEvents } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionReportsReportLinkEventsEvent { @@ -1254,7 +1254,7 @@ public partial class EquipmentDictionaryVersionReportsReportLinkEventsEvent private string refField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Ref { get => this.refField; @@ -1263,9 +1263,9 @@ public partial class EquipmentDictionaryVersionReportsReportLinkEventsEvent } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionReportsReportPreLinkedEvents { @@ -1273,7 +1273,7 @@ public partial class EquipmentDictionaryVersionReportsReportPreLinkedEvents private string idField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -1282,9 +1282,9 @@ public partial class EquipmentDictionaryVersionReportsReportPreLinkedEvents } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Equipmen" + "tCharacterization")] public partial class EquipmentDictionaryVersionValidityMapDataItemToEvent { diff --git a/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentType.cs b/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentType.cs index c5efa45..c3b7ef1 100644 --- a/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentType.cs +++ b/Adaptation/_Tests/Shared/PasteSpecialXml/EAF XML API/EquipmentType.cs @@ -2,10 +2,10 @@ // NOTE: Generated code may require at least .NET Framework 4.5 or .NET Core/Standard 2.0. /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities", IsNullable = false)] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities", IsNullable = false)] public partial class EquipmentTypeVersion { @@ -13,13 +13,13 @@ public partial class EquipmentTypeVersion private string createdByField; - private System.DateTime creationDateField; + private DateTime creationDateField; private object descriptionField; private ExtensionsVersionExtension[] extensionsField; - private System.DateTime freezeDateField; + private DateTime freezeDateField; private string frozenByField; @@ -29,7 +29,7 @@ public partial class EquipmentTypeVersion private bool isRetiredField; - private System.DateTime retireDateField; + private DateTime retireDateField; private object retiredByField; @@ -58,7 +58,7 @@ public partial class EquipmentTypeVersion private string i___typeField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public string CreatedBy { @@ -67,16 +67,16 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - public System.DateTime CreationDate + public DateTime CreationDate { get => this.creationDateField; set => this.creationDateField = value; } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities", IsNullable = true)] public object Description { @@ -85,9 +85,9 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlArray(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - [System.Xml.Serialization.XmlArrayItemAttribute("VersionExtension", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("VersionExtension", IsNullable = false)] public ExtensionsVersionExtension[] Extensions { get => this.extensionsField; @@ -95,16 +95,16 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - public System.DateTime FreezeDate + public DateTime FreezeDate { get => this.freezeDateField; set => this.freezeDateField = value; } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public string FrozenBy { @@ -113,7 +113,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public byte Id { @@ -122,7 +122,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public bool IsFrozen { @@ -131,7 +131,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public bool IsRetired { @@ -140,16 +140,16 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] - public System.DateTime RetireDate + public DateTime RetireDate { get => this.retireDateField; set => this.retireDateField = value; } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities", IsNullable = true)] public object RetiredBy { @@ -158,7 +158,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("SelectedDeploymentPackage", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + + [System.Xml.Serialization.XmlArrayItem("SelectedDeploymentPackage", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + "nt", IsNullable = false)] public SelectedDeploymentPackage[] DeploymentPackages { @@ -188,9 +188,9 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlArray(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] - [System.Xml.Serialization.XmlArrayItemAttribute("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlArrayItem("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation", IsNullable = false)] public ParameterizedModelObjectDefinition[] EquipmentComponents { @@ -199,9 +199,9 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlArray(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] - [System.Xml.Serialization.XmlArrayItemAttribute("EventActionSequenceDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlArrayItem("EventActionSequenceDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation", IsNullable = false)] public EventActionSequenceDefinition[] EventActionSequences { @@ -210,7 +210,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] public object FileCommunicatorObjectTypes { @@ -219,7 +219,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] public FileConfiguration FileConfiguration { @@ -228,7 +228,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] public FileHandlerObjectTypes FileHandlerObjectTypes { @@ -237,9 +237,9 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlArrayAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + + [System.Xml.Serialization.XmlArray(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] - [System.Xml.Serialization.XmlArrayItemAttribute("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlArrayItem("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation", IsNullable = false)] public ParameterizedModelObjectDefinition[] TransientEquipmentObjectTypes { @@ -248,7 +248,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -256,7 +256,7 @@ public partial class EquipmentTypeVersion } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute()] + [System.Xml.Serialization.XmlAttribute()] public string i___type { get => this.i___typeField; @@ -265,11 +265,11 @@ public partial class EquipmentTypeVersion } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + "nt")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Deployme" + "nt", IsNullable = false)] public partial class SelectedDeploymentPackage { @@ -303,9 +303,9 @@ public partial class SelectedDeploymentPackage } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] public partial class ExtensionsVersionExtension { @@ -330,7 +330,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + "s")] public string ClassName { @@ -339,7 +339,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + "s", IsNullable = true)] public object Configuration { @@ -348,7 +348,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.Backbone" + "s")] public string Name { @@ -357,7 +357,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -365,7 +365,7 @@ public partial class ExtensionsVersionExtension } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute()] + [System.Xml.Serialization.XmlAttribute()] public string i___type { get => this.i___typeField; @@ -374,9 +374,9 @@ public partial class ExtensionsVersionExtension } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class EquipmentTypeVersionDictionaries { @@ -391,9 +391,9 @@ public partial class EquipmentTypeVersionDictionaries } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class EquipmentTypeVersionDictionariesEquipmentTypeDictionaryReference { @@ -427,7 +427,7 @@ public partial class EquipmentTypeVersionDictionariesEquipmentTypeDictionaryRefe } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -436,9 +436,9 @@ public partial class EquipmentTypeVersionDictionariesEquipmentTypeDictionaryRefe } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.FactoryEntities")] public partial class EquipmentTypeVersionParentType { @@ -463,7 +463,7 @@ public partial class EquipmentTypeVersionParentType } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -472,11 +472,11 @@ public partial class EquipmentTypeVersionParentType } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation", IsNullable = false)] public partial class ParameterizedModelObjectDefinition { @@ -506,7 +506,7 @@ public partial class ParameterizedModelObjectDefinition } /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("ModelObjectParameterDefinition", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("ModelObjectParameterDefinition", IsNullable = false)] public ParameterizedModelObjectDefinitionModelObjectParameterDefinition[] Parameters { get => this.parametersField; @@ -521,7 +521,7 @@ public partial class ParameterizedModelObjectDefinition } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -530,9 +530,9 @@ public partial class ParameterizedModelObjectDefinition } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public partial class ParameterizedModelObjectDefinitionModelObjectParameterDefinition { @@ -550,7 +550,7 @@ public partial class ParameterizedModelObjectDefinitionModelObjectParameterDefin private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public string EnumType { get => this.enumTypeField; @@ -586,7 +586,7 @@ public partial class ParameterizedModelObjectDefinitionModelObjectParameterDefin } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -595,11 +595,11 @@ public partial class ParameterizedModelObjectDefinitionModelObjectParameterDefin } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation", IsNullable = false)] public partial class EventActionSequenceDefinition { @@ -615,7 +615,7 @@ public partial class EventActionSequenceDefinition private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("EventActionParameterDefinition", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("EventActionParameterDefinition", IsNullable = false)] public EventActionSequenceDefinitionEventActionParameterDefinition[] Actions { get => this.actionsField; @@ -644,7 +644,7 @@ public partial class EventActionSequenceDefinition } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -653,11 +653,11 @@ public partial class EventActionSequenceDefinition } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes", IsNullable = false)] public class FileConfiguration { @@ -665,7 +665,7 @@ public class FileConfiguration private string idField; /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id { get => this.idField; @@ -674,11 +674,11 @@ public class FileConfiguration } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes", IsNullable = false)] public class FileHandlerObjectTypes { @@ -686,7 +686,7 @@ public class FileHandlerObjectTypes private ParameterizedModelObjectDefinition parameterizedModelObjectDefinitionField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public ParameterizedModelObjectDefinition ParameterizedModelObjectDefinition { @@ -696,11 +696,11 @@ public class FileHandlerObjectTypes } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.FactoryE" + "ntities", IsNullable = false)] public partial class Extensions { @@ -708,7 +708,7 @@ public partial class Extensions private ExtensionsVersionExtension[] versionExtensionField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("VersionExtension")] + [System.Xml.Serialization.XmlElement("VersionExtension")] public ExtensionsVersionExtension[] VersionExtension { get => this.versionExtensionField; @@ -717,11 +717,11 @@ public partial class Extensions } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes", IsNullable = false)] public partial class EquipmentComponents { @@ -729,7 +729,7 @@ public partial class EquipmentComponents private ParameterizedModelObjectDefinition[] parameterizedModelObjectDefinitionField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public ParameterizedModelObjectDefinition[] ParameterizedModelObjectDefinition { @@ -739,11 +739,11 @@ public partial class EquipmentComponents } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes", IsNullable = false)] public partial class EventActionSequences { @@ -751,7 +751,7 @@ public partial class EventActionSequences private EventActionSequenceDefinition[] eventActionSequenceDefinitionField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("EventActionSequenceDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement("EventActionSequenceDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public EventActionSequenceDefinition[] EventActionSequenceDefinition { @@ -761,11 +761,11 @@ public partial class EventActionSequences } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes")] -[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + +[System.Xml.Serialization.XmlRoot(Namespace = "http://schemas.datacontract.org/2004/07/EafRuntimeIfx.ManagementInterfaceIfx.File" + "Connector.EquipmentTypes", IsNullable = false)] public partial class TransientEquipmentObjectTypes { @@ -773,7 +773,7 @@ public partial class TransientEquipmentObjectTypes private ParameterizedModelObjectDefinition[] parameterizedModelObjectDefinitionField; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + + [System.Xml.Serialization.XmlElement("ParameterizedModelObjectDefinition", Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public ParameterizedModelObjectDefinition[] ParameterizedModelObjectDefinition { @@ -783,9 +783,9 @@ public partial class TransientEquipmentObjectTypes } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public partial class EventActionSequenceDefinitionEventActionParameterDefinition { @@ -810,7 +810,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object Name { get => this.nameField; @@ -818,7 +818,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> - [System.Xml.Serialization.XmlArrayItemAttribute("ModelObjectParameterDefinition", IsNullable = false)] + [System.Xml.Serialization.XmlArrayItem("ModelObjectParameterDefinition", IsNullable = false)] public EventActionSequenceDefinitionEventActionParameterDefinitionModelObjectParameterDefinition[] Parameters { get => this.parametersField; @@ -840,7 +840,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; @@ -849,9 +849,9 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> -[System.SerializableAttribute()] -[System.ComponentModel.DesignerCategoryAttribute("code")] -[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + +[Serializable()] +[System.ComponentModel.DesignerCategory("code")] +[System.Xml.Serialization.XmlType(AnonymousType = true, Namespace = "http://schemas.datacontract.org/2004/07/Eaf.Management.ConfigurationData.CellAuto" + "mation")] public partial class EventActionSequenceDefinitionEventActionParameterDefinitionModelObjectParameterDefinition { @@ -879,7 +879,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition private string id1Field; /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object Category { get => this.categoryField; @@ -887,7 +887,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object Description { get => this.descriptionField; @@ -895,7 +895,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object DisplayName { get => this.displayNameField; @@ -903,7 +903,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> - [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] + [System.Xml.Serialization.XmlElement(IsNullable = true)] public object EnumType { get => this.enumTypeField; @@ -953,7 +953,7 @@ public partial class EventActionSequenceDefinitionEventActionParameterDefinition } /// <remarks/> - [System.Xml.Serialization.XmlAttributeAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] + [System.Xml.Serialization.XmlAttribute("Id", Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://schemas.microsoft.com/2003/10/Serialization/")] public string Id1 { get => this.id1Field; diff --git a/Adaptation/package.json b/Adaptation/package.json index 82c07db..584069a 100644 --- a/Adaptation/package.json +++ b/Adaptation/package.json @@ -1,23 +1,28 @@ { "scripts": { "Alpha": "ABCDEFGHIJKLMNOPQRSTUVWXYZ", + "nuget-clear": "dotnet nuget locals all --clear", "build": "dotnet build --runtime win-x64 --self-contained", + "build-Packagemanagement": "dotnet build --runtime win-x64 --self-contained --source https://packagemanagement.eu.infineon.com:4430/api/v2/", + "build-nuget-And-Packagemanagement": "dotnet build --runtime win-x64 --self-contained --source https://api.nuget.org/v3/index.json --source https://packagemanagement.eu.infineon.com:4430/api/v2/", + "build-All-Sources": "dotnet build --runtime win-x64 --self-contained --source https://api.nuget.org/v3/index.json --source https://packagemanagement.eu.infineon.com:4430/api/v2/ --source https://tfs.intra.infineon.com/tfs/ManufacturingIT/_packaging/eaf/nuget/v3/index.json --source http://192.168.0.73:5002/v3/index.json", "dotnet-format": "dotnet format --report .vscode --verbosity detailed --severity warn", + "MSBuild": "\"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\Msbuild\\Current\\Bin\\MSBuild.exe\" /target:Build /restore:True /p:RestoreSources=https://api.nuget.org/v3/index.json%3Bhttps://packagemanagement.eu.infineon.com:4430/api/v2/%3Bhttps://tfs.intra.infineon.com/tfs/ManufacturingIT/_packaging/eaf/nuget/v3/index.json /detailedsummary /consoleloggerparameters:PerformanceSummary;ErrorsOnly; /property:Configuration=Debug;TargetFrameworkVersion=v4.8 \"..\\MET08RESIMAPCDE.csproj\"", "pull": "git pull", "garbage-collect": "git gc", - "AA-CreateSelfDescription.Staging.v2_39_0-CDE3_EQPT-Staging__v2_39_0__CDE3_EQPT__DownloadRsMFile": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_39_0 & ClassName~CDE3_EQPT & Staging__v2_39_0__CDE3_EQPT__DownloadRsMFile\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "AT-CreateSelfDescription.Staging.v2_39_0-MET08RESIMAPCDE": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_39_0 & ClassName~MET08RESIMAPCDE\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "AV-CreateSelfDescription.Staging.v2_39_0-CDE2_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_39_0 & ClassName~CDE2_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "AW-CreateSelfDescription.Staging.v2_39_0-CDE2": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_39_0 & ClassName~CDE2\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "AX-CreateSelfDescription.Staging.v2_39_0-CDE3_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_39_0 & ClassName~CDE3_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "AY-CreateSelfDescription.Staging.v2_39_0-CDE3": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_39_0 & ClassName~CDE3\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "AZ-CreateSelfDescription.Staging.v2_39_0": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_39_0\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "BA-Extract.Staging.v2_39_0-CDE3-Staging__v2_39_0__CDE3__RsM643047560320000000__Normal": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_39_0 & ClassName~CDE3 & Staging__v2_39_0__CDE3__RsM643047560320000000__Normal\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "BT-Extract.Staging.v2_39_0-MET08RESIMAPCDE": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_39_0 & ClassName~MET08RESIMAPCDE\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "BV-Extract.Staging.v2_39_0-CDE2_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_39_0 & ClassName~CDE2_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "BW-Extract.Staging.v2_39_0-CDE2": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_39_0 & ClassName~CDE2\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "BX-Extract.Staging.v2_39_0-CDE3_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_39_0 & ClassName~CDE3_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "BY-Extract.Staging.v2_39_0-CDE3": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_39_0 & ClassName~CDE3\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", - "BZ-Extract.Staging.v2_39_0": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_39_0\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")" + "AA-CreateSelfDescription.Staging.v2_43_0-CDE3_EQPT-Staging__v2_43_0__CDE3_EQPT__DownloadRsMFile": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_43_0 & ClassName~CDE3_EQPT & Staging__v2_43_0__CDE3_EQPT__DownloadRsMFile\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "AT-CreateSelfDescription.Staging.v2_43_0-MET08RESIMAPCDE": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_43_0 & ClassName~MET08RESIMAPCDE\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "AV-CreateSelfDescription.Staging.v2_43_0-CDE2_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_43_0 & ClassName~CDE2_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "AW-CreateSelfDescription.Staging.v2_43_0-CDE2": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_43_0 & ClassName~CDE2\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "AX-CreateSelfDescription.Staging.v2_43_0-CDE3_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_43_0 & ClassName~CDE3_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "AY-CreateSelfDescription.Staging.v2_43_0-CDE3": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_43_0 & ClassName~CDE3\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "AZ-CreateSelfDescription.Staging.v2_43_0": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.CreateSelfDescription.Staging.v2_43_0\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "BA-Extract.Staging.v2_43_0-CDE3-Staging__v2_43_0__CDE3__RsM643047560320000000__Normal": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_43_0 & ClassName~CDE3 & Staging__v2_43_0__CDE3__RsM643047560320000000__Normal\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "BT-Extract.Staging.v2_43_0-MET08RESIMAPCDE": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_43_0 & ClassName~MET08RESIMAPCDE\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "BV-Extract.Staging.v2_43_0-CDE2_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_43_0 & ClassName~CDE2_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "BW-Extract.Staging.v2_43_0-CDE2": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_43_0 & ClassName~CDE2\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "BX-Extract.Staging.v2_43_0-CDE3_EQPT": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_43_0 & ClassName~CDE3_EQPT\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "BY-Extract.Staging.v2_43_0-CDE3": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_43_0 & ClassName~CDE3\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")", + "BZ-Extract.Staging.v2_43_0": "dotnet test --runtime win-x64 --no-build --filter \"FullyQualifiedName~_Tests.Extract.Staging.v2_43_0\" --% -- TestRunParameters.Parameter(name=\\\"Debug\\\", value=\\\"Debugger.IsAttached\\\")" } } \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b119502 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,153 @@ +#!/usr/bin/env groovy +import groovy.transform.Field + +@Field def _DDrive = 'D:/' +@Field def _AssemblyName = '...' +@Field def _NetVersion = 'net6.0' +@Field def _TargetLocation = '...' +@Field def _GitCommitSeven = '...' +@Field def _TestProjectDirectory = 'Adaptation' +@Field def _DDriveNet = "${_DDrive}${_NetVersion}" +@Field def _ProgramFilesDotnet = 'C:/Program Files/dotnet/dotnet.exe' +@Field def _ProgramFilesMSBuild = 'C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/MSBuild/Current/Bin/MSBuild.exe' + +pipeline { + agent any + parameters { + string(name: 'EAF_ENVIRONMENT', defaultValue: 'Staging', description: 'Environment for file-share') + string(name: 'DEFAULT_FILE_SERVER', defaultValue: 'messv02ecc1.ec.local', description: 'Default file server...') + } + stages { + // stage('Git') { + // steps { + // bat(returnStatus: true, script: 'git init') + // bat(returnStatus: true, script: 'git remote add origin \\\\mestsa07ec.ec.local\\Git\\MET08RESIMAPCDE.git') + // bat(returnStatus: true, script: 'git pull origin master') + // } + // } + stage('Setup') { + steps { + script { + _AssemblyName = "${env.JOB_NAME}" + _GitCommitSeven = "${env.GIT_COMMIT.substring(0, 7)}" + def files = findFiles(glob: '*.csproj') + if (files.length != 1) { + error("Build failed because couldn't find a *.csproj file") + } + echo """ + ${files[0].name} + ${files[0].path} + ${files[0].directory} + ${files[0].length} + ${files[0].lastModified} + """ + _AssemblyName = files[0].name.split('[.]csproj')[0] + _TargetLocation = "\\\\${params.DEFAULT_FILE_SERVER}\\EC_EAFRepository\\${params.EAF_ENVIRONMENT}\\DeploymentStorage\\Adaptation_${_AssemblyName}" + } + } + } + stage('Info') { + steps { + echo "BUILD_NUMBER ${env.BUILD_NUMBER}" // 11 + echo "JOB_NAME ${env.JOB_NAME}" // MET08RESIMAPCDE + echo "_AssemblyName ${_AssemblyName}" // YODA Viewer + echo "GIT_BRANCH ${env.GIT_BRANCH}" // origin/master + echo "WORKSPACE ${env.WORKSPACE}" // D:\.jenkins\_\MET08RESIMAPCDE + echo "JENKINS_URL ${env.JENKINS_URL}" // http://localhost:8080/ + echo "GIT_URL ${env.GIT_URL}" // D:\ProgramData\Git\MET08RESIMAPCDE.git + echo "GIT_COMMIT ${env.GIT_COMMIT}" // 73b814069f2cf0173a62a8228815a9bc9ba93c41 + } + } + stage('Core Build') { + steps { + echo "Build number is ${currentBuild.number}" + dir(_TestProjectDirectory) { + bat(returnStatus: true, script: '"' + "${_ProgramFilesDotnet}" + '" ' + + 'build --runtime win-x64 --self-contained --verbosity quiet') + } + } + } + // stage('Test') { + // options { + // timeout(time: 10, unit: 'MINUTES') + // } + // steps { + // dir(_TestProjectDirectory) { + // bat('dotnet --info') + // } + // } + // } + stage('Framework Build') { + steps { + echo "Build number is ${currentBuild.number}" + bat(returnStatus: true, script: '"' + "${_ProgramFilesMSBuild}" + '" ' + + '/target:Restore ' + + '/detailedsummary ' + + '/consoleloggerparameters:PerformanceSummary;ErrorsOnly; ' + + '/property:Configuration=Debug;TargetFrameworkVersion=v4.8 ' + + _AssemblyName + '.csproj') + bat(returnStatus: true, script: '"' + "${_ProgramFilesMSBuild}" + '" ' + + '/target:Build ' + + '/detailedsummary ' + + '/consoleloggerparameters:PerformanceSummary;ErrorsOnly; ' + + '/property:Configuration=Debug;TargetFrameworkVersion=v4.8 ' + + _AssemblyName + '.csproj') + } + } + stage('Commit Id') { + steps { + dir('bin/Debug') { + writeFile file: "${_AssemblyName}.txt", text: "${env.GIT_COMMIT}-${env.BUILD_NUMBER}-${env.GIT_URL}" + } + } + } + stage('Package') { + steps { + fileOperations([fileZipOperation(folderPath: 'bin/Debug', outputFolderPath: "${_DDriveNet}/${_GitCommitSeven}-${env.BUILD_NUMBER}-${env.JOB_NAME}-Debug")]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*", renameFiles: false, sourceCaptureExpression: '', targetLocation: "${_DDriveNet}/${_GitCommitSeven}-${env.BUILD_NUMBER}-${env.JOB_NAME}-Debug", targetNameExpression: '')]) + } + } + // stage('Publish') { + // steps { + // bat(returnStatus: true, script: '"' + "${_ProgramFilesDotnet}" + '" ' + + // 'remove reference "../Client/' + "${env.JOB_NAME}" + '.Client.csproj"') + // bat(returnStatus: true, script: '"' + "${_ProgramFilesDotnet}" + '" ' + + // 'publish --configuration Release --runtime win-x64 --verbosity quiet ' + + // "--self-contained true --p:Version=6.0.202-${_GitCommitSeven}-${env.BUILD_NUMBER} -o " + + // '"' + "${_DDriveNet}/${_GitCommitSeven}-${env.BUILD_NUMBER}-${env.JOB_NAME}" + '"') + // } + // } + // stage('Force Fail') { + // steps { + // error("Build failed because of this and that..") + // } + // } + stage('Copy Files to: file-share') { + steps { + dir('bin/Debug') { + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.txt", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.dll", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.exe", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + fileOperations([fileCopyOperation(excludes: '', flattenFiles: true, includes: "${_AssemblyName}*.pdb", renameFiles: false, sourceCaptureExpression: '', targetLocation: _TargetLocation, targetNameExpression: '')]) + } + } + } + } + post { + always { + dir('bin') { + deleteDir() + } + dir('obj') { + deleteDir() + } + dir(_TestProjectDirectory + '/bin') { + deleteDir() + } + dir(_TestProjectDirectory + '/obj') { + deleteDir() + } + cleanWs() + } + } +} diff --git a/MET08RESIMAPCDE.csproj b/MET08RESIMAPCDE.csproj index 1ac56ea..5e7457b 100644 --- a/MET08RESIMAPCDE.csproj +++ b/MET08RESIMAPCDE.csproj @@ -11,7 +11,10 @@ <RootNamespace>MET08RESIMAPCDE</RootNamespace> <AssemblyName>MET08RESIMAPCDE</AssemblyName> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion> + <RuntimeIdentifier>win-x86</RuntimeIdentifier> <FileAlignment>512</FileAlignment> + </PropertyGroup> + <PropertyGroup> <SccProjectName>SAK</SccProjectName> <SccLocalPath>SAK</SccLocalPath> <SccAuxPath>SAK</SccAuxPath> @@ -152,10 +155,10 @@ </ItemGroup> <ItemGroup> <PackageReference Include="Infineon.EAF.Runtime"> - <Version>2.39.2</Version> + <Version>2.43.0</Version> </PackageReference> <PackageReference Include="System.Text.Json"> - <Version>5.0.1</Version> + <Version>6.0.3</Version> </PackageReference> </ItemGroup> <ItemGroup />