Skip to content

Commit

Permalink
Fixed #87: Fixed history coverage file generation
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Mar 9, 2017
1 parent fdbba9d commit 95c99e9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ For further details take a look at LICENSE.txt.

CHANGELOG

2.5.6.0

* Fix: Issue #87: Fixed history coverage file generation

2.5.5.0

* Fix: Issue #85: Added new verbosity levels: Warning, Off
Expand Down
4 changes: 2 additions & 2 deletions ReportGenerator.Reporting/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.5.5.0")]
[assembly: AssemblyFileVersion("2.5.5.0")]
[assembly: AssemblyVersion("2.5.6.0")]
[assembly: AssemblyFileVersion("2.5.6.0")]

[assembly: CLSCompliant(true)]
4 changes: 2 additions & 2 deletions ReportGenerator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.5.5.0")]
[assembly: AssemblyFileVersion("2.5.5.0")]
[assembly: AssemblyVersion("2.5.6.0")]
[assembly: AssemblyFileVersion("2.5.6.0")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]

[assembly: CLSCompliant(true)]
Expand Down
2 changes: 2 additions & 0 deletions ReportGenerator/Reporting/History/HistoryReportGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ internal void CreateReport(IEnumerable<Assembly> assemblies, DateTime executionT
{
using (var stream = new MemoryStream())
{
document.Save(stream);
stream.Position = 0;
this.historyStorage.SaveFile(stream, fileName);
}
}
Expand Down
4 changes: 2 additions & 2 deletions ReportGeneratorTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.5.5.0")]
[assembly: AssemblyFileVersion("2.5.5.0")]
[assembly: AssemblyVersion("2.5.6.0")]
[assembly: AssemblyFileVersion("2.5.6.0")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]

0 comments on commit 95c99e9

Please sign in to comment.