forked from TestableIO/System.IO.Abstractions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyRedirects.cs
More file actions
23 lines (22 loc) · 1.11 KB
/
AssemblyRedirects.cs
File metadata and controls
23 lines (22 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System.IO.Abstractions;
using System.Runtime.CompilerServices;
[assembly: TypeForwardedTo(typeof(FileSystemStream))]
[assembly: TypeForwardedTo(typeof(IDirectory))]
[assembly: TypeForwardedTo(typeof(IDirectoryInfo))]
[assembly: TypeForwardedTo(typeof(IDirectoryInfoFactory))]
[assembly: TypeForwardedTo(typeof(IDriveInfo))]
[assembly: TypeForwardedTo(typeof(IDriveInfoFactory))]
[assembly: TypeForwardedTo(typeof(IFile))]
[assembly: TypeForwardedTo(typeof(IFileInfo))]
[assembly: TypeForwardedTo(typeof(IFileInfoFactory))]
[assembly: TypeForwardedTo(typeof(IFileStreamFactory))]
[assembly: TypeForwardedTo(typeof(IFileSystem))]
[assembly: TypeForwardedTo(typeof(IFileSystemAclSupport))]
[assembly: TypeForwardedTo(typeof(IFileSystemEntity))]
[assembly: TypeForwardedTo(typeof(IFileSystemInfo))]
[assembly: TypeForwardedTo(typeof(IFileSystemWatcher))]
[assembly: TypeForwardedTo(typeof(IFileSystemWatcherFactory))]
[assembly: TypeForwardedTo(typeof(IFileVersionInfo))]
[assembly: TypeForwardedTo(typeof(IFileVersionInfoFactory))]
[assembly: TypeForwardedTo(typeof(IPath))]
[assembly: TypeForwardedTo(typeof(IWaitForChangedResult))]