Skip to content

Commit 6669ddb

Browse files
[Fix] MarkdownReportCommand
1 parent 072a60c commit 6669ddb

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

ECoreNetto.Reporting/Templates/ecore-to-html-docs.hbs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!--
2-
This HTML Report is generated using the ECoreNetto.Tools application
3-
The ECoreNetto.Toolsaaplication is copyright of Starion Group S.A.
2+
This HTML Report is generated using the ECoreNetto.Reporting library
3+
The ECoreNetto.Reporting library is copyright of Starion Group S.A.
44
Find it at: https://github.com/STARIONGROUP/EcoreNetto
5-
Find it at: https://www.nuget.org/packages/ECoreNetto.Tools
5+
Find it at: https://www.nuget.org/packages/ECoreNetto.Reporting
66
-->
77

88
<!DOCTYPE html>

ECoreNetto.Reporting/Templates/ecore-to-markdown-docs.hbs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!--
2-
This Markdown Report is generated using the ECoreNetto.Tools application
3-
The ECoreNetto.Tools application is copyright of Starion Group S.A.
2+
This Markdown Report is generated using the ECoreNetto.Reporting library
3+
The ECoreNetto.Reporting library is copyright of Starion Group S.A.
44
Find it at: https://github.com/STARIONGROUP/EcoreNetto
5-
Find it at: https://www.nuget.org/packages/ECoreNetto.Tools
5+
Find it at: https://www.nuget.org/packages/ECoreNetto.library
66
-->
77

88
## Model Information

ECoreNetto.Tools/Commands/MarkdownReportCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public MarkdownReportCommand() : base("md-report", "Generates a Markdown report
3939
var reportFileOption = new Option<FileInfo>(
4040
name: "--output-report",
4141
description: "The path to the markdown report file. Supported extensions are '.md'",
42-
getDefaultValue: () => new FileInfo("md-report.html"));
42+
getDefaultValue: () => new FileInfo("md-report.md"));
4343
reportFileOption.AddAlias("-o");
4444
reportFileOption.IsRequired = true;
4545
this.AddOption(reportFileOption);

ECoreNetto.Tools/ECoreNetto.Tools.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@
5555
<None Include="..\README.md" Pack="true" PackagePath="\" />
5656
</ItemGroup>
5757

58-
<ItemGroup>
59-
<Folder Include="Generators\" />
60-
</ItemGroup>
61-
6258
<ItemGroup>
6359
<ProjectReference Include="..\ECoreNetto.Reporting\ECoreNetto.Reporting.csproj" />
6460
</ItemGroup>

0 commit comments

Comments
 (0)