Skip to content

Commit

Permalink
Merge pull request #15 from marvinweber/fix/logger-unimplemented-method
Browse files Browse the repository at this point in the history
Fix-version 1.2.1
  • Loading branch information
marvinweber authored Oct 29, 2019
2 parents 0a0e2d7 + 7cd19f3 commit c72eeb7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion KPSimpleBackup/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public Logger(KPSimpleBackupConfig config)

public bool ContinueWork()
{
throw new System.NotImplementedException();
this.StoreLine("OPERATION CONTINUED WORK!");
return true;
}

public void EndLogging()
Expand Down
4 changes: 2 additions & 2 deletions KPSimpleBackup/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]
[assembly: NeutralResourcesLanguage("en")]

2 changes: 1 addition & 1 deletion kpsimplebackup.version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:
KPSimpleBackup:1.2.0
KPSimpleBackup:1.2.1
:

0 comments on commit c72eeb7

Please sign in to comment.