System.IO.Abstractions.TestingHelpers 17.0.7

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.7
NuGet\Install-Package System.IO.Abstractions.TestingHelpers -Version 17.0.7
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.7" />
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.7
#r "nuget: System.IO.Abstractions.TestingHelpers, 17.0.7"
#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.7

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

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 11,819 3/17/2024
20.0.34 4,278 3/15/2024
20.0.28 12,958 3/9/2024
20.0.15 134,811 1/22/2024
20.0.4 126,080 12/5/2023
20.0.1 443 12/5/2023
19.2.91 76,995 12/5/2023
19.2.87 76,758 11/16/2023
19.2.69 363,774 8/29/2023
19.2.67 16,656 8/25/2023
19.2.66 535 8/25/2023
19.2.64 11,876 8/22/2023
19.2.63 624 8/22/2023
19.2.61 5,652 8/21/2023
19.2.51 76,376 7/31/2023
19.2.50 1,658 7/31/2023
19.2.29 349,549 5/17/2023
19.2.26 24,222 5/12/2023
19.2.25 692 5/12/2023
19.2.22 82,783 5/4/2023
19.2.18 47,941 4/24/2023
19.2.17 6,618 4/23/2023
19.2.16 12,826 4/19/2023
19.2.15 5,375 4/18/2023
19.2.13 727 4/18/2023
19.2.12 3,244 4/18/2023
19.2.11 29,120 4/13/2023
19.2.9 11,075 4/11/2023
19.2.8 1,553 4/11/2023
19.2.4 168,067 3/13/2023
19.2.1 61,832 3/2/2023
19.1.18 135,970 2/14/2023
19.1.14 43,518 1/31/2023
19.1.13 64,594 1/24/2023
19.1.5 182,843 12/19/2022
19.1.1 30,652 12/13/2022
19.0.1 41,441 12/8/2022
18.0.1 55,784 11/28/2022
17.2.26 102,913 11/18/2022
17.2.3 609,416 9/16/2022
17.2.1 72,399 9/10/2022
17.1.1 115,397 8/15/2022
17.0.28 2,786 8/15/2022
17.0.24 307,546 7/19/2022
17.0.23 60,060 7/15/2022
17.0.21 49,308 7/4/2022
17.0.18 161,325 6/9/2022
17.0.15 101,443 5/20/2022
17.0.14 19,816 5/18/2022
17.0.13 11,084 5/17/2022
17.0.12 12,570 5/16/2022
17.0.11 2,724 5/15/2022
17.0.10 46,693 5/12/2022
17.0.9 1,308 5/11/2022
17.0.8 2,259 5/11/2022
17.0.7 942 5/11/2022
17.0.6 972 5/11/2022
17.0.5 957 5/11/2022
17.0.4 15,892 5/11/2022
17.0.3 111,994 4/26/2022
17.0.2 1,007 4/26/2022
17.0.1 5,043 4/25/2022
16.1.26 30,621 4/24/2022
16.1.25 167,003 3/23/2022
16.1.24 27,209 3/22/2022
16.1.23 21,486 3/14/2022
16.1.22 2,760 3/11/2022
16.1.21 1,002 3/11/2022
16.1.20 75,779 3/8/2022
16.1.19 957 3/8/2022
16.1.18 983 3/8/2022
16.1.17 967 3/8/2022
16.1.16 12,938 3/3/2022
16.1.15 94,693 2/19/2022
16.1.14 1,026 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,790 2/4/2022
16.1.9 6,494 2/2/2022
16.1.8 1,222 2/2/2022
16.1.7 6,466 1/31/2022
16.1.6 1,258 1/31/2022
16.1.5 1,522 1/31/2022
16.1.4 272,143 1/12/2022
16.1.2 1,680 1/12/2022
16.1.1 5,220 1/11/2022
16.0.8 27,307 1/9/2022
16.0.7 29,816 1/8/2022
16.0.6 814 1/8/2022
16.0.5 748 1/8/2022
16.0.4 781 1/8/2022
16.0.3 2,865 1/6/2022
16.0.2 1,671 1/6/2022
16.0.1 309,446 12/22/2021
15.0.1 1,910 12/22/2021
14.0.13 87,948 12/11/2021
14.0.12 865 12/11/2021
14.0.11 950 12/11/2021
14.0.10 953 12/11/2021
14.0.9 940 12/11/2021
14.0.8 1,021 12/11/2021
14.0.7 954 12/10/2021
14.0.6 851 12/10/2021
14.0.5 843 12/10/2021
14.0.4 944 12/10/2021
14.0.3 114,478 11/27/2021
14.0.2 2,848 11/26/2021
14.0.1 3,043 11/26/2021
13.2.47 605,328 8/25/2021
13.2.46 876 8/25/2021
13.2.45 912 8/25/2021
13.2.43 144,437 7/27/2021
13.2.42 20,463 7/23/2021
13.2.41 24,207 7/15/2021
13.2.40 2,012 7/14/2021
13.2.39 1,318 7/14/2021
13.2.38 96,918 6/15/2021
13.2.37 3,489 6/10/2021
13.2.36 933 6/10/2021
13.2.35 872 6/10/2021
13.2.34 943 6/10/2021
13.2.33 98,932 5/15/2021
13.2.32 998 5/15/2021
13.2.31 52,307 5/2/2021
13.2.30 1,048 5/2/2021
13.2.29 165,594 4/14/2021
13.2.28 70,394 3/25/2021
13.2.27 2,031 3/25/2021
13.2.25 515,964 3/9/2021
13.2.24 5,434 3/6/2021
13.2.23 79,090 2/24/2021
13.2.22 1,108 2/24/2021
13.2.20 4,094 2/23/2021
13.2.19 975 2/23/2021
13.2.18 1,665 2/23/2021
13.2.17 2,187 2/23/2021
13.2.16 1,068 2/22/2021
13.2.15 12,381 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,130 2/10/2021
13.2.9 243,693 1/14/2021
13.2.8 78,188 12/22/2020
13.2.7 7,129 12/20/2020
13.2.6 7,916 12/16/2020
13.2.5 56,535 12/9/2020
13.2.4 19,515 12/5/2020
13.2.3 1,244 12/4/2020
13.2.2 66,818 11/26/2020
13.2.1 2,464 11/26/2020
13.1.2 1,091 11/25/2020
13.1.1 1,126 11/25/2020
13.0.1 31,449 11/21/2020
12.2.27 16,122 11/21/2020
12.2.26 1,894 11/20/2020
12.2.25 7,342 11/17/2020
12.2.24 7,041 11/15/2020
12.2.23 1,056 11/15/2020
12.2.22 1,218 11/14/2020
12.2.21 5,383 11/12/2020
12.2.20 1,039 11/12/2020
12.2.19 28,808 11/5/2020
12.2.7 62,993 10/15/2020
12.2.6 30,969 10/15/2020
12.2.5 6,038 10/12/2020
12.2.4 1,095 10/12/2020
12.2.3 49,293 10/12/2020
12.2.2 6,905 10/7/2020
12.2.1 88,829 9/28/2020
12.1.11 2,394 9/28/2020
12.1.10 10,160 9/24/2020
12.1.9 66,836 9/11/2020
12.1.2 993 9/11/2020
12.1.1 246,891 8/3/2020
12.0.13 5,229 8/2/2020
12.0.10 16,115 7/25/2020
12.0.9 17,431 7/21/2020
12.0.5 43,912 7/11/2020
12.0.4 42,366 7/2/2020
12.0.3 8,263 6/29/2020
12.0.2 61,146 6/23/2020
12.0.1 16,021 6/20/2020
11.0.18 17,294 6/20/2020
11.0.17 3,989 6/19/2020
11.0.16 1,229 6/18/2020
11.0.15 2,183 6/18/2020
11.0.14 1,370 6/17/2020
11.0.13 1,213 6/17/2020
11.0.12 1,105 6/17/2020
11.0.7 72,567 5/28/2020
11.0.6 110,626 5/8/2020
11.0.5 12,205 5/6/2020
11.0.4 13,896 5/1/2020
11.0.3 1,998 4/30/2020
11.0.2 64,351 4/26/2020
11.0.1 1,121 4/26/2020
10.0.10 10,387 4/20/2020
10.0.9 11,723 4/17/2020
10.0.8 37,494 4/7/2020
10.0.7 12,838 4/3/2020
10.0.6 12,173 4/1/2020
10.0.5 1,168 4/1/2020
10.0.4 1,146 4/1/2020
10.0.1 47,233 3/21/2020
9.0.6 5,246 3/19/2020
9.0.5 43,872 3/16/2020
9.0.4 143,096 2/18/2020
9.0.3 1,135 2/18/2020
9.0.2 10,261 2/11/2020
9.0.1 1,232 2/11/2020
8.1.1 1,544 2/11/2020
8.0.6 1,255 2/11/2020
8.0.5 32,967 1/29/2020
8.0.4 1,744 1/27/2020
8.0.3 14,132 1/19/2020
7.1.10 115,775 1/17/2020
7.1.8 1,343 1/17/2020
7.1.4 19,604 1/13/2020
7.1.3 43,527 1/6/2020
7.1.1 25,283 12/21/2019
7.0.16 9,203 12/19/2019
7.0.15 43,283 12/5/2019
7.0.7 160,414 10/21/2019
7.0.5 14,450 10/11/2019
7.0.4 366,808 9/29/2019
6.0.38 95,042 9/26/2019
6.0.36 2,720 9/24/2019
6.0.34 2,249 9/24/2019
6.0.32 32,409 9/9/2019
6.0.27 14,294 9/3/2019
6.0.25 1,338 9/2/2019
6.0.23 28,795 8/26/2019
6.0.21 47,901 8/12/2019
6.0.19 42,122 8/9/2019
6.0.17 8,541 8/5/2019
6.0.15 80,854 7/9/2019
6.0.14 28,199 6/29/2019
6.0.13 1,623 6/28/2019
6.0.11 18,862 6/21/2019
6.0.9 1,378 6/21/2019
6.0.7 16,264 6/16/2019
6.0.6 1,295 6/16/2019
6.0.5 3,468 6/13/2019
6.0.3 10,885 6/13/2019
6.0.1 114,558 6/7/2019
5.0.1 9,741 6/3/2019
4.2.17 3,023 5/30/2019
4.2.15 6,354 5/28/2019
4.2.13 67,498 5/15/2019
4.2.12 1,320 5/15/2019
4.2.10 21,254 5/10/2019
4.2.9 1,510 5/10/2019
4.2.8 27,032 4/28/2019
4.2.4 18,124 4/19/2019
4.1.6 84,897 4/9/2019
4.0.11 116,259 3/30/2019
3.1.1 42,980 3/10/2019
3.0.10 391,920 1/5/2019
3.0.2 61,128 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,041 12/1/2018
2.2.15-beta 1,110 12/1/2018
2.2.14-beta 1,090 12/1/2018
2.2.13-beta 1,147 12/1/2018
2.2.12-beta 1,172 12/1/2018
2.2.11-beta 986 12/1/2018
2.2.10-beta 1,098 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,214 11/5/2018
2.2.6-beta 1,211 10/30/2018
2.2.5-beta 1,196 10/30/2018
2.2.4-beta 1,119 10/30/2018
2.2.3-beta 1,114 10/29/2018
2.2.2-beta 1,126 10/25/2018
2.1.0.256 120,800 10/20/2018
2.1.0.247 28,712 10/15/2018
2.1.0.237 4,454 10/14/2018
2.1.0.236 51,285 10/10/2018
2.1.0.235 18,388 10/8/2018
2.1.0.234 1,591 10/8/2018
2.1.0.233 3,306 10/6/2018
2.1.0.232 2,624 10/4/2018
2.1.0.231 21,999 9/19/2018
2.1.0.230 48,377 9/8/2018
2.1.0.229 2,632 9/6/2018
2.1.0.228 10,084 8/27/2018
2.1.0.227 93,321 8/16/2018
2.1.0.226 11,227 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,573 8/6/2018
2.1.0.214 1,880 8/5/2018
2.1.0.213 1,694 8/4/2018
2.1.0.211 27,178 7/25/2018
2.1.0.210 4,632 7/21/2018
2.1.0.209 7,605 7/20/2018
2.1.0.208 3,984 7/17/2018
2.1.0.207 1,780 7/17/2018
2.1.0.206 13,631 7/15/2018
2.1.0.205 2,043 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,968 7/10/2018
2.1.0.201 2,332 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,668 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,704 7/7/2018
2.1.0.191 1,656 7/7/2018
2.1.0.190 1,753 7/7/2018
2.1.0.189 1,795 7/7/2018
2.1.0.188 1,716 7/6/2018
2.1.0.187 7,979 7/6/2018
2.1.0.186 12,488 7/6/2018
2.1.0.185 1,782 7/5/2018
2.1.0.184 9,127 7/4/2018
2.1.0.183 1,876 7/4/2018
2.1.0.182 1,715 7/4/2018
2.1.0.181 1,823 7/4/2018
2.1.0.180 1,767 7/4/2018
2.1.0.179 1,807 7/4/2018
2.1.0.178 239,120 1/11/2018
2.1.0.177 5,968 1/2/2018
2.1.0.176 12,614 12/8/2017
2.1.0.175 25,806 11/16/2017
2.1.0.174 24,386 11/7/2017
2.1.0.173 1,761 11/7/2017
2.1.0.172 1,736 11/7/2017
2.1.0.171 2,225 11/4/2017
2.1.0.170 1,745 11/4/2017
2.1.0.169 1,761 11/4/2017
2.1.0.168 1,689 11/4/2017
2.1.0.166 1,773 11/4/2017
2.1.0.164 1,721 11/4/2017
2.1.0.163 1,707 11/4/2017
2.1.0.159 40,819 10/22/2017
2.0.0.143 515,420 4/7/2017
2.0.0.142 1,806 4/7/2017
2.0.0.141 13,075 3/2/2017
2.0.0.140 19,337 1/17/2017
2.0.0.139 36,916 1/6/2017
2.0.0.138 32,933 11/17/2016
2.0.0.137 5,758 10/14/2016
2.0.0.136 3,488 10/1/2016
2.0.0.124 192,926 2/8/2016
2.0.0.123 10,297 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,359 12/6/2015
2.0.0.119 1,899 12/6/2015
2.0.0.118 5,166 11/4/2015
2.0.0.117 2,754 10/19/2015
2.0.0.116 12,041 7/20/2015
2.0.0.115 9,967 5/18/2015
2.0.0.114 2,003 5/18/2015
2.0.0.113 10,825 3/18/2015
2.0.0.112 2,224 3/11/2015
2.0.0.111 1,761 3/11/2015
2.0.0.110 1,826 3/11/2015
2.0.0.109 1,849 3/11/2015
2.0.0.108 2,467 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,339 2/7/2015
2.0.0.102 1,820 2/7/2015
2.0.0.101 2,265 1/25/2015
2.0.0.100 1,883 1/25/2015
2.0.0.99 1,851 1/25/2015
2.0.0.98 1,804 1/25/2015
1.4.0.93 15,012 1/25/2015
1.4.0.92 23,821 9/29/2014
1.4.0.89 1,818 9/29/2014
1.4.0.88 1,837 9/29/2014
1.4.0.87 2,266 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,203 4/7/2014
1.4.0.83 2,463 3/24/2014
1.4.0.82 1,914 3/24/2014
1.4.0.81 9,228 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,862 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,366 1/12/2014
1.4.0.73 2,063 12/22/2013
1.4.0.72 2,244 12/1/2013
1.4.0.71 1,888 12/1/2013
1.4.0.70 2,147 11/21/2013
1.4.0.69 2,066 11/20/2013
1.4.0.68 4,368 10/15/2013
1.4.0.67 1,929 10/15/2013
1.4.0.66 3,367 7/31/2013
1.4.0.65 2,529 7/9/2013
1.4.0.64 2,802 4/26/2013
1.4.0.63 1,979 4/26/2013
1.4.0.62 1,961 4/26/2013
1.4.0.61 1,994 4/25/2013
1.4.0.60 1,971 4/25/2013
1.4.0.59 1,946 4/25/2013
1.4.0.58 1,870 4/25/2013
1.4.0.57 2,040 4/25/2013
1.4.0.56 2,031 4/25/2013
1.4.0.55 1,995 4/25/2013
1.4.0.54 2,056 4/25/2013
1.4.0.53 2,021 4/25/2013
1.4.0.52 2,126 4/25/2013
1.4.0.51 2,048 4/22/2013
1.4.0.50 1,972 4/22/2013
1.4.0.49 2,229 4/11/2013
1.4.0.48 2,086 3/24/2013
1.4.0.47 2,111 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,010 3/16/2013
1.4.0.41 2,016 3/6/2013
1.4.0.40 2,569 12/24/2012
1.4.0.39 2,042 12/23/2012
1.4.0.38 1,959 12/23/2012
1.4.0.37 2,900 11/29/2012
1.4.0.36 2,127 11/29/2012
1.4.0.35 2,408 9/25/2012
1.4.0.32 3,313 7/14/2012
1.4.0.31 2,082 7/14/2012
1.4.0.30 2,033 7/12/2012
1.4.0.29 2,023 7/12/2012
1.4.0.28 1,930 7/12/2012
1.4.0.27 1,966 7/12/2012
1.4.0.26 2,048 7/2/2012
1.4.0.25 2,027 7/2/2012
1.4.0.24 2,538 5/15/2012
1.4.0.23 2,405 4/25/2012
1.4.0.22 2,128 4/25/2012
1.4.0.21 2,021 4/25/2012
1.4.0.20 2,156 4/18/2012
1.4.0.19 2,027 4/18/2012
1.4.0.18 2,047 4/18/2012
1.4.0.17 2,097 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,674 9/16/2011
1.4.0.11 2,228 9/16/2011
1.3.0 2,473 5/27/2011
1.2.0 5,005 5/26/2011