System.IO.Abstractions
22.0.16
dotnet add package System.IO.Abstractions --version 22.0.16
NuGet\Install-Package System.IO.Abstractions -Version 22.0.16
<PackageReference Include="System.IO.Abstractions" Version="22.0.16" />
<PackageVersion Include="System.IO.Abstractions" Version="22.0.16" />
<PackageReference Include="System.IO.Abstractions" />
paket add System.IO.Abstractions --version 22.0.16
#r "nuget: System.IO.Abstractions, 22.0.16"
#:package System.IO.Abstractions@22.0.16
#addin nuget:?package=System.IO.Abstractions&version=22.0.16
#tool nuget:?package=System.IO.Abstractions&version=22.0.16
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.Wrappers
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.That(ex.Message, Is.EqualTo("We can't go on together. It's not me, it's you."));
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);
}
}
}
Relationship with Testably.Abstractions
Testably.Abstractions
is a complementary project that uses the same interfaces as TestableIO. This means no changes to your production code are necessary when switching between the testing libraries.
Both projects share the same maintainer, but active development and new features are primarily focused on the Testably.Abstractions project. TestableIO.System.IO.Abstractions continues to be maintained for stability and compatibility, but significant new functionality is unlikely to be added.
When to use Testably.Abstractions vs TestableIO
Use TestableIO.System.IO.Abstractions if you need:
- Basic file system mocking capabilities
- Direct manipulation of stored file entities (MockFileData, MockDirectoryData)
- Established codebase with existing TestableIO integration
Use Testably.Abstractions if you need:
- Advanced testing scenarios (FileSystemWatcher, SafeFileHandles, multiple drives)
- Additional abstractions (ITimeSystem, IRandomSystem)
- Cross-platform file system simulation (Linux, MacOS, Windows)Expand commentComment on line R163ResolvedCode has comments. Press enter to view.
- More extensive and consistent behavior validation
- Active development and new features
Migrating from TestableIO
Switching from TestableIO to Testably only requires changes in your test projects:
Replace the NuGet package reference in your test projects:
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" /> <PackageReference Include="Testably.Abstractions.Testing" />
Update your test code to use the new
MockFileSystem
:// Before (TestableIO) var fileSystem = new MockFileSystem(); fileSystem.AddDirectory("some-directory"); fileSystem.AddFile("some-file.txt", new MockFileData("content")); // After (Testably) var fileSystem = new MockFileSystem(); fileSystem.Directory.CreateDirectory("some-directory"); fileSystem.File.WriteAllText("some-file.txt", "content"); // or using fluent initialization: fileSystem.Initialize() .WithSubdirectory("some-directory") .WithFile("some-file.txt").Which(f => f .HasStringContent("content"));
Your production code using IFileSystem
remains unchanged.
Other 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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. 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. |
-
.NETFramework 4.7.2
- TestableIO.System.IO.Abstractions (>= 22.0.16)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.16)
-
.NETStandard 2.0
- TestableIO.System.IO.Abstractions (>= 22.0.16)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.16)
-
.NETStandard 2.1
- TestableIO.System.IO.Abstractions (>= 22.0.16)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.16)
-
net6.0
- TestableIO.System.IO.Abstractions (>= 22.0.16)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.16)
-
net8.0
- TestableIO.System.IO.Abstractions (>= 22.0.16)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.16)
-
net9.0
- TestableIO.System.IO.Abstractions (>= 22.0.16)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.16)
NuGet packages (342)
Showing the top 5 NuGet packages that depend on System.IO.Abstractions:
Package | Downloads |
---|---|
Reo.Core.Hosting
Package Description |
|
VirtoCommerce.Platform.Core
Virto Commerce is a flexible B2B ecommerce solution that offers powerful tools for enterprise business users. https://virtocommerce.com |
|
Reo.Core.IdentityModel
Package Description |
|
Reo.Core.AutoHistory
Package Description |
|
Ghostscript.NET
A C# binding for Ghostscript library |
GitHub repositories (69)
Showing the top 20 popular GitHub repositories that depend on System.IO.Abstractions:
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.
|
|
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
|
|
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.
|
|
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).
|
|
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
|
|
Readarr/Readarr
Book Manager and Automation (Sonarr for Ebooks)
|
|
waf/CSharpRepl
A command line C# REPL with syntax highlighting – explore the language, libraries and nuget packages interactively.
|
|
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.
|
|
hirschmann/nbfc
NoteBook FanControl
|
|
GitTools/GitVersion
From git log to SemVer in no time
|
|
dotnet/macios
.NET for iOS, Mac Catalyst, macOS, and tvOS provide open-source bindings of the Apple SDKs for use with .NET managed languages such as C#
|
|
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI
|
|
jwallet/spy-spotify
🎤 Records Spotify to mp3 without ads and adds media tags to the files 🎵
|
|
rubberduck-vba/Rubberduck
Every programmer needs a rubberduck. COM add-in for the VBA & VB6 IDE (VBE).
|
|
Azure/azure-functions-host
The host/runtime that powers Azure Functions
|
|
belav/csharpier
CSharpier is an opinionated code formatter for c#.
|
|
dotnet-outdated/dotnet-outdated
A .NET Core global tool to display and update outdated NuGet packages in a project
|
|
Thraka/SadConsole
A .NET ascii/ansi console engine written in C# for MonoGame and SFML. Create your own text roguelike (or other) games!
|
|
VirtoCommerce/vc-platform
Virto Commerce B2B Innovation Platform
|
Version | Downloads | Last Updated | |
---|---|---|---|
22.0.16 | 78 | 9/14/2025 | |
22.0.16-pre.2 | 11 | 9/14/2025 | |
22.0.16-pre.1 | 15 | 9/13/2025 | |
22.0.15 | 375,203 | 7/8/2025 | |
22.0.14 | 867,123 | 4/18/2025 | |
22.0.13 | 200,186 | 4/4/2025 | |
22.0.12 | 367,940 | 3/13/2025 | |
22.0.11 | 177,989 | 3/1/2025 | |
22.0.10 | 294,742 | 2/23/2025 | |
22.0.10-beta.1 | 152 | 2/22/2025 | |
22.0.9 | 13,264 | 2/22/2025 | |
21.3.1 | 703,136 | 1/29/2025 | |
21.2.12 | 53,634 | 1/28/2025 | |
21.2.8 | 32,006 | 1/25/2025 | |
21.2.1 | 609,374 | 12/28/2024 | |
21.1.7 | 789,745 | 12/3/2024 | |
21.1.3 | 837,275 | 11/8/2024 | |
21.1.2 | 10,778 | 11/8/2024 | |
21.1.1 | 10,546 | 11/7/2024 | |
21.0.29 | 3,261,619 | 7/25/2024 | |
21.0.26 | 486,245 | 7/13/2024 | |
21.0.22 | 431,431 | 6/22/2024 | |
21.0.2 | 2,305,232 | 3/17/2024 | |
20.0.34 | 132,510 | 3/15/2024 | |
20.0.28 | 167,983 | 3/9/2024 | |
20.0.15 | 1,486,273 | 1/22/2024 | |
20.0.4 | 811,833 | 12/5/2023 | |
20.0.1 | 5,096 | 12/5/2023 | |
19.2.91 | 425,571 | 12/5/2023 | |
19.2.87 | 778,244 | 11/16/2023 | |
19.2.69 | 1,807,457 | 8/29/2023 | |
19.2.67 | 53,495 | 8/25/2023 | |
19.2.66 | 4,504 | 8/25/2023 | |
19.2.64 | 133,342 | 8/22/2023 | |
19.2.63 | 4,895 | 8/22/2023 | |
19.2.61 | 21,203 | 8/21/2023 | |
19.2.51 | 271,687 | 7/31/2023 | |
19.2.50 | 7,532 | 7/31/2023 | |
19.2.29 | 1,861,099 | 5/17/2023 | |
19.2.26 | 45,013 | 5/12/2023 | |
19.2.25 | 5,017 | 5/12/2023 | |
19.2.22 | 199,911 | 5/4/2023 | |
19.2.18 | 161,667 | 4/24/2023 | |
19.2.17 | 13,280 | 4/23/2023 | |
19.2.16 | 124,392 | 4/19/2023 | |
19.2.15 | 400,203 | 4/18/2023 | |
19.2.13 | 4,732 | 4/18/2023 | |
19.2.12 | 5,899 | 4/18/2023 | |
19.2.11 | 74,890 | 4/13/2023 | |
19.2.9 | 55,917 | 4/11/2023 | |
19.2.8 | 8,976 | 4/11/2023 | |
19.2.4 | 1,377,801 | 3/13/2023 | |
19.2.1 | 377,598 | 3/2/2023 | |
19.1.18 | 412,418 | 2/14/2023 | |
19.1.14 | 189,106 | 1/31/2023 | |
19.1.13 | 373,677 | 1/24/2023 | |
19.1.5 | 3,602,872 | 12/19/2022 | |
19.1.1 | 94,272 | 12/13/2022 | |
19.0.1 | 246,690 | 12/8/2022 | |
18.0.1 | 504,529 | 11/28/2022 | |
17.2.26 | 316,185 | 11/18/2022 | |
17.2.3 | 4,868,440 | 9/16/2022 | |
17.2.1 | 246,235 | 9/10/2022 | |
17.1.1 | 1,282,017 | 8/15/2022 | |
17.0.28 | 19,172 | 8/15/2022 | |
17.0.24 | 1,521,674 | 7/19/2022 | |
17.0.23 | 478,017 | 7/15/2022 | |
17.0.21 | 558,237 | 7/4/2022 | |
17.0.18 | 996,233 | 6/9/2022 | |
17.0.15 | 499,103 | 5/20/2022 | |
17.0.14 | 62,130 | 5/18/2022 | |
17.0.13 | 155,847 | 5/17/2022 | |
17.0.12 | 78,052 | 5/16/2022 | |
17.0.11 | 22,055 | 5/15/2022 | |
17.0.10 | 260,725 | 5/12/2022 | |
17.0.9 | 6,368 | 5/11/2022 | |
17.0.8 | 6,922 | 5/11/2022 | |
17.0.7 | 5,651 | 5/11/2022 | |
17.0.6 | 5,661 | 5/11/2022 | |
17.0.5 | 5,596 | 5/11/2022 | |
17.0.4 | 22,652 | 5/11/2022 | |
17.0.3 | 712,985 | 4/26/2022 | |
17.0.2 | 5,773 | 4/26/2022 | |
17.0.1 | 28,493 | 4/25/2022 | |
16.1.26 | 127,202 | 4/24/2022 | |
16.1.25 | 1,251,620 | 3/23/2022 | |
16.1.24 | 59,053 | 3/22/2022 | |
16.1.23 | 188,176 | 3/14/2022 | |
16.1.22 | 9,149 | 3/11/2022 | |
16.1.21 | 4,667 | 3/11/2022 | |
16.1.20 | 257,143 | 3/8/2022 | |
16.1.19 | 4,750 | 3/8/2022 | |
16.1.18 | 4,799 | 3/8/2022 | |
16.1.17 | 4,674 | 3/8/2022 | |
16.1.16 | 56,789 | 3/3/2022 | |
16.1.15 | 341,781 | 2/19/2022 | |
16.1.14 | 4,766 | 2/19/2022 | |
16.1.13 | 5,764 | 2/19/2022 | |
16.1.12 | 4,731 | 2/19/2022 | |
16.1.11 | 45,411 | 2/17/2022 | |
16.1.10 | 608,430 | 2/4/2022 | |
16.1.9 | 43,687 | 2/2/2022 | |
16.1.8 | 6,233 | 2/2/2022 | |
16.1.7 | 32,892 | 1/31/2022 | |
16.1.6 | 5,019 | 1/31/2022 | |
16.1.5 | 8,211 | 1/31/2022 | |
16.1.4 | 777,568 | 1/12/2022 | |
16.1.2 | 5,623 | 1/12/2022 | |
16.1.1 | 45,781 | 1/11/2022 | |
16.0.8 | 205,058 | 1/9/2022 | |
16.0.7 | 65,816 | 1/8/2022 | |
16.0.6 | 4,359 | 1/8/2022 | |
16.0.5 | 4,324 | 1/8/2022 | |
16.0.4 | 4,386 | 1/8/2022 | |
16.0.3 | 46,828 | 1/6/2022 | |
16.0.2 | 7,199 | 1/6/2022 | |
16.0.1 | 789,361 | 12/22/2021 | |
15.0.1 | 6,023 | 12/22/2021 | |
14.0.13 | 391,813 | 12/11/2021 | |
14.0.12 | 4,524 | 12/11/2021 | |
14.0.11 | 4,693 | 12/11/2021 | |
14.0.10 | 4,509 | 12/11/2021 | |
14.0.9 | 4,616 | 12/11/2021 | |
14.0.8 | 4,662 | 12/11/2021 | |
14.0.7 | 4,490 | 12/10/2021 | |
14.0.6 | 4,332 | 12/10/2021 | |
14.0.5 | 4,356 | 12/10/2021 | |
14.0.4 | 4,623 | 12/10/2021 | |
14.0.3 | 1,305,056 | 11/27/2021 | |
14.0.2 | 6,629 | 11/26/2021 | |
14.0.1 | 25,780 | 11/26/2021 | |
13.2.47 | 11,221,195 | 8/25/2021 | |
13.2.46 | 4,716 | 8/25/2021 | |
13.2.45 | 4,476 | 8/25/2021 | |
13.2.43 | 775,041 | 7/27/2021 | |
13.2.42 | 1,086,045 | 7/23/2021 | |
13.2.41 | 146,296 | 7/15/2021 | |
13.2.40 | 6,602 | 7/14/2021 | |
13.2.39 | 6,204 | 7/14/2021 | |
13.2.38 | 528,133 | 6/15/2021 | |
13.2.37 | 34,075 | 6/10/2021 | |
13.2.36 | 4,494 | 6/10/2021 | |
13.2.35 | 4,469 | 6/10/2021 | |
13.2.34 | 4,522 | 6/10/2021 | |
13.2.33 | 4,528,185 | 5/15/2021 | |
13.2.32 | 4,608 | 5/15/2021 | |
13.2.31 | 149,831 | 5/2/2021 | |
13.2.30 | 4,720 | 5/2/2021 | |
13.2.29 | 938,120 | 4/14/2021 | |
13.2.28 | 829,170 | 3/25/2021 | |
13.2.27 | 5,767 | 3/25/2021 | |
13.2.25 | 4,198,833 | 3/9/2021 | |
13.2.24 | 50,685 | 3/6/2021 | |
13.2.23 | 300,601 | 2/24/2021 | |
13.2.22 | 4,860 | 2/24/2021 | |
13.2.20 | 21,958 | 2/23/2021 | |
13.2.19 | 4,683 | 2/23/2021 | |
13.2.18 | 5,579 | 2/23/2021 | |
13.2.17 | 8,192 | 2/23/2021 | |
13.2.16 | 4,812 | 2/22/2021 | |
13.2.15 | 23,581 | 2/18/2021 | |
13.2.14 | 4,739 | 2/18/2021 | |
13.2.13 | 4,834 | 2/18/2021 | |
13.2.12 | 4,696 | 2/18/2021 | |
13.2.11 | 50,137 | 2/16/2021 | |
13.2.10 | 291,112 | 2/10/2021 | |
13.2.9 | 706,572 | 1/14/2021 | |
13.2.8 | 303,384 | 12/22/2020 | |
13.2.7 | 25,590 | 12/20/2020 | |
13.2.6 | 139,967 | 12/16/2020 | |
13.2.5 | 118,204 | 12/9/2020 | |
13.2.4 | 100,588 | 12/5/2020 | |
13.2.3 | 5,196 | 12/4/2020 | |
13.2.2 | 203,462 | 11/26/2020 | |
13.2.1 | 20,644 | 11/26/2020 | |
13.1.2 | 4,848 | 11/25/2020 | |
13.1.1 | 4,773 | 11/25/2020 | |
13.0.1 | 251,192 | 11/21/2020 | |
12.2.27 | 78,167 | 11/21/2020 | |
12.2.26 | 7,498 | 11/20/2020 | |
12.2.25 | 148,027 | 11/17/2020 | |
12.2.24 | 88,482 | 11/15/2020 | |
12.2.23 | 4,785 | 11/15/2020 | |
12.2.22 | 4,991 | 11/14/2020 | |
12.2.21 | 11,379 | 11/12/2020 | |
12.2.20 | 8,851 | 11/12/2020 | |
12.2.19 | 103,997 | 11/5/2020 | |
12.2.7 | 1,001,283 | 10/15/2020 | |
12.2.6 | 48,740 | 10/15/2020 | |
12.2.5 | 112,349 | 10/12/2020 | |
12.2.4 | 4,747 | 10/12/2020 | |
12.2.3 | 53,275 | 10/12/2020 | |
12.2.2 | 65,233 | 10/7/2020 | |
12.2.1 | 275,956 | 9/28/2020 | |
12.1.11 | 7,315 | 9/28/2020 | |
12.1.10 | 97,369 | 9/24/2020 | |
12.1.9 | 483,891 | 9/11/2020 | |
12.1.2 | 4,712 | 9/11/2020 | |
12.1.1 | 944,452 | 8/3/2020 | |
12.0.13 | 18,840 | 8/2/2020 | |
12.0.10 | 121,401 | 7/25/2020 | |
12.0.9 | 84,085 | 7/21/2020 | |
12.0.8 | 101,005 | 7/19/2020 | |
12.0.7 | 4,176 | 7/19/2020 | |
12.0.6 | 4,262 | 7/19/2020 | |
12.0.5 | 109,615 | 7/11/2020 | |
12.0.4 | 105,331 | 7/2/2020 | |
12.0.3 | 51,512 | 6/29/2020 | |
12.0.2 | 103,767 | 6/23/2020 | |
12.0.1 | 53,710 | 6/20/2020 | |
11.0.18 | 1,652,477 | 6/20/2020 | |
11.0.17 | 35,628 | 6/19/2020 | |
11.0.16 | 4,922 | 6/18/2020 | |
11.0.15 | 29,114 | 6/18/2020 | |
11.0.14 | 5,255 | 6/17/2020 | |
11.0.13 | 5,435 | 6/17/2020 | |
11.0.12 | 4,732 | 6/17/2020 | |
11.0.11 | 4,937 | 6/17/2020 | |
11.0.10 | 9,752 | 6/16/2020 | |
11.0.9 | 4,136 | 6/16/2020 | |
11.0.8 | 4,260 | 6/16/2020 | |
11.0.7 | 708,477 | 5/28/2020 | |
11.0.6 | 1,425,622 | 5/8/2020 | |
11.0.5 | 51,858 | 5/6/2020 | |
11.0.4 | 72,318 | 5/1/2020 | |
11.0.3 | 7,915 | 4/30/2020 | |
11.0.2 | 90,192 | 4/26/2020 | |
11.0.1 | 4,995 | 4/26/2020 | |
10.0.10 | 42,699 | 4/20/2020 | |
10.0.9 | 26,035 | 4/17/2020 | |
10.0.8 | 198,118 | 4/7/2020 | |
10.0.7 | 27,485 | 4/3/2020 | |
10.0.6 | 26,221 | 4/1/2020 | |
10.0.5 | 4,781 | 4/1/2020 | |
10.0.4 | 4,794 | 4/1/2020 | |
10.0.1 | 214,678 | 3/21/2020 | |
9.0.6 | 41,996 | 3/19/2020 | |
9.0.5 | 87,939 | 3/16/2020 | |
9.0.4 | 481,714 | 2/18/2020 | |
9.0.3 | 5,527 | 2/18/2020 | |
9.0.2 | 30,117 | 2/11/2020 | |
9.0.1 | 5,064 | 2/11/2020 | |
8.1.1 | 106,477 | 2/11/2020 | |
8.0.6 | 5,025 | 2/11/2020 | |
8.0.5 | 128,395 | 1/29/2020 | |
8.0.4 | 9,013 | 1/27/2020 | |
8.0.3 | 225,704 | 1/19/2020 | |
7.1.10 | 329,805 | 1/17/2020 | |
7.1.8 | 5,528 | 1/17/2020 | |
7.1.4 | 98,852 | 1/13/2020 | |
7.1.3 | 317,739 | 1/6/2020 | |
7.1.1 | 903,731 | 12/21/2019 | |
7.0.16 | 23,411 | 12/19/2019 | |
7.0.15 | 111,992 | 12/5/2019 | |
7.0.7 | 1,566,268 | 10/21/2019 | |
7.0.5 | 42,711 | 10/11/2019 | |
7.0.4 | 1,509,491 | 9/29/2019 | |
6.0.38 | 124,076 | 9/26/2019 | |
6.0.36 | 33,420 | 9/24/2019 | |
6.0.34 | 12,982 | 9/24/2019 | |
6.0.32 | 105,053 | 9/9/2019 | |
6.0.27 | 186,775 | 9/3/2019 | |
6.0.25 | 5,215 | 9/2/2019 | |
6.0.23 | 80,823 | 8/26/2019 | |
6.0.21 | 108,338 | 8/12/2019 | |
6.0.19 | 53,669 | 8/9/2019 | |
6.0.17 | 52,021 | 8/5/2019 | |
6.0.15 | 190,609 | 7/9/2019 | |
6.0.14 | 203,669 | 6/29/2019 | |
6.0.13 | 5,322 | 6/28/2019 | |
6.0.11 | 55,805 | 6/21/2019 | |
6.0.9 | 5,151 | 6/21/2019 | |
6.0.7 | 49,697 | 6/16/2019 | |
6.0.6 | 4,869 | 6/16/2019 | |
6.0.5 | 25,228 | 6/13/2019 | |
6.0.3 | 38,870 | 6/13/2019 | |
6.0.1 | 250,443 | 6/7/2019 | |
5.0.1 | 132,173 | 6/3/2019 | |
4.2.17 | 25,238 | 5/30/2019 | |
4.2.15 | 23,857 | 5/28/2019 | |
4.2.13 | 130,015 | 5/15/2019 | |
4.2.12 | 8,139 | 5/15/2019 | |
4.2.10 | 72,865 | 5/10/2019 | |
4.2.9 | 123,455 | 5/10/2019 | |
4.2.8 | 148,742 | 4/28/2019 | |
4.2.4 | 96,639 | 4/19/2019 | |
4.1.6 | 236,416 | 4/9/2019 | |
4.0.11 | 227,363 | 3/30/2019 | |
3.1.1 | 261,894 | 3/10/2019 | |
3.0.10 | 2,131,545 | 1/5/2019 | |
3.0.2 | 408,644 | 12/7/2018 | |
2.2.18-beta | 3,590 | 12/3/2018 | |
2.2.17-beta | 2,605 | 12/2/2018 | |
2.2.16-beta | 2,430 | 12/1/2018 | |
2.2.15-beta | 2,536 | 12/1/2018 | |
2.2.14-beta | 2,508 | 12/1/2018 | |
2.2.13-beta | 2,556 | 12/1/2018 | |
2.2.12-beta | 2,631 | 12/1/2018 | |
2.2.11-beta | 2,459 | 12/1/2018 | |
2.2.10-beta | 2,544 | 11/28/2018 | |
2.2.9-beta | 2,776 | 11/16/2018 | |
2.2.8-beta | 13,408 | 11/9/2018 | |
2.2.7-beta | 2,689 | 11/5/2018 | |
2.2.6-beta | 2,657 | 10/30/2018 | |
2.2.5-beta | 2,569 | 10/30/2018 | |
2.2.4-beta | 2,552 | 10/30/2018 | |
2.2.3-beta | 2,512 | 10/29/2018 | |
2.2.2-beta | 2,616 | 10/25/2018 | |
2.1.0.256 | 444,183 | 10/20/2018 | |
2.1.0.247 | 95,695 | 10/15/2018 | |
2.1.0.237 | 30,612 | 10/14/2018 | |
2.1.0.236 | 108,892 | 10/10/2018 | |
2.1.0.235 | 47,836 | 10/8/2018 | |
2.1.0.234 | 5,332 | 10/8/2018 | |
2.1.0.233 | 12,215 | 10/6/2018 | |
2.1.0.232 | 10,473 | 10/4/2018 | |
2.1.0.231 | 66,614 | 9/19/2018 | |
2.1.0.230 | 103,371 | 9/8/2018 | |
2.1.0.229 | 7,932 | 9/6/2018 | |
2.1.0.228 | 146,875 | 8/27/2018 | |
2.1.0.227 | 407,052 | 8/16/2018 | |
2.1.0.226 | 41,966 | 8/14/2018 | |
2.1.0.217 | 7,256 | 8/10/2018 | |
2.1.0.216 | 9,944 | 8/9/2018 | |
2.1.0.215 | 23,159 | 8/6/2018 | |
2.1.0.214 | 5,763 | 8/5/2018 | |
2.1.0.213 | 5,298 | 8/4/2018 | |
2.1.0.211 | 37,422 | 7/25/2018 | |
2.1.0.210 | 10,287 | 7/21/2018 | |
2.1.0.209 | 146,340 | 7/20/2018 | |
2.1.0.208 | 8,686 | 7/17/2018 | |
2.1.0.207 | 5,440 | 7/17/2018 | |
2.1.0.206 | 78,485 | 7/15/2018 | |
2.1.0.205 | 6,148 | 7/12/2018 | |
2.1.0.204 | 5,843 | 7/11/2018 | |
2.1.0.203 | 5,773 | 7/11/2018 | |
2.1.0.202 | 13,517 | 7/10/2018 | |
2.1.0.201 | 8,302 | 7/10/2018 | |
2.1.0.200 | 4,797 | 7/9/2018 | |
2.1.0.199 | 4,118 | 7/9/2018 | |
2.1.0.198 | 5,600 | 7/8/2018 | |
2.1.0.197 | 4,157 | 7/8/2018 | |
2.1.0.196 | 3,908 | 7/8/2018 | |
2.1.0.195 | 4,051 | 7/7/2018 | |
2.1.0.194 | 4,174 | 7/7/2018 | |
2.1.0.193 | 4,138 | 7/7/2018 | |
2.1.0.192 | 11,905 | 7/7/2018 | |
2.1.0.191 | 4,031 | 7/7/2018 | |
2.1.0.190 | 4,022 | 7/7/2018 | |
2.1.0.189 | 4,071 | 7/7/2018 | |
2.1.0.188 | 3,878 | 7/6/2018 | |
2.1.0.187 | 17,019 | 7/6/2018 | |
2.1.0.186 | 37,632 | 7/6/2018 | |
2.1.0.185 | 4,241 | 7/5/2018 | |
2.1.0.184 | 12,551 | 7/4/2018 | |
2.1.0.183 | 4,022 | 7/4/2018 | |
2.1.0.182 | 3,770 | 7/4/2018 | |
2.1.0.181 | 4,208 | 7/4/2018 | |
2.1.0.180 | 4,245 | 7/4/2018 | |
2.1.0.179 | 4,158 | 7/4/2018 | |
2.1.0.178 | 855,709 | 1/11/2018 | |
2.1.0.177 | 18,101 | 1/2/2018 | |
2.1.0.176 | 74,805 | 12/8/2017 | |
2.1.0.175 | 77,115 | 11/16/2017 | |
2.1.0.174 | 220,998 | 11/7/2017 | |
2.1.0.173 | 4,326 | 11/7/2017 | |
2.1.0.172 | 4,261 | 11/7/2017 | |
2.1.0.171 | 4,881 | 11/4/2017 | |
2.1.0.170 | 4,528 | 11/4/2017 | |
2.1.0.169 | 4,155 | 11/4/2017 | |
2.1.0.168 | 4,147 | 11/4/2017 | |
2.1.0.166 | 4,268 | 11/4/2017 | |
2.1.0.164 | 4,104 | 11/4/2017 | |
2.1.0.163 | 4,112 | 11/4/2017 | |
2.1.0.159 | 67,707 | 10/22/2017 | |
2.0.0.144 | 469,230 | 5/3/2017 | |
2.0.0.143 | 353,101 | 4/7/2017 | |
2.0.0.142 | 3,325 | 4/7/2017 | |
2.0.0.141 | 20,692 | 3/2/2017 | |
2.0.0.140 | 43,188 | 1/17/2017 | |
2.0.0.139 | 68,968 | 1/6/2017 | |
2.0.0.138 | 60,465 | 11/17/2016 | |
2.0.0.137 | 33,558 | 10/14/2016 | |
2.0.0.136 | 9,089 | 10/1/2016 | |
2.0.0.124 | 840,622 | 2/8/2016 | |
2.0.0.123 | 29,641 | 12/29/2015 | |
2.0.0.122 | 3,757 | 12/28/2015 | |
2.0.0.121 | 3,656 | 12/28/2015 | |
2.0.0.120 | 10,084 | 12/6/2015 | |
2.0.0.119 | 3,667 | 12/6/2015 | |
2.0.0.118 | 21,191 | 11/4/2015 | |
2.0.0.117 | 9,672 | 10/19/2015 | |
2.0.0.116 | 111,908 | 7/20/2015 | |
2.0.0.115 | 37,517 | 5/18/2015 | |
2.0.0.114 | 3,836 | 5/18/2015 | |
2.0.0.113 | 104,971 | 3/18/2015 | |
2.0.0.112 | 4,935 | 3/11/2015 | |
2.0.0.111 | 3,897 | 3/11/2015 | |
2.0.0.110 | 3,549 | 3/11/2015 | |
2.0.0.109 | 3,838 | 3/11/2015 | |
2.0.0.108 | 6,835 | 3/4/2015 | |
2.0.0.107 | 9,592 | 2/23/2015 | |
2.0.0.106 | 5,994 | 2/20/2015 | |
2.0.0.105 | 3,912 | 2/19/2015 | |
2.0.0.104 | 10,301 | 2/14/2015 | |
2.0.0.103 | 8,804 | 2/7/2015 | |
2.0.0.102 | 4,008 | 2/7/2015 | |
2.0.0.101 | 7,305 | 1/25/2015 | |
2.0.0.100 | 3,787 | 1/25/2015 | |
2.0.0.99 | 3,661 | 1/25/2015 | |
2.0.0.98 | 4,542 | 1/25/2015 | |
1.4.0.93 | 218,271 | 1/25/2015 | |
1.4.0.92 | 89,641 | 9/29/2014 | |
1.4.0.89 | 3,600 | 9/29/2014 | |
1.4.0.88 | 3,624 | 9/29/2014 | |
1.4.0.87 | 17,303 | 9/21/2014 | |
1.4.0.86 | 484,284 | 5/7/2014 | |
1.4.0.85 | 6,994 | 4/23/2014 | |
1.4.0.84 | 7,942 | 4/7/2014 | |
1.4.0.83 | 31,193 | 3/24/2014 | |
1.4.0.82 | 3,634 | 3/24/2014 | |
1.4.0.81 | 14,690 | 3/17/2014 | |
1.4.0.80 | 3,594 | 3/17/2014 | |
1.4.0.79 | 9,310 | 3/10/2014 | |
1.4.0.78 | 7,250 | 3/2/2014 | |
1.4.0.77 | 3,722 | 3/2/2014 | |
1.4.0.76 | 8,309 | 2/21/2014 | |
1.4.0.75 | 4,026 | 2/20/2014 | |
1.4.0.74 | 51,435 | 1/12/2014 | |
1.4.0.73 | 11,978 | 12/22/2013 | |
1.4.0.72 | 9,922 | 12/1/2013 | |
1.4.0.71 | 3,629 | 12/1/2013 | |
1.4.0.70 | 4,001 | 11/21/2013 | |
1.4.0.69 | 3,949 | 11/20/2013 | |
1.4.0.68 | 5,895 | 10/15/2013 | |
1.4.0.67 | 3,617 | 10/15/2013 | |
1.4.0.66 | 51,553 | 7/31/2013 | |
1.4.0.65 | 5,754 | 7/9/2013 | |
1.4.0.64 | 7,901 | 4/26/2013 | |
1.4.0.63 | 3,585 | 4/26/2013 | |
1.4.0.62 | 3,667 | 4/26/2013 | |
1.4.0.61 | 3,629 | 4/25/2013 | |
1.4.0.60 | 3,500 | 4/25/2013 | |
1.4.0.59 | 3,578 | 4/25/2013 | |
1.4.0.58 | 3,655 | 4/25/2013 | |
1.4.0.57 | 3,561 | 4/25/2013 | |
1.4.0.56 | 3,589 | 4/25/2013 | |
1.4.0.55 | 3,704 | 4/25/2013 | |
1.4.0.54 | 3,680 | 4/25/2013 | |
1.4.0.53 | 3,530 | 4/25/2013 | |
1.4.0.52 | 3,698 | 4/25/2013 | |
1.4.0.51 | 3,635 | 4/22/2013 | |
1.4.0.50 | 3,537 | 4/22/2013 | |
1.4.0.49 | 5,194 | 4/11/2013 | |
1.4.0.48 | 4,645 | 3/24/2013 | |
1.4.0.47 | 3,608 | 3/24/2013 | |
1.4.0.46 | 3,676 | 3/24/2013 | |
1.4.0.45 | 3,668 | 3/24/2013 | |
1.4.0.44 | 4,973 | 3/16/2013 | |
1.4.0.43 | 3,507 | 3/16/2013 | |
1.4.0.42 | 3,625 | 3/16/2013 | |
1.4.0.41 | 3,768 | 3/6/2013 | |
1.4.0.40 | 7,485 | 12/24/2012 | |
1.4.0.39 | 3,536 | 12/23/2012 | |
1.4.0.38 | 3,559 | 12/23/2012 | |
1.4.0.37 | 4,780 | 11/29/2012 | |
1.4.0.36 | 3,612 | 11/29/2012 | |
1.4.0.35 | 5,099 | 9/25/2012 | |
1.4.0.34 | 3,569 | 9/25/2012 | |
1.4.0.33 | 3,616 | 9/25/2012 | |
1.4.0.32 | 9,795 | 7/14/2012 | |
1.4.0.31 | 3,669 | 7/14/2012 | |
1.4.0.30 | 3,536 | 7/12/2012 | |
1.4.0.29 | 3,598 | 7/12/2012 | |
1.4.0.28 | 3,581 | 7/12/2012 | |
1.4.0.27 | 3,556 | 7/12/2012 | |
1.4.0.26 | 3,685 | 7/2/2012 | |
1.4.0.25 | 3,572 | 7/2/2012 | |
1.4.0.24 | 5,759 | 5/15/2012 | |
1.4.0.23 | 4,996 | 4/25/2012 | |
1.4.0.22 | 3,536 | 4/25/2012 | |
1.4.0.21 | 3,531 | 4/25/2012 | |
1.4.0.20 | 4,448 | 4/18/2012 | |
1.4.0.19 | 3,593 | 4/18/2012 | |
1.4.0.18 | 3,652 | 4/18/2012 | |
1.4.0.17 | 3,727 | 4/18/2012 | |
1.4.0.14 | 3,599 | 4/4/2012 | |
1.4.0.13 | 4,016 | 3/27/2012 | |
1.4.0.12 | 4,454 | 9/16/2011 | |
1.4.0.11 | 4,061 | 9/16/2011 | |
1.3.0 | 4,787 | 5/27/2011 | |
1.2.0 | 108,359 | 5/26/2011 |