System.IO.Abstractions.TestingHelpers 17.0.15

There is a newer version of this package available.
See the version list below for details.
dotnet add package System.IO.Abstractions.TestingHelpers --version 17.0.15
NuGet\Install-Package System.IO.Abstractions.TestingHelpers -Version 17.0.15
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="17.0.15" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.IO.Abstractions.TestingHelpers --version 17.0.15
#r "nuget: System.IO.Abstractions.TestingHelpers, 17.0.15"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.IO.Abstractions.TestingHelpers as a Cake Addin
#addin nuget:?package=System.IO.Abstractions.TestingHelpers&version=17.0.15

// Install System.IO.Abstractions.TestingHelpers as a Cake Tool
#tool nuget:?package=System.IO.Abstractions.TestingHelpers&version=17.0.15

System.IO.Abstractions NuGet Continuous Integration Codacy Badge Renovate enabled FOSSA Status

At the core of the library is IFileSystem and FileSystem. Instead of calling methods like File.ReadAllText directly, use IFileSystem.File.ReadAllText. We have exactly the same API, except that ours is injectable and testable.

dotnet add package System.IO.Abstractions
public class MyComponent
{
    readonly IFileSystem fileSystem;

    // <summary>Create MyComponent with the given fileSystem implementation</summary>
    public MyComponent(IFileSystem fileSystem)
    {
        this.fileSystem = fileSystem;
    }
    /// <summary>Create MyComponent</summary>
    public MyComponent() : this(
        fileSystem: new FileSystem() //use default implementation which calls System.IO
    )
    {
    }

    public void Validate()
    {
        foreach (var textFile in fileSystem.Directory.GetFiles(@"c:\", "*.txt", SearchOption.TopDirectoryOnly))
        {
            var text = fileSystem.File.ReadAllText(textFile);
            if (text != "Testing is awesome.")
                throw new NotSupportedException("We can't go on together. It's not me, it's you.");
        }
    }
}

The library also ships with a series of test helpers to save you from having to mock out every call, for basic scenarios. They are not a complete copy of a real-life file system, but they'll get you most of the way there.

dotnet add package System.IO.Abstractions.TestingHelpers
[Test]
public void MyComponent_Validate_ShouldThrowNotSupportedExceptionIfTestingIsNotAwesome()
{
    // Arrange
    var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData>
    {
        { @"c:\myfile.txt", new MockFileData("Testing is meh.") },
        { @"c:\demo\jQuery.js", new MockFileData("some js") },
        { @"c:\demo\image.gif", new MockFileData(new byte[] { 0x12, 0x34, 0x56, 0xd2 }) }
    });
    var component = new MyComponent(fileSystem);

    try
    {
        // Act
        component.Validate();
    }
    catch (NotSupportedException ex)
    {
        // Assert
        Assert.AreEqual("We can't go on together. It's not me, it's you.", ex.Message);
        return;
    }

    Assert.Fail("The expected exception was not thrown.");
}

We even support casting from the .NET Framework's untestable types to our testable wrappers:

FileInfo SomeApiMethodThatReturnsFileInfo()
{
    return new FileInfo("a");
}

void MyFancyMethod()
{
    var testableFileInfo = (FileInfoBase)SomeApiMethodThatReturnsFileInfo();
    ...
}

Since version 4.0 the top-level APIs expose interfaces instead of abstract base classes (these still exist, though), allowing you to completely mock the file system. Here's a small example, using Moq:

[Test]
public void Test1()
{
    var watcher = Mock.Of<IFileSystemWatcher>();
    var file = Mock.Of<IFile>();

    Mock.Get(file).Setup(f => f.Exists(It.IsAny<string>())).Returns(true);
    Mock.Get(file).Setup(f => f.ReadAllText(It.IsAny<string>())).Throws<OutOfMemoryException>();

    var unitUnderTest = new SomeClassUsingFileSystemWatcher(watcher, file);

    Assert.Throws<OutOfMemoryException>(() => {
        Mock.Get(watcher).Raise(w => w.Created += null, new System.IO.FileSystemEventArgs(System.IO.WatcherChangeTypes.Created, @"C:\Some\Directory", "Some.File"));
    });

    Mock.Get(file).Verify(f => f.Exists(It.IsAny<string>()), Times.Once);

    Assert.True(unitUnderTest.FileWasCreated);
}

public class SomeClassUsingFileSystemWatcher
{
    private readonly IFileSystemWatcher _watcher;
    private readonly IFile _file;

    public bool FileWasCreated { get; private set; }

    public SomeClassUsingFileSystemWatcher(IFileSystemWatcher watcher, IFile file)
    {
        this._file = file;
        this._watcher = watcher;
        this._watcher.Created += Watcher_Created;
    }

    private void Watcher_Created(object sender, System.IO.FileSystemEventArgs e)
    {
        FileWasCreated = true;

        if(_file.Exists(e.FullPath))
        {
            var text = _file.ReadAllText(e.FullPath);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on System.IO.Abstractions.TestingHelpers:

Package Downloads
Glob.cs

File system path globbing library (wildcards like in bash).

Noggog.Testing

Package Description

Smusdi.Testing

Utilities to test .NET services.

Smusdi.PostgreSQL.Testing

Utilities for testing projects using postgreSQL.

FileBaseContext

File based database provider for Entity Framework Core (for development purposes)

GitHub repositories (40)

Showing the top 5 popular GitHub repositories that depend on System.IO.Abstractions.TestingHelpers:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
JosefNemec/Playnite
Video game library manager with support for wide range of 3rd party libraries and game emulation support, providing one unified interface for your games.
gitextensions/gitextensions
Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
Version Downloads Last updated
21.0.2 13,446 3/17/2024
20.0.34 4,601 3/15/2024
20.0.28 13,212 3/9/2024
20.0.15 136,392 1/22/2024
20.0.4 126,657 12/5/2023
20.0.1 443 12/5/2023
19.2.91 78,075 12/5/2023
19.2.87 77,162 11/16/2023
19.2.69 364,419 8/29/2023
19.2.67 16,665 8/25/2023
19.2.66 535 8/25/2023
19.2.64 11,900 8/22/2023
19.2.63 624 8/22/2023
19.2.61 5,672 8/21/2023
19.2.51 76,483 7/31/2023
19.2.50 1,658 7/31/2023
19.2.29 350,186 5/17/2023
19.2.26 24,236 5/12/2023
19.2.25 700 5/12/2023
19.2.22 82,831 5/4/2023
19.2.18 48,041 4/24/2023
19.2.17 6,645 4/23/2023
19.2.16 12,826 4/19/2023
19.2.15 5,385 4/18/2023
19.2.13 727 4/18/2023
19.2.12 3,244 4/18/2023
19.2.11 29,141 4/13/2023
19.2.9 11,083 4/11/2023
19.2.8 1,567 4/11/2023
19.2.4 168,243 3/13/2023
19.2.1 61,951 3/2/2023
19.1.18 136,275 2/14/2023
19.1.14 43,610 1/31/2023
19.1.13 64,752 1/24/2023
19.1.5 182,985 12/19/2022
19.1.1 30,677 12/13/2022
19.0.1 41,487 12/8/2022
18.0.1 55,859 11/28/2022
17.2.26 103,044 11/18/2022
17.2.3 610,353 9/16/2022
17.2.1 72,425 9/10/2022
17.1.1 115,449 8/15/2022
17.0.28 2,811 8/15/2022
17.0.24 308,011 7/19/2022
17.0.23 60,257 7/15/2022
17.0.21 49,345 7/4/2022
17.0.18 161,519 6/9/2022
17.0.15 101,544 5/20/2022
17.0.14 19,823 5/18/2022
17.0.13 11,092 5/17/2022
17.0.12 12,587 5/16/2022
17.0.11 2,724 5/15/2022
17.0.10 46,705 5/12/2022
17.0.9 1,308 5/11/2022
17.0.8 2,259 5/11/2022
17.0.7 951 5/11/2022
17.0.6 984 5/11/2022
17.0.5 957 5/11/2022
17.0.4 15,892 5/11/2022
17.0.3 112,242 4/26/2022
17.0.2 1,015 4/26/2022
17.0.1 5,043 4/25/2022
16.1.26 30,633 4/24/2022
16.1.25 167,077 3/23/2022
16.1.24 27,277 3/22/2022
16.1.23 21,532 3/14/2022
16.1.22 2,771 3/11/2022
16.1.21 1,002 3/11/2022
16.1.20 76,041 3/8/2022
16.1.19 957 3/8/2022
16.1.18 997 3/8/2022
16.1.17 967 3/8/2022
16.1.16 12,948 3/3/2022
16.1.15 94,748 2/19/2022
16.1.14 1,036 2/19/2022
16.1.13 1,545 2/19/2022
16.1.12 980 2/19/2022
16.1.11 8,777 2/17/2022
16.1.10 109,845 2/4/2022
16.1.9 6,495 2/2/2022
16.1.8 1,222 2/2/2022
16.1.7 6,467 1/31/2022
16.1.6 1,258 1/31/2022
16.1.5 1,526 1/31/2022
16.1.4 272,175 1/12/2022
16.1.2 1,680 1/12/2022
16.1.1 5,229 1/11/2022
16.0.8 27,355 1/9/2022
16.0.7 29,841 1/8/2022
16.0.6 829 1/8/2022
16.0.5 756 1/8/2022
16.0.4 792 1/8/2022
16.0.3 2,865 1/6/2022
16.0.2 1,671 1/6/2022
16.0.1 309,640 12/22/2021
15.0.1 1,911 12/22/2021
14.0.13 87,990 12/11/2021
14.0.12 873 12/11/2021
14.0.11 960 12/11/2021
14.0.10 967 12/11/2021
14.0.9 940 12/11/2021
14.0.8 1,021 12/11/2021
14.0.7 967 12/10/2021
14.0.6 851 12/10/2021
14.0.5 855 12/10/2021
14.0.4 944 12/10/2021
14.0.3 114,507 11/27/2021
14.0.2 2,848 11/26/2021
14.0.1 3,056 11/26/2021
13.2.47 605,788 8/25/2021
13.2.46 876 8/25/2021
13.2.45 912 8/25/2021
13.2.43 144,561 7/27/2021
13.2.42 20,476 7/23/2021
13.2.41 24,209 7/15/2021
13.2.40 2,012 7/14/2021
13.2.39 1,326 7/14/2021
13.2.38 96,974 6/15/2021
13.2.37 3,489 6/10/2021
13.2.36 948 6/10/2021
13.2.35 872 6/10/2021
13.2.34 943 6/10/2021
13.2.33 99,001 5/15/2021
13.2.32 1,007 5/15/2021
13.2.31 52,362 5/2/2021
13.2.30 1,061 5/2/2021
13.2.29 165,688 4/14/2021
13.2.28 70,440 3/25/2021
13.2.27 2,031 3/25/2021
13.2.25 517,952 3/9/2021
13.2.24 5,434 3/6/2021
13.2.23 79,117 2/24/2021
13.2.22 1,121 2/24/2021
13.2.20 4,094 2/23/2021
13.2.19 980 2/23/2021
13.2.18 1,665 2/23/2021
13.2.17 2,199 2/23/2021
13.2.16 1,068 2/22/2021
13.2.15 12,400 2/18/2021
13.2.14 1,044 2/18/2021
13.2.13 1,086 2/18/2021
13.2.12 952 2/18/2021
13.2.11 6,091 2/16/2021
13.2.10 127,244 2/10/2021
13.2.9 243,849 1/14/2021
13.2.8 78,228 12/22/2020
13.2.7 7,129 12/20/2020
13.2.6 7,921 12/16/2020
13.2.5 56,568 12/9/2020
13.2.4 19,515 12/5/2020
13.2.3 1,244 12/4/2020
13.2.2 66,822 11/26/2020
13.2.1 2,477 11/26/2020
13.1.2 1,107 11/25/2020
13.1.1 1,126 11/25/2020
13.0.1 31,466 11/21/2020
12.2.27 16,124 11/21/2020
12.2.26 1,894 11/20/2020
12.2.25 7,344 11/17/2020
12.2.24 7,057 11/15/2020
12.2.23 1,056 11/15/2020
12.2.22 1,228 11/14/2020
12.2.21 5,395 11/12/2020
12.2.20 1,039 11/12/2020
12.2.19 28,815 11/5/2020
12.2.7 63,022 10/15/2020
12.2.6 31,013 10/15/2020
12.2.5 6,038 10/12/2020
12.2.4 1,095 10/12/2020
12.2.3 49,295 10/12/2020
12.2.2 6,905 10/7/2020
12.2.1 88,889 9/28/2020
12.1.11 2,394 9/28/2020
12.1.10 10,181 9/24/2020
12.1.9 66,903 9/11/2020
12.1.2 1,002 9/11/2020
12.1.1 246,990 8/3/2020
12.0.13 5,229 8/2/2020
12.0.10 16,134 7/25/2020
12.0.9 17,433 7/21/2020
12.0.5 43,956 7/11/2020
12.0.4 42,382 7/2/2020
12.0.3 8,278 6/29/2020
12.0.2 61,166 6/23/2020
12.0.1 16,021 6/20/2020
11.0.18 17,313 6/20/2020
11.0.17 4,004 6/19/2020
11.0.16 1,244 6/18/2020
11.0.15 2,193 6/18/2020
11.0.14 1,370 6/17/2020
11.0.13 1,213 6/17/2020
11.0.12 1,119 6/17/2020
11.0.7 72,598 5/28/2020
11.0.6 110,679 5/8/2020
11.0.5 12,205 5/6/2020
11.0.4 13,907 5/1/2020
11.0.3 2,012 4/30/2020
11.0.2 64,355 4/26/2020
11.0.1 1,131 4/26/2020
10.0.10 10,407 4/20/2020
10.0.9 11,733 4/17/2020
10.0.8 37,519 4/7/2020
10.0.7 12,847 4/3/2020
10.0.6 12,173 4/1/2020
10.0.5 1,168 4/1/2020
10.0.4 1,156 4/1/2020
10.0.1 47,240 3/21/2020
9.0.6 5,256 3/19/2020
9.0.5 43,977 3/16/2020
9.0.4 143,122 2/18/2020
9.0.3 1,145 2/18/2020
9.0.2 10,262 2/11/2020
9.0.1 1,242 2/11/2020
8.1.1 1,544 2/11/2020
8.0.6 1,267 2/11/2020
8.0.5 32,975 1/29/2020
8.0.4 1,754 1/27/2020
8.0.3 14,134 1/19/2020
7.1.10 116,012 1/17/2020
7.1.8 1,343 1/17/2020
7.1.4 19,622 1/13/2020
7.1.3 43,553 1/6/2020
7.1.1 25,294 12/21/2019
7.0.16 9,203 12/19/2019
7.0.15 43,286 12/5/2019
7.0.7 160,520 10/21/2019
7.0.5 14,460 10/11/2019
7.0.4 367,445 9/29/2019
6.0.38 95,042 9/26/2019
6.0.36 2,735 9/24/2019
6.0.34 2,249 9/24/2019
6.0.32 32,418 9/9/2019
6.0.27 14,313 9/3/2019
6.0.25 1,338 9/2/2019
6.0.23 28,827 8/26/2019
6.0.21 47,911 8/12/2019
6.0.19 42,138 8/9/2019
6.0.17 8,559 8/5/2019
6.0.15 80,881 7/9/2019
6.0.14 28,221 6/29/2019
6.0.13 1,623 6/28/2019
6.0.11 18,869 6/21/2019
6.0.9 1,378 6/21/2019
6.0.7 16,269 6/16/2019
6.0.6 1,295 6/16/2019
6.0.5 3,482 6/13/2019
6.0.3 10,885 6/13/2019
6.0.1 114,701 6/7/2019
5.0.1 9,763 6/3/2019
4.2.17 3,033 5/30/2019
4.2.15 6,365 5/28/2019
4.2.13 67,618 5/15/2019
4.2.12 1,325 5/15/2019
4.2.10 21,270 5/10/2019
4.2.9 1,518 5/10/2019
4.2.8 27,033 4/28/2019
4.2.4 18,124 4/19/2019
4.1.6 84,906 4/9/2019
4.0.11 116,338 3/30/2019
3.1.1 43,006 3/10/2019
3.0.10 392,243 1/5/2019
3.0.2 61,155 12/7/2018
2.2.18-beta 1,086 12/3/2018
2.2.17-beta 1,107 12/2/2018
2.2.16-beta 1,054 12/1/2018
2.2.15-beta 1,123 12/1/2018
2.2.14-beta 1,100 12/1/2018
2.2.13-beta 1,157 12/1/2018
2.2.12-beta 1,174 12/1/2018
2.2.11-beta 995 12/1/2018
2.2.10-beta 1,112 11/28/2018
2.2.9-beta 1,212 11/16/2018
2.2.8-beta 1,171 11/9/2018
2.2.7-beta 1,230 11/5/2018
2.2.6-beta 1,227 10/30/2018
2.2.5-beta 1,211 10/30/2018
2.2.4-beta 1,129 10/30/2018
2.2.3-beta 1,129 10/29/2018
2.2.2-beta 1,138 10/25/2018
2.1.0.256 120,844 10/20/2018
2.1.0.247 28,726 10/15/2018
2.1.0.237 4,466 10/14/2018
2.1.0.236 51,289 10/10/2018
2.1.0.235 18,402 10/8/2018
2.1.0.234 1,603 10/8/2018
2.1.0.233 3,323 10/6/2018
2.1.0.232 2,636 10/4/2018
2.1.0.231 22,010 9/19/2018
2.1.0.230 48,417 9/8/2018
2.1.0.229 2,648 9/6/2018
2.1.0.228 10,099 8/27/2018
2.1.0.227 93,421 8/16/2018
2.1.0.226 11,236 8/14/2018
2.1.0.217 2,959 8/10/2018
2.1.0.216 5,508 8/9/2018
2.1.0.215 5,583 8/6/2018
2.1.0.214 1,889 8/5/2018
2.1.0.213 1,694 8/4/2018
2.1.0.211 27,189 7/25/2018
2.1.0.210 4,646 7/21/2018
2.1.0.209 7,605 7/20/2018
2.1.0.208 3,995 7/17/2018
2.1.0.207 1,780 7/17/2018
2.1.0.206 13,641 7/15/2018
2.1.0.205 2,053 7/12/2018
2.1.0.204 1,834 7/11/2018
2.1.0.203 1,811 7/11/2018
2.1.0.202 1,981 7/10/2018
2.1.0.201 2,347 7/10/2018
2.1.0.200 2,225 7/9/2018
2.1.0.199 1,785 7/9/2018
2.1.0.198 2,683 7/8/2018
2.1.0.197 1,871 7/8/2018
2.1.0.196 1,741 7/8/2018
2.1.0.195 1,782 7/7/2018
2.1.0.194 1,800 7/7/2018
2.1.0.193 1,845 7/7/2018
2.1.0.192 1,714 7/7/2018
2.1.0.191 1,665 7/7/2018
2.1.0.190 1,763 7/7/2018
2.1.0.189 1,806 7/7/2018
2.1.0.188 1,726 7/6/2018
2.1.0.187 7,979 7/6/2018
2.1.0.186 12,505 7/6/2018
2.1.0.185 1,797 7/5/2018
2.1.0.184 9,136 7/4/2018
2.1.0.183 1,886 7/4/2018
2.1.0.182 1,725 7/4/2018
2.1.0.181 1,833 7/4/2018
2.1.0.180 1,780 7/4/2018
2.1.0.179 1,817 7/4/2018
2.1.0.178 239,250 1/11/2018
2.1.0.177 5,968 1/2/2018
2.1.0.176 12,630 12/8/2017
2.1.0.175 25,825 11/16/2017
2.1.0.174 24,389 11/7/2017
2.1.0.173 1,761 11/7/2017
2.1.0.172 1,745 11/7/2017
2.1.0.171 2,239 11/4/2017
2.1.0.170 1,761 11/4/2017
2.1.0.169 1,775 11/4/2017
2.1.0.168 1,698 11/4/2017
2.1.0.166 1,790 11/4/2017
2.1.0.164 1,730 11/4/2017
2.1.0.163 1,707 11/4/2017
2.1.0.159 40,865 10/22/2017
2.0.0.143 515,508 4/7/2017
2.0.0.142 1,815 4/7/2017
2.0.0.141 13,079 3/2/2017
2.0.0.140 19,343 1/17/2017
2.0.0.139 36,989 1/6/2017
2.0.0.138 32,975 11/17/2016
2.0.0.137 5,769 10/14/2016
2.0.0.136 3,498 10/1/2016
2.0.0.124 192,991 2/8/2016
2.0.0.123 10,314 12/29/2015
2.0.0.122 1,813 12/28/2015
2.0.0.121 1,803 12/28/2015
2.0.0.120 7,369 12/6/2015
2.0.0.119 1,911 12/6/2015
2.0.0.118 5,176 11/4/2015
2.0.0.117 2,766 10/19/2015
2.0.0.116 12,069 7/20/2015
2.0.0.115 9,987 5/18/2015
2.0.0.114 2,015 5/18/2015
2.0.0.113 10,876 3/18/2015
2.0.0.112 2,239 3/11/2015
2.0.0.111 1,770 3/11/2015
2.0.0.110 1,838 3/11/2015
2.0.0.109 1,864 3/11/2015
2.0.0.108 2,477 3/4/2015
2.0.0.107 2,570 2/23/2015
2.0.0.106 4,038 2/20/2015
2.0.0.105 2,165 2/19/2015
2.0.0.104 2,311 2/14/2015
2.0.0.103 2,350 2/7/2015
2.0.0.102 1,830 2/7/2015
2.0.0.101 2,279 1/25/2015
2.0.0.100 1,897 1/25/2015
2.0.0.99 1,860 1/25/2015
2.0.0.98 1,812 1/25/2015
1.4.0.93 15,027 1/25/2015
1.4.0.92 23,847 9/29/2014
1.4.0.89 1,829 9/29/2014
1.4.0.88 1,837 9/29/2014
1.4.0.87 2,279 9/21/2014
1.4.0.86 7,451 5/7/2014
1.4.0.85 4,675 4/23/2014
1.4.0.84 2,218 4/7/2014
1.4.0.83 2,463 3/24/2014
1.4.0.82 1,927 3/24/2014
1.4.0.81 9,261 3/17/2014
1.4.0.80 1,871 3/17/2014
1.4.0.79 7,236 3/10/2014
1.4.0.78 1,980 3/2/2014
1.4.0.77 1,873 3/2/2014
1.4.0.76 2,127 2/21/2014
1.4.0.75 1,988 2/20/2014
1.4.0.74 36,428 1/12/2014
1.4.0.73 2,078 12/22/2013
1.4.0.72 2,254 12/1/2013
1.4.0.71 1,888 12/1/2013
1.4.0.70 2,160 11/21/2013
1.4.0.69 2,076 11/20/2013
1.4.0.68 4,368 10/15/2013
1.4.0.67 1,940 10/15/2013
1.4.0.66 3,367 7/31/2013
1.4.0.65 2,540 7/9/2013
1.4.0.64 2,814 4/26/2013
1.4.0.63 1,979 4/26/2013
1.4.0.62 1,974 4/26/2013
1.4.0.61 2,004 4/25/2013
1.4.0.60 1,983 4/25/2013
1.4.0.59 1,956 4/25/2013
1.4.0.58 1,886 4/25/2013
1.4.0.57 2,055 4/25/2013
1.4.0.56 2,040 4/25/2013
1.4.0.55 2,008 4/25/2013
1.4.0.54 2,068 4/25/2013
1.4.0.53 2,034 4/25/2013
1.4.0.52 2,135 4/25/2013
1.4.0.51 2,048 4/22/2013
1.4.0.50 1,981 4/22/2013
1.4.0.49 2,245 4/11/2013
1.4.0.48 2,086 3/24/2013
1.4.0.47 2,121 3/24/2013
1.4.0.46 1,967 3/24/2013
1.4.0.45 1,959 3/24/2013
1.4.0.44 2,408 3/16/2013
1.4.0.43 1,909 3/16/2013
1.4.0.42 2,024 3/16/2013
1.4.0.41 2,031 3/6/2013
1.4.0.40 2,569 12/24/2012
1.4.0.39 2,056 12/23/2012
1.4.0.38 1,974 12/23/2012
1.4.0.37 2,910 11/29/2012
1.4.0.36 2,141 11/29/2012
1.4.0.35 2,421 9/25/2012
1.4.0.32 3,313 7/14/2012
1.4.0.31 2,094 7/14/2012
1.4.0.30 2,047 7/12/2012
1.4.0.29 2,039 7/12/2012
1.4.0.28 1,946 7/12/2012
1.4.0.27 1,980 7/12/2012
1.4.0.26 2,048 7/2/2012
1.4.0.25 2,042 7/2/2012
1.4.0.24 2,538 5/15/2012
1.4.0.23 2,415 4/25/2012
1.4.0.22 2,142 4/25/2012
1.4.0.21 2,035 4/25/2012
1.4.0.20 2,169 4/18/2012
1.4.0.19 2,041 4/18/2012
1.4.0.18 2,060 4/18/2012
1.4.0.17 2,113 4/18/2012
1.4.0.14 2,115 4/4/2012
1.4.0.13 2,364 3/27/2012
1.4.0.12 2,689 9/16/2011
1.4.0.11 2,242 9/16/2011
1.3.0 2,476 5/27/2011
1.2.0 5,021 5/26/2011