Reacting to IFileSystemInfo changes

This commit is contained in:
Pranav K 2014-08-26 09:48:19 -07:00
parent 313a537ea1
commit 096ba08a8d
1 changed files with 7 additions and 4 deletions

View File

@ -3,9 +3,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics;
using System.IO; using System.IO;
using System.Threading;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.Framework.OptionsModel; using Microsoft.Framework.OptionsModel;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
@ -413,6 +411,11 @@ namespace Microsoft.AspNet.Mvc.Core.Test
return false; return false;
} }
} }
public string TryGetParentPath(string subpath, out string parentPath)
{
throw new NotImplementedException();
}
} }
public class DummyFileInfo : IFileInfo public class DummyFileInfo : IFileInfo