System.IO.Abstractions
19.1.14
dotnet add package System.IO.Abstractions --version 19.1.14
NuGet\Install-Package System.IO.Abstractions -Version 19.1.14
<PackageReference Include="System.IO.Abstractions" Version="19.1.14" />
paket add System.IO.Abstractions --version 19.1.14
#r "nuget: System.IO.Abstractions, 19.1.14"
// Install System.IO.Abstractions as a Cake Addin
#addin nuget:?package=System.IO.Abstractions&version=19.1.14
// Install System.IO.Abstractions as a Cake Tool
#tool nuget:?package=System.IO.Abstractions&version=19.1.14
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.
Usage
dotnet add package TestableIO.System.IO.Abstractions
Note: This NuGet package is also published as System.IO.Abstractions
but we suggest to use the prefix to make clear that this is not an official .NET package.
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.");
}
}
}
Test helpers
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 TestableIO.System.IO.Abstractions.TestingHelpers
Note: This NuGet package is also published as System.IO.Abstractions.TestingHelpers
but we suggest to use the prefix to make clear that this is not an official .NET package.
[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();
...
}
Mock support
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);
}
}
}
Related projects
System.IO.Abstractions.Extensions
provides convenience functionality on top of the core abstractions.System.IO.Abstractions.Analyzers
provides Roslyn analyzers to help use abstractions over static methods.Testably.Abstractions
provides alternative test helpers and additional abstractions.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.6.1
- TestableIO.System.IO.Abstractions (>= 19.1.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 19.1.14)
-
.NETStandard 2.0
- TestableIO.System.IO.Abstractions (>= 19.1.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 19.1.14)
-
.NETStandard 2.1
- TestableIO.System.IO.Abstractions (>= 19.1.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 19.1.14)
-
net5.0
- TestableIO.System.IO.Abstractions (>= 19.1.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 19.1.14)
-
net6.0
- TestableIO.System.IO.Abstractions (>= 19.1.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 19.1.14)
-
net7.0
- TestableIO.System.IO.Abstractions (>= 19.1.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 19.1.14)
NuGet packages (246)
Showing the top 5 NuGet packages that depend on System.IO.Abstractions:
Package | Downloads |
---|---|
VirtoCommerce.Platform.Core
Virto Commerce is a flexible B2B ecommerce solution that offers powerful tools for enterprise business users. https://virtocommerce.com |
|
Reo.Core.Hosting
Package Description |
|
GitOps.Clients.Azure
Package Description |
|
Reo.Core.Database
Package Description |
|
Noggog.CSharpExt
Generic reusable classes and extension methods that apply to no specific project and flavored to taste |
GitHub repositories (48)
Showing the top 5 popular GitHub repositories that depend on System.IO.Abstractions:
Repository | Stars |
---|---|
microsoft/PowerToys
Windows system utilities to maximize productivity
|
|
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).
|
|
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.
|
|
projectkudu/kudu
Kudu is the engine behind git/hg deployments, WebJobs, and various other features in Azure Web Sites. It can also run outside of Azure.
|
|
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
|
Version | Downloads | Last updated | |
---|---|---|---|
19.1.14 | 3,367 | 1/31/2023 | |
19.1.13 | 26,276 | 1/24/2023 | |
19.1.5 | 168,807 | 12/19/2022 | |
19.1.1 | 26,248 | 12/13/2022 | |
19.0.1 | 46,256 | 12/8/2022 | |
18.0.1 | 72,007 | 11/28/2022 | |
17.2.26 | 50,834 | 11/18/2022 | |
17.2.3 | 1,052,546 | 9/16/2022 | |
17.2.1 | 80,505 | 9/10/2022 | |
17.1.1 | 469,307 | 8/15/2022 | |
17.0.28 | 8,942 | 8/15/2022 | |
17.0.24 | 398,007 | 7/19/2022 | |
17.0.23 | 27,595 | 7/15/2022 | |
17.0.21 | 175,654 | 7/4/2022 | |
17.0.18 | 390,876 | 6/9/2022 | |
17.0.15 | 278,941 | 5/20/2022 | |
17.0.14 | 33,451 | 5/18/2022 | |
17.0.13 | 41,857 | 5/17/2022 | |
17.0.12 | 33,843 | 5/16/2022 | |
17.0.11 | 6,295 | 5/15/2022 | |
17.0.10 | 143,863 | 5/12/2022 | |
17.0.9 | 1,243 | 5/11/2022 | |
17.0.8 | 1,305 | 5/11/2022 | |
17.0.7 | 499 | 5/11/2022 | |
17.0.6 | 483 | 5/11/2022 | |
17.0.5 | 489 | 5/11/2022 | |
17.0.4 | 17,407 | 5/11/2022 | |
17.0.3 | 192,729 | 4/26/2022 | |
17.0.2 | 572 | 4/26/2022 | |
17.0.1 | 10,576 | 4/25/2022 | |
16.1.26 | 54,135 | 4/24/2022 | |
16.1.25 | 496,505 | 3/23/2022 | |
16.1.24 | 29,069 | 3/22/2022 | |
16.1.23 | 146,541 | 3/14/2022 | |
16.1.22 | 3,703 | 3/11/2022 | |
16.1.21 | 525 | 3/11/2022 | |
16.1.20 | 74,347 | 3/8/2022 | |
16.1.19 | 538 | 3/8/2022 | |
16.1.18 | 543 | 3/8/2022 | |
16.1.17 | 548 | 3/8/2022 | |
16.1.16 | 30,794 | 3/3/2022 | |
16.1.15 | 169,995 | 2/19/2022 | |
16.1.14 | 509 | 2/19/2022 | |
16.1.13 | 639 | 2/19/2022 | |
16.1.12 | 509 | 2/19/2022 | |
16.1.11 | 15,615 | 2/17/2022 | |
16.1.10 | 272,752 | 2/4/2022 | |
16.1.9 | 22,760 | 2/2/2022 | |
16.1.8 | 519 | 2/2/2022 | |
16.1.7 | 17,163 | 1/31/2022 | |
16.1.6 | 566 | 1/31/2022 | |
16.1.5 | 2,945 | 1/31/2022 | |
16.1.4 | 345,843 | 1/12/2022 | |
16.1.2 | 1,351 | 1/12/2022 | |
16.1.1 | 35,995 | 1/11/2022 | |
16.0.8 | 65,031 | 1/9/2022 | |
16.0.7 | 9,184 | 1/8/2022 | |
16.0.6 | 377 | 1/8/2022 | |
16.0.5 | 373 | 1/8/2022 | |
16.0.4 | 369 | 1/8/2022 | |
16.0.3 | 35,782 | 1/6/2022 | |
16.0.2 | 3,207 | 1/6/2022 | |
16.0.1 | 447,625 | 12/22/2021 | |
15.0.1 | 1,510 | 12/22/2021 | |
14.0.13 | 159,449 | 12/11/2021 | |
14.0.12 | 380 | 12/11/2021 | |
14.0.11 | 607 | 12/11/2021 | |
14.0.10 | 530 | 12/11/2021 | |
14.0.9 | 561 | 12/11/2021 | |
14.0.8 | 663 | 12/11/2021 | |
14.0.7 | 533 | 12/10/2021 | |
14.0.6 | 385 | 12/10/2021 | |
14.0.5 | 377 | 12/10/2021 | |
14.0.4 | 588 | 12/10/2021 | |
14.0.3 | 368,607 | 11/27/2021 | |
14.0.2 | 2,249 | 11/26/2021 | |
14.0.1 | 5,327 | 11/26/2021 | |
13.2.47 | 4,074,002 | 8/25/2021 | |
13.2.46 | 746 | 8/25/2021 | |
13.2.45 | 502 | 8/25/2021 | |
13.2.43 | 380,445 | 7/27/2021 | |
13.2.42 | 661,626 | 7/23/2021 | |
13.2.41 | 113,735 | 7/15/2021 | |
13.2.40 | 2,576 | 7/14/2021 | |
13.2.39 | 2,209 | 7/14/2021 | |
13.2.38 | 277,533 | 6/15/2021 | |
13.2.37 | 9,989 | 6/10/2021 | |
13.2.36 | 557 | 6/10/2021 | |
13.2.35 | 507 | 6/10/2021 | |
13.2.34 | 537 | 6/10/2021 | |
13.2.33 | 2,138,009 | 5/15/2021 | |
13.2.32 | 635 | 5/15/2021 | |
13.2.31 | 110,535 | 5/2/2021 | |
13.2.30 | 676 | 5/2/2021 | |
13.2.29 | 362,464 | 4/14/2021 | |
13.2.28 | 559,321 | 3/25/2021 | |
13.2.27 | 1,727 | 3/25/2021 | |
13.2.25 | 1,215,044 | 3/9/2021 | |
13.2.24 | 27,479 | 3/6/2021 | |
13.2.23 | 189,766 | 2/24/2021 | |
13.2.22 | 720 | 2/24/2021 | |
13.2.20 | 10,719 | 2/23/2021 | |
13.2.19 | 616 | 2/23/2021 | |
13.2.18 | 939 | 2/23/2021 | |
13.2.17 | 3,513 | 2/23/2021 | |
13.2.16 | 776 | 2/22/2021 | |
13.2.15 | 17,232 | 2/18/2021 | |
13.2.14 | 668 | 2/18/2021 | |
13.2.13 | 692 | 2/18/2021 | |
13.2.12 | 593 | 2/18/2021 | |
13.2.11 | 27,029 | 2/16/2021 | |
13.2.10 | 174,826 | 2/10/2021 | |
13.2.9 | 530,932 | 1/14/2021 | |
13.2.8 | 169,511 | 12/22/2020 | |
13.2.7 | 18,047 | 12/20/2020 | |
13.2.6 | 86,745 | 12/16/2020 | |
13.2.5 | 91,618 | 12/9/2020 | |
13.2.4 | 49,957 | 12/5/2020 | |
13.2.3 | 1,130 | 12/4/2020 | |
13.2.2 | 145,769 | 11/26/2020 | |
13.2.1 | 10,761 | 11/26/2020 | |
13.1.2 | 803 | 11/25/2020 | |
13.1.1 | 748 | 11/25/2020 | |
13.0.1 | 142,641 | 11/21/2020 | |
12.2.27 | 23,389 | 11/21/2020 | |
12.2.26 | 3,293 | 11/20/2020 | |
12.2.25 | 90,367 | 11/17/2020 | |
12.2.24 | 78,834 | 11/15/2020 | |
12.2.23 | 794 | 11/15/2020 | |
12.2.22 | 921 | 11/14/2020 | |
12.2.21 | 6,218 | 11/12/2020 | |
12.2.20 | 2,899 | 11/12/2020 | |
12.2.19 | 82,738 | 11/5/2020 | |
12.2.7 | 446,369 | 10/15/2020 | |
12.2.6 | 22,766 | 10/15/2020 | |
12.2.5 | 87,723 | 10/12/2020 | |
12.2.4 | 742 | 10/12/2020 | |
12.2.3 | 49,116 | 10/12/2020 | |
12.2.2 | 28,518 | 10/7/2020 | |
12.2.1 | 163,595 | 9/28/2020 | |
12.1.11 | 2,535 | 9/28/2020 | |
12.1.10 | 86,338 | 9/24/2020 | |
12.1.9 | 279,460 | 9/11/2020 | |
12.1.2 | 837 | 9/11/2020 | |
12.1.1 | 605,334 | 8/3/2020 | |
12.0.13 | 10,589 | 8/2/2020 | |
12.0.10 | 64,951 | 7/25/2020 | |
12.0.9 | 50,912 | 7/21/2020 | |
12.0.8 | 25,983 | 7/19/2020 | |
12.0.7 | 680 | 7/19/2020 | |
12.0.6 | 694 | 7/19/2020 | |
12.0.5 | 62,142 | 7/11/2020 | |
12.0.4 | 55,842 | 7/2/2020 | |
12.0.3 | 14,959 | 6/29/2020 | |
12.0.2 | 88,477 | 6/23/2020 | |
12.0.1 | 45,888 | 6/20/2020 | |
11.0.18 | 780,814 | 6/20/2020 | |
11.0.17 | 5,731 | 6/19/2020 | |
11.0.16 | 937 | 6/18/2020 | |
11.0.15 | 11,186 | 6/18/2020 | |
11.0.14 | 1,290 | 6/17/2020 | |
11.0.13 | 1,285 | 6/17/2020 | |
11.0.12 | 810 | 6/17/2020 | |
11.0.11 | 1,331 | 6/17/2020 | |
11.0.10 | 4,214 | 6/16/2020 | |
11.0.9 | 618 | 6/16/2020 | |
11.0.8 | 714 | 6/16/2020 | |
11.0.7 | 543,915 | 5/28/2020 | |
11.0.6 | 1,002,932 | 5/8/2020 | |
11.0.5 | 45,032 | 5/6/2020 | |
11.0.4 | 53,735 | 5/1/2020 | |
11.0.3 | 3,685 | 4/30/2020 | |
11.0.2 | 80,593 | 4/26/2020 | |
11.0.1 | 836 | 4/26/2020 | |
10.0.10 | 28,390 | 4/20/2020 | |
10.0.9 | 20,557 | 4/17/2020 | |
10.0.8 | 140,128 | 4/7/2020 | |
10.0.7 | 14,134 | 4/3/2020 | |
10.0.6 | 17,875 | 4/1/2020 | |
10.0.5 | 852 | 4/1/2020 | |
10.0.4 | 883 | 4/1/2020 | |
10.0.1 | 152,200 | 3/21/2020 | |
9.0.6 | 33,730 | 3/19/2020 | |
9.0.5 | 52,571 | 3/16/2020 | |
9.0.4 | 383,862 | 2/18/2020 | |
9.0.3 | 1,638 | 2/18/2020 | |
9.0.2 | 24,232 | 2/11/2020 | |
9.0.1 | 1,051 | 2/11/2020 | |
8.1.1 | 97,871 | 2/11/2020 | |
8.0.6 | 991 | 2/11/2020 | |
8.0.5 | 105,267 | 1/29/2020 | |
8.0.4 | 3,772 | 1/27/2020 | |
8.0.3 | 115,712 | 1/19/2020 | |
7.1.10 | 130,447 | 1/17/2020 | |
7.1.8 | 1,172 | 1/17/2020 | |
7.1.4 | 71,342 | 1/13/2020 | |
7.1.3 | 158,920 | 1/6/2020 | |
7.1.1 | 433,528 | 12/21/2019 | |
7.0.16 | 11,559 | 12/19/2019 | |
7.0.15 | 89,583 | 12/5/2019 | |
7.0.7 | 725,833 | 10/21/2019 | |
7.0.5 | 35,661 | 10/11/2019 | |
7.0.4 | 454,631 | 9/29/2019 | |
6.0.38 | 99,230 | 9/26/2019 | |
6.0.36 | 15,065 | 9/24/2019 | |
6.0.34 | 6,822 | 9/24/2019 | |
6.0.32 | 78,607 | 9/9/2019 | |
6.0.27 | 112,033 | 9/3/2019 | |
6.0.25 | 1,199 | 9/2/2019 | |
6.0.23 | 62,771 | 8/26/2019 | |
6.0.21 | 96,435 | 8/12/2019 | |
6.0.19 | 49,560 | 8/9/2019 | |
6.0.17 | 27,914 | 8/5/2019 | |
6.0.15 | 149,997 | 7/9/2019 | |
6.0.14 | 121,909 | 6/29/2019 | |
6.0.13 | 1,353 | 6/28/2019 | |
6.0.11 | 38,445 | 6/21/2019 | |
6.0.9 | 1,057 | 6/21/2019 | |
6.0.7 | 29,274 | 6/16/2019 | |
6.0.6 | 912 | 6/16/2019 | |
6.0.5 | 13,937 | 6/13/2019 | |
6.0.3 | 34,283 | 6/13/2019 | |
6.0.1 | 135,281 | 6/7/2019 | |
5.0.1 | 68,117 | 6/3/2019 | |
4.2.17 | 13,461 | 5/30/2019 | |
4.2.15 | 18,028 | 5/28/2019 | |
4.2.13 | 57,840 | 5/15/2019 | |
4.2.12 | 3,806 | 5/15/2019 | |
4.2.10 | 58,376 | 5/10/2019 | |
4.2.9 | 119,392 | 5/10/2019 | |
4.2.8 | 135,004 | 4/28/2019 | |
4.2.4 | 61,502 | 4/19/2019 | |
4.1.6 | 175,194 | 4/9/2019 | |
4.0.11 | 131,975 | 3/30/2019 | |
3.1.1 | 185,733 | 3/10/2019 | |
3.0.10 | 719,859 | 1/5/2019 | |
3.0.2 | 227,061 | 12/7/2018 | |
2.2.18-beta | 1,339 | 12/3/2018 | |
2.2.17-beta | 723 | 12/2/2018 | |
2.2.16-beta | 686 | 12/1/2018 | |
2.2.15-beta | 718 | 12/1/2018 | |
2.2.14-beta | 703 | 12/1/2018 | |
2.2.13-beta | 743 | 12/1/2018 | |
2.2.12-beta | 748 | 12/1/2018 | |
2.2.11-beta | 703 | 12/1/2018 | |
2.2.10-beta | 666 | 11/28/2018 | |
2.2.9-beta | 955 | 11/16/2018 | |
2.2.8-beta | 11,540 | 11/9/2018 | |
2.2.7-beta | 813 | 11/5/2018 | |
2.2.6-beta | 778 | 10/30/2018 | |
2.2.5-beta | 742 | 10/30/2018 | |
2.2.4-beta | 744 | 10/30/2018 | |
2.2.3-beta | 747 | 10/29/2018 | |
2.2.2-beta | 748 | 10/25/2018 | |
2.1.0.256 | 265,951 | 10/20/2018 | |
2.1.0.247 | 87,233 | 10/15/2018 | |
2.1.0.237 | 20,786 | 10/14/2018 | |
2.1.0.236 | 94,936 | 10/10/2018 | |
2.1.0.235 | 41,628 | 10/8/2018 | |
2.1.0.234 | 1,193 | 10/8/2018 | |
2.1.0.233 | 6,697 | 10/6/2018 | |
2.1.0.232 | 5,404 | 10/4/2018 | |
2.1.0.231 | 41,304 | 9/19/2018 | |
2.1.0.230 | 83,845 | 9/8/2018 | |
2.1.0.229 | 3,090 | 9/6/2018 | |
2.1.0.228 | 111,114 | 8/27/2018 | |
2.1.0.227 | 145,900 | 8/16/2018 | |
2.1.0.226 | 11,962 | 8/14/2018 | |
2.1.0.217 | 3,167 | 8/10/2018 | |
2.1.0.216 | 5,842 | 8/9/2018 | |
2.1.0.215 | 6,884 | 8/6/2018 | |
2.1.0.214 | 1,640 | 8/5/2018 | |
2.1.0.213 | 1,283 | 8/4/2018 | |
2.1.0.211 | 33,027 | 7/25/2018 | |
2.1.0.210 | 4,982 | 7/21/2018 | |
2.1.0.209 | 91,967 | 7/20/2018 | |
2.1.0.208 | 4,294 | 7/17/2018 | |
2.1.0.207 | 1,296 | 7/17/2018 | |
2.1.0.206 | 32,901 | 7/15/2018 | |
2.1.0.205 | 1,884 | 7/12/2018 | |
2.1.0.204 | 1,728 | 7/11/2018 | |
2.1.0.203 | 1,424 | 7/11/2018 | |
2.1.0.202 | 9,296 | 7/10/2018 | |
2.1.0.201 | 3,454 | 7/10/2018 | |
2.1.0.200 | 1,876 | 7/9/2018 | |
2.1.0.199 | 1,427 | 7/9/2018 | |
2.1.0.198 | 2,546 | 7/8/2018 | |
2.1.0.197 | 1,425 | 7/8/2018 | |
2.1.0.196 | 1,320 | 7/8/2018 | |
2.1.0.195 | 1,374 | 7/7/2018 | |
2.1.0.194 | 1,401 | 7/7/2018 | |
2.1.0.193 | 1,378 | 7/7/2018 | |
2.1.0.192 | 8,759 | 7/7/2018 | |
2.1.0.191 | 1,371 | 7/7/2018 | |
2.1.0.190 | 1,346 | 7/7/2018 | |
2.1.0.189 | 1,410 | 7/7/2018 | |
2.1.0.188 | 1,312 | 7/6/2018 | |
2.1.0.187 | 12,864 | 7/6/2018 | |
2.1.0.186 | 34,515 | 7/6/2018 | |
2.1.0.185 | 1,507 | 7/5/2018 | |
2.1.0.184 | 9,728 | 7/4/2018 | |
2.1.0.183 | 1,396 | 7/4/2018 | |
2.1.0.182 | 1,332 | 7/4/2018 | |
2.1.0.181 | 1,386 | 7/4/2018 | |
2.1.0.180 | 1,551 | 7/4/2018 | |
2.1.0.179 | 1,387 | 7/4/2018 | |
2.1.0.178 | 585,064 | 1/11/2018 | |
2.1.0.177 | 10,668 | 1/2/2018 | |
2.1.0.176 | 56,356 | 12/8/2017 | |
2.1.0.175 | 65,295 | 11/16/2017 | |
2.1.0.174 | 119,235 | 11/7/2017 | |
2.1.0.173 | 1,670 | 11/7/2017 | |
2.1.0.172 | 1,552 | 11/7/2017 | |
2.1.0.171 | 2,199 | 11/4/2017 | |
2.1.0.170 | 1,898 | 11/4/2017 | |
2.1.0.169 | 1,546 | 11/4/2017 | |
2.1.0.168 | 1,559 | 11/4/2017 | |
2.1.0.166 | 1,579 | 11/4/2017 | |
2.1.0.164 | 1,545 | 11/4/2017 | |
2.1.0.163 | 1,543 | 11/4/2017 | |
2.1.0.159 | 47,745 | 10/22/2017 | |
2.0.0.144 | 339,755 | 5/3/2017 | |
2.0.0.143 | 321,415 | 4/7/2017 | |
2.0.0.142 | 1,174 | 4/7/2017 | |
2.0.0.141 | 15,303 | 3/2/2017 | |
2.0.0.140 | 27,700 | 1/17/2017 | |
2.0.0.139 | 23,240 | 1/6/2017 | |
2.0.0.138 | 31,146 | 11/17/2016 | |
2.0.0.137 | 28,922 | 10/14/2016 | |
2.0.0.136 | 6,794 | 10/1/2016 | |
2.0.0.124 | 508,430 | 2/8/2016 | |
2.0.0.123 | 23,820 | 12/29/2015 | |
2.0.0.122 | 1,525 | 12/28/2015 | |
2.0.0.121 | 1,460 | 12/28/2015 | |
2.0.0.120 | 7,812 | 12/6/2015 | |
2.0.0.119 | 1,512 | 12/6/2015 | |
2.0.0.118 | 15,371 | 11/4/2015 | |
2.0.0.117 | 7,269 | 10/19/2015 | |
2.0.0.116 | 87,022 | 7/20/2015 | |
2.0.0.115 | 29,368 | 5/18/2015 | |
2.0.0.114 | 1,506 | 5/18/2015 | |
2.0.0.113 | 73,521 | 3/18/2015 | |
2.0.0.112 | 2,006 | 3/11/2015 | |
2.0.0.111 | 1,301 | 3/11/2015 | |
2.0.0.110 | 1,320 | 3/11/2015 | |
2.0.0.109 | 1,308 | 3/11/2015 | |
2.0.0.108 | 3,442 | 3/4/2015 | |
2.0.0.107 | 6,151 | 2/23/2015 | |
2.0.0.106 | 1,956 | 2/20/2015 | |
2.0.0.105 | 1,745 | 2/19/2015 | |
2.0.0.104 | 7,937 | 2/14/2015 | |
2.0.0.103 | 6,361 | 2/7/2015 | |
2.0.0.102 | 1,349 | 2/7/2015 | |
2.0.0.101 | 4,867 | 1/25/2015 | |
2.0.0.100 | 1,551 | 1/25/2015 | |
2.0.0.99 | 1,449 | 1/25/2015 | |
2.0.0.98 | 2,085 | 1/25/2015 | |
1.4.0.93 | 142,595 | 1/25/2015 | |
1.4.0.92 | 62,621 | 9/29/2014 | |
1.4.0.89 | 1,366 | 9/29/2014 | |
1.4.0.88 | 1,349 | 9/29/2014 | |
1.4.0.87 | 14,713 | 9/21/2014 | |
1.4.0.86 | 385,845 | 5/7/2014 | |
1.4.0.85 | 3,615 | 4/23/2014 | |
1.4.0.84 | 4,174 | 4/7/2014 | |
1.4.0.83 | 24,670 | 3/24/2014 | |
1.4.0.82 | 1,424 | 3/24/2014 | |
1.4.0.81 | 7,207 | 3/17/2014 | |
1.4.0.80 | 1,432 | 3/17/2014 | |
1.4.0.79 | 6,604 | 3/10/2014 | |
1.4.0.78 | 3,127 | 3/2/2014 | |
1.4.0.77 | 1,470 | 3/2/2014 | |
1.4.0.76 | 3,465 | 2/21/2014 | |
1.4.0.75 | 1,401 | 2/20/2014 | |
1.4.0.74 | 28,433 | 1/12/2014 | |
1.4.0.73 | 8,136 | 12/22/2013 | |
1.4.0.72 | 5,786 | 12/1/2013 | |
1.4.0.71 | 1,441 | 12/1/2013 | |
1.4.0.70 | 1,789 | 11/21/2013 | |
1.4.0.69 | 1,717 | 11/20/2013 | |
1.4.0.68 | 3,667 | 10/15/2013 | |
1.4.0.67 | 1,415 | 10/15/2013 | |
1.4.0.66 | 27,921 | 7/31/2013 | |
1.4.0.65 | 3,472 | 7/9/2013 | |
1.4.0.64 | 4,846 | 4/26/2013 | |
1.4.0.63 | 1,342 | 4/26/2013 | |
1.4.0.62 | 1,415 | 4/26/2013 | |
1.4.0.61 | 1,395 | 4/25/2013 | |
1.4.0.60 | 1,334 | 4/25/2013 | |
1.4.0.59 | 1,345 | 4/25/2013 | |
1.4.0.58 | 1,410 | 4/25/2013 | |
1.4.0.57 | 1,363 | 4/25/2013 | |
1.4.0.56 | 1,377 | 4/25/2013 | |
1.4.0.55 | 1,412 | 4/25/2013 | |
1.4.0.54 | 1,390 | 4/25/2013 | |
1.4.0.53 | 1,368 | 4/25/2013 | |
1.4.0.52 | 1,425 | 4/25/2013 | |
1.4.0.51 | 1,410 | 4/22/2013 | |
1.4.0.50 | 1,377 | 4/22/2013 | |
1.4.0.49 | 2,489 | 4/11/2013 | |
1.4.0.48 | 2,298 | 3/24/2013 | |
1.4.0.47 | 1,371 | 3/24/2013 | |
1.4.0.46 | 1,384 | 3/24/2013 | |
1.4.0.45 | 1,427 | 3/24/2013 | |
1.4.0.44 | 2,200 | 3/16/2013 | |
1.4.0.43 | 1,347 | 3/16/2013 | |
1.4.0.42 | 1,396 | 3/16/2013 | |
1.4.0.41 | 1,569 | 3/6/2013 | |
1.4.0.40 | 4,177 | 12/24/2012 | |
1.4.0.39 | 1,364 | 12/23/2012 | |
1.4.0.38 | 1,377 | 12/23/2012 | |
1.4.0.37 | 2,603 | 11/29/2012 | |
1.4.0.36 | 1,476 | 11/29/2012 | |
1.4.0.35 | 2,720 | 9/25/2012 | |
1.4.0.34 | 1,460 | 9/25/2012 | |
1.4.0.33 | 1,475 | 9/25/2012 | |
1.4.0.32 | 6,321 | 7/14/2012 | |
1.4.0.31 | 1,440 | 7/14/2012 | |
1.4.0.30 | 1,403 | 7/12/2012 | |
1.4.0.29 | 1,464 | 7/12/2012 | |
1.4.0.28 | 1,403 | 7/12/2012 | |
1.4.0.27 | 1,410 | 7/12/2012 | |
1.4.0.26 | 1,494 | 7/2/2012 | |
1.4.0.25 | 1,468 | 7/2/2012 | |
1.4.0.24 | 3,653 | 5/15/2012 | |
1.4.0.23 | 2,602 | 4/25/2012 | |
1.4.0.22 | 1,416 | 4/25/2012 | |
1.4.0.21 | 1,404 | 4/25/2012 | |
1.4.0.20 | 2,011 | 4/18/2012 | |
1.4.0.19 | 1,472 | 4/18/2012 | |
1.4.0.18 | 1,425 | 4/18/2012 | |
1.4.0.17 | 1,497 | 4/18/2012 | |
1.4.0.14 | 1,467 | 4/4/2012 | |
1.4.0.13 | 1,840 | 3/27/2012 | |
1.4.0.12 | 2,235 | 9/16/2011 | |
1.4.0.11 | 1,701 | 9/16/2011 | |
1.3.0 | 2,064 | 5/27/2011 | |
1.2.0 | 38,513 | 5/26/2011 |