Skip to content

Commit

Permalink
Corrected issue with namespace conflict with System.IO.File
Browse files Browse the repository at this point in the history
  • Loading branch information
merbla committed Jan 22, 2016
1 parent 9c24d46 commit 499bf1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ void ApplyRetentionPolicy(string currentFilePath)
var fullPath = Path.Combine(_roller.LogFileDirectory, obsolete);
try
{
File.Delete(fullPath);
System.IO.File.Delete(fullPath);
}
catch (Exception ex)
{
Expand Down

0 comments on commit 499bf1e

Please sign in to comment.