File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
CIM.Mapper/DAX.IO/DataModel Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -89,13 +89,15 @@ public static async Task<int> Main(string[] args)
8989 {
9090 var transSpec = config . GetTransformationSpecification ( transSpecName . Trim ( ) ) ;
9191 var transformer = config . InitializeDataTransformer ( transSpecName ) ;
92- transformer . TransferData ( ) ;
92+ var mappingGuide = transformer . TransferData ( ) ;
9393 await CheckForCIMProcessingAsync (
9494 serializerName ,
9595 outputFilePath ,
9696 config ,
9797 transformer )
9898 . ConfigureAwait ( false ) ;
99+
100+ Console . Out . WriteLine ( mappingGuide . TabbedTextReport ( ) ) ;
99101 }
100102 } ,
101103 transformationConfigurationFileOption ,
Original file line number Diff line number Diff line change @@ -120,15 +120,15 @@ public string TextReport()
120120
121121 foreach ( DataSetMappingGuide dsGuide in DataSetMappingGuides . Values )
122122 {
123- result += "Dataset: " + dsGuide . ClassName + ", count=" + dsGuide . Antal + "" ;
123+ result += "Dataset: " + dsGuide . ClassName ;
124124 if ( dsGuide . DataSetMapping != null )
125125 result += " -> " + dsGuide . DataSetMapping . OutputDataSet ;
126126 else
127127 result += " -> ?" ;
128128
129129 result += " " + dsGuide . GetMessageString ( ) ;
130130
131- result += "\r \n " ;
131+ result += " (count=" + dsGuide . Antal + ") \r \n ";
132132
133133
134134 foreach ( AttributeMappingGuide attrGuide in dsGuide . AttributeMappingGuides . Values )
You can’t perform that action at this time.
0 commit comments