pomelo - Pomelo.EntityFrameworkCore.MySql 2.1.0-rc1-20180603135351

MySQL provider for Entity Framework Core

PM> Install-Package Pomelo.EntityFrameworkCore.MySql -Version 2.1.0-rc1-20180603135351 -Source https://www.myget.org/F/pomelo/api/v3/index.json

Copy to clipboard

> nuget.exe install Pomelo.EntityFrameworkCore.MySql -Version 2.1.0-rc1-20180603135351 -Source https://www.myget.org/F/pomelo/api/v3/index.json

Copy to clipboard

> dotnet add package Pomelo.EntityFrameworkCore.MySql --version 2.1.0-rc1-20180603135351 --source https://www.myget.org/F/pomelo/api/v3/index.json

Copy to clipboard
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.0-rc1-20180603135351" />
Copy to clipboard
source https://www.myget.org/F/pomelo/api/v3/index.json

nuget Pomelo.EntityFrameworkCore.MySql  ~> 2.1.0-rc1-20180603135351
Copy to clipboard

> choco install Pomelo.EntityFrameworkCore.MySql --version 2.1.0-rc1-20180603135351 --source https://www.myget.org/F/pomelo/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "pomelo" -SourceLocation "https://www.myget.org/F/pomelo/api/v2"
Install-Module -Name "Pomelo.EntityFrameworkCore.MySql" -RequiredVersion "2.1.0-rc1-20180603135351" -Repository "pomelo" -AllowPreRelease
Copy to clipboard

Pomelo.EntityFrameworkCore.MySql

Build status Stable release feed for official builds Nightly build feed for release builds Nightly build feed for debugging enabled builds

Pomelo.EntityFrameworkCore.MySql is the most popular Entity Framework Core provider for MySQL compatible databases. It supports EF Core up to its latest version and uses MySqlConnector for high-performance database server communication.

Compatibility

Dependencies

The following versions of MySqlConnector, EF Core, .NET (Core), .NET Standard and .NET Framework are compatible with published releases of Pomelo.EntityFrameworkCore.MySql:

Release Branch MySqlConnector EF Core .NET (Core) .NET Standard .NET Framework
9.0.0-
preview.1
main >= 2.3.5 9.0.0-
preview.1
8.0+ - -
8.0.2 8.0-maint >= 2.3.5 8.0.2 8.0+ - -
7.0.0 7.0-maint >= 2.2.5 7.0.x 6.0+ - -
6.0.3 6.0-maint >= 2.1.2 6.0.x 6.0+ - -
5.0.4 5.0-maint >= 1.3.13 5.0.x 3.0+ 2.1 -
3.2.7 3.2-maint >= 0.69.10 < 1.0.0 3.1.x 2.0+ 2.0 4.6.1+

Packages

Supported Database Servers and Versions

Pomelo.EntityFrameworkCore.MySql is tested against all actively maintained versions of MySQL and MariaDB. Older versions (e.g. MySQL 5.7) and other server implementations (e.g. Amazon Aurora) are usually compatible to a high degree as well, but are not tested as part of our CI.

Officially supported versions are:

  • MySQL 8.0
  • MariaDB 11.3
  • MariaDB 11.2
  • MariaDB 11.1
  • MariaDB 11.0
  • MariaDB 10.11 (LTS)
  • MariaDB 10.6 (LTS)
  • MariaDB 10.5 (LTS)
  • MariaDB 10.4 (LTS)

Schedule and Roadmap

Milestone Status Release Date
9.0.0-preview.1 Released 2024-02-28 (see #1841)
8.0.2 Released 2024-03-16
7.0.0 Released 2023-01-16
6.0.3 Released 2024-03-16
5.0.4 Released 2022-01-22
3.2.7 Released 2021-10-04

Nightly Builds

To use nightly builds from our Azure DevOps feed, add a NuGet.config file to your solution root with the following content and enable prereleases:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <packageSources>
        <add key="pomelo-nightly" value="https://pkgs.dev.azure.com/pomelo-efcore/Pomelo.EntityFrameworkCore.MySql/_packaging/pomelo-efcore-public/nuget/v3/index.json" />
        <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
    </packageSources>
</configuration>

Feeds

Feeds that contain optimized (Release configuration) builds:

  • https://pkgs.dev.azure.com/pomelo-efcore/Pomelo.EntityFrameworkCore.MySql/_packaging/pomelo-efcore-public/nuget/v3/index.json
  • https://www.myget.org/F/pomelo/api/v3/index.json

Feeds that contain debugging enabled unoptimized (Debug configuration) builds:

  • https://pkgs.dev.azure.com/pomelo-efcore/Pomelo.EntityFrameworkCore.MySql/_packaging/pomelo-efcore-debug/nuget/v3/index.json
  • https://www.myget.org/F/pomelo-debug/api/v3/index.json

The AZDO nupkg packages always contain .pdb files.

The MyGet nupkg packages only contain .pdb files for their debug builds. For optimized builds, the symbols are packed in a snupkg file and are available via the https://www.myget.org/F/pomelo/api/v2/symbolpackage/ symbol server URL.

All .pdb files use Source Link.

Getting Started

1. Project Configuration

Ensure that your .csproj file contains the following reference:

<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />

2. Services Configuration

Add Pomelo.EntityFrameworkCore.MySql to the services configuration in your the Startup.cs file of your ASP.NET Core project:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        // Replace with your connection string.
        var connectionString = "server=localhost;user=root;password=1234;database=ef";

        // Replace with your server version and type.
        // Use 'MariaDbServerVersion' for MariaDB.
        // Alternatively, use 'ServerVersion.AutoDetect(connectionString)'.
        // For common usages, see pull request #1233.
        var serverVersion = new MySqlServerVersion(new Version(8, 0, 36));

        // Replace 'YourDbContext' with the name of your own DbContext derived class.
        services.AddDbContext<YourDbContext>(
            dbContextOptions => dbContextOptions
                .UseMySql(connectionString, serverVersion)
                // The following three options help with debugging, but should
                // be changed or removed for production.
                .LogTo(Console.WriteLine, LogLevel.Information)
                .EnableSensitiveDataLogging()
                .EnableDetailedErrors()
        );
    }
}

View our Configuration Options Wiki Page for a list of common options.

3. Sample Application

Check out our Integration Tests for an example repository that includes an ASP.NET Core MVC Application.

There are also many complete and concise console application samples posted in the issue section (some of them can be found by searching for Program.cs).

4. Read the EF Core Documentation

Refer to Microsoft's EF Core Documentation for detailed instructions and examples on using EF Core.

Scaffolding / Reverse Engineering

Use the EF Core tools to execute scaffolding commands:

dotnet ef dbcontext scaffold "Server=localhost;User=root;Password=1234;Database=ef" "Pomelo.EntityFrameworkCore.MySql"

Contribute

One of the easiest ways to contribute is to report issues, participate in discussions and update the wiki docs. You can also contribute by submitting pull requests with code changes and supporting tests.

We are always looking for additional core contributors. If you got a couple of hours a week and know your way around EF Core and MySQL, give us a nudge.

License

MIT

  • .NETStandard 2.0
    • Microsoft.EntityFrameworkCore.Design (>= 2.1.0)
    • Microsoft.EntityFrameworkCore.Relational (>= 2.1.0)
    • Microsoft.Extensions.Logging.Console (>= 2.1.0)
    • MySqlConnector (>= 0.40.4)
    • Pomelo.JsonObject (>= 1.1.1)
  • .NETStandard 2.0: 2.0.0.0

Owners

あまみや ゆうこ LauXjpn Caleb Lloyd

Authors

Pomelo.EntityFrameworkCore.MySql

Project URL

https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql

License

MIT

Tags

Entity Framework Core entity-framework-core MySQL EF ORM Data

Info

943 total downloads
2 downloads for version 2.1.0-rc1-20180603135351
Download (71.96 KB)
NuGet 3.6 or higher
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
9.0.0-preview.2.ci.20240426121436+sha.99e7920 241.99 KB Fri, 26 Apr 2024 12:15:37 GMT 0
9.0.0-preview.2.ci.20240425135150+sha.8cfea66 241.92 KB Thu, 25 Apr 2024 13:52:55 GMT 0
9.0.0-preview.2.ci.20240425124334+sha.156585f 241.92 KB Thu, 25 Apr 2024 12:44:31 GMT 0
9.0.0-preview.2.ci.20240317172502+sha.5ca0fa1 241.93 KB Sun, 17 Mar 2024 17:25:55 GMT 2
9.0.0-preview.2.ci.20240315190621+sha.5322b41 241.92 KB Fri, 15 Mar 2024 19:07:29 GMT 2
9.0.0-preview.2.ci.20240310094954+sha.f4d0fee 240.91 KB Sun, 10 Mar 2024 09:50:52 GMT 2
9.0.0-preview.2.ci.20240309000114+sha.cebe707 239.51 KB Sat, 09 Mar 2024 00:02:29 GMT 2
9.0.0-preview.2.ci.20240307210937+sha.28387fc 239.58 KB Thu, 07 Mar 2024 21:10:43 GMT 2
9.0.0-preview.2.ci.20240307033613+sha.d75b62e 239.57 KB Thu, 07 Mar 2024 03:37:09 GMT 2
9.0.0-preview.2.ci.20240306172048+sha.1ccd763 238.5 KB Wed, 06 Mar 2024 17:21:48 GMT 2
9.0.0-preview.2.ci.20240306161514+sha.2b0ca14 238.44 KB Wed, 06 Mar 2024 16:16:35 GMT 2
9.0.0-preview.2.ci.20240305003702+sha.0f6d4d6 238.11 KB Tue, 05 Mar 2024 00:37:58 GMT 2
9.0.0-preview.2.ci.20240304232723+sha.1f88ec7 238.11 KB Mon, 04 Mar 2024 23:28:39 GMT 2
9.0.0-preview.2.ci.20240304224637+sha.b3552fe 237.26 KB Mon, 04 Mar 2024 22:47:34 GMT 3
9.0.0-preview.2.ci.20240304220612+sha.db868a3 237.25 KB Mon, 04 Mar 2024 22:07:13 GMT 2
9.0.0-preview.2.ci.20240304213801+sha.c5949d0 237.26 KB Mon, 04 Mar 2024 21:39:08 GMT 2
9.0.0-preview.2.ci.20240304014802+sha.c8bf3ea 237.25 KB Mon, 04 Mar 2024 01:49:01 GMT 2
9.0.0-preview.2.ci.20240303231126+sha.2eabb2a 237.26 KB Sun, 03 Mar 2024 23:12:21 GMT 2
9.0.0-preview.2.ci.20240303225252+sha.5adf75c 237.25 KB Sun, 03 Mar 2024 22:53:56 GMT 2
9.0.0-preview.2.ci.20240303151902+sha.e104ba6 237.25 KB Sun, 03 Mar 2024 15:19:54 GMT 2
9.0.0-preview.1.ci.20240228122118+sha.f5f7a56 237.25 KB Wed, 28 Feb 2024 12:22:34 GMT 3
9.0.0-preview.1 237.17 KB Wed, 28 Feb 2024 13:51:09 GMT 2
8.0.3-servicing.1.ci.20240320124355+sha.8070305 239.38 KB Wed, 20 Mar 2024 12:45:08 GMT 2
8.0.3-servicing.1.ci.20240317202530+sha.47a1a29 239.37 KB Sun, 17 Mar 2024 20:26:23 GMT 2
8.0.3-servicing.1.ci.20240316102223+sha.5215b3b 239.34 KB Sat, 16 Mar 2024 10:23:20 GMT 2
8.0.2 239.21 KB Sat, 16 Mar 2024 09:51:36 GMT 2
8.0.2-servicing.1.ci.20240316091308+sha.6b1e9ca 239.33 KB Sat, 16 Mar 2024 09:14:04 GMT 2
8.0.2-servicing.1.ci.20240316080736+sha.bcbedf4 238.26 KB Sat, 16 Mar 2024 08:08:33 GMT 2
8.0.2-servicing.1.ci.20240316002520+sha.73aab49 238.19 KB Sat, 16 Mar 2024 00:26:19 GMT 0
8.0.2-servicing.1.ci.20240315234101+sha.53826cc 237.8 KB Fri, 15 Mar 2024 23:41:58 GMT 2
8.0.2-servicing.1.ci.20240309010742+sha.7bf885a 236.96 KB Sat, 09 Mar 2024 01:08:40 GMT 2
8.0.2-servicing.1.ci.20240308012617+sha.d9afafb 237.01 KB Fri, 08 Mar 2024 01:27:19 GMT 2
8.0.2-servicing.1.ci.20240307190153+sha.1457e87 236.99 KB Thu, 07 Mar 2024 19:03:07 GMT 2
8.0.1 236.76 KB Wed, 28 Feb 2024 12:49:10 GMT 3
8.0.1-servicing.1.ci.20240228101911+sha.40ed6d9 236.89 KB Wed, 28 Feb 2024 10:20:13 GMT 3
8.0.1-servicing.1.ci.20240228092546+sha.e7a8e2d 236.89 KB Wed, 28 Feb 2024 09:26:48 GMT 3
8.0.1-servicing.1.ci.20240227230621+sha.3ef628f 236.88 KB Tue, 27 Feb 2024 23:07:38 GMT 3
8.0.1-servicing.1.ci.20240227202303+sha.cdcaeac 233.68 KB Tue, 27 Feb 2024 20:24:03 GMT 4
8.0.1-servicing.1.ci.20240227201218+sha.5a3f9ca 233.69 KB Tue, 27 Feb 2024 20:13:21 GMT 3
8.0.1-servicing.1.ci.20240227200245+sha.ca58b0d 233.66 KB Tue, 27 Feb 2024 20:04:03 GMT 4
8.0.1-servicing.1.ci.20240227200211+sha.284e9a5 233.66 KB Tue, 27 Feb 2024 20:03:16 GMT 3
8.0.1-servicing.1.ci.20240223085158+sha.90072f0 233.68 KB Fri, 23 Feb 2024 08:53:00 GMT 3
8.0.1-servicing.1.ci.20240214001235+sha.ea52863 232.93 KB Wed, 14 Feb 2024 00:13:40 GMT 3
8.0.1-servicing.1.ci.20240213063504+sha.126df6e 232.92 KB Tue, 13 Feb 2024 06:36:02 GMT 3
8.0.0 232.78 KB Tue, 13 Feb 2024 05:43:50 GMT 2
8.0.0-silver.1.ci.20240212235033+sha.23794f9 232.79 KB Mon, 12 Feb 2024 23:51:47 GMT 3
8.0.0-silver.1.ci.20240212224047+sha.2841eff 232.79 KB Mon, 12 Feb 2024 22:41:52 GMT 3
8.0.0-silver.1.ci.20231204170005+sha.b2bfea5 230.76 KB Mon, 04 Dec 2023 17:01:20 GMT 4
8.0.0-silver.1.ci.20231118200130+sha.7543640 228.42 KB Sat, 18 Nov 2023 20:02:34 GMT 4
8.0.0-rtm.1.ci.20240213052025+sha.c6f526f 232.89 KB Tue, 13 Feb 2024 05:21:22 GMT 2
8.0.0-rtm.1.ci.20240213040424+sha.f84aacf 232.9 KB Tue, 13 Feb 2024 04:05:33 GMT 3
8.0.0-rtm.1.ci.20240213025702+sha.fd431e3 232.9 KB Tue, 13 Feb 2024 02:58:02 GMT 2
8.0.0-rtm.1.ci.20240213015111+sha.4c4afbf 232.9 KB Tue, 13 Feb 2024 01:52:25 GMT 3
8.0.0-beta.2.ci.20231118191149+sha.0d1cd93 228.41 KB Sat, 18 Nov 2023 19:12:51 GMT 4
8.0.0-beta.2.ci.20231118170533+sha.f7a0181 228.41 KB Sat, 18 Nov 2023 17:06:34 GMT 3
8.0.0-beta.2.ci.20231118153045+sha.f5ea712 228.41 KB Sat, 18 Nov 2023 15:31:45 GMT 4
8.0.0-beta.2.ci.20231118145504+sha.9d67597 228.41 KB Sat, 18 Nov 2023 14:56:01 GMT 4
8.0.0-beta.2.ci.20231118135632+sha.73c6489 228.42 KB Sat, 18 Nov 2023 13:57:35 GMT 4
8.0.0-beta.2.ci.20231014172607+sha.60ea450 228.42 KB Sat, 14 Oct 2023 17:27:20 GMT 8
8.0.0-beta.2.ci.20231008205150+sha.25ba058 228.33 KB Sun, 08 Oct 2023 20:52:59 GMT 3
8.0.0-beta.2.ci.20231008200523+sha.25ba058 228.32 KB Sun, 08 Oct 2023 20:06:43 GMT 3
8.0.0-beta.2.ci.20231008192837+sha.7e3087e 228.32 KB Sun, 08 Oct 2023 19:30:12 GMT 4
8.0.0-beta.2.ci.20231008092718+sha.80f55cc 228.33 KB Sun, 08 Oct 2023 09:28:38 GMT 4
8.0.0-beta.2.ci.20231002013758+sha.80f55cc 228.33 KB Mon, 02 Oct 2023 01:39:15 GMT 4
8.0.0-beta.2.ci.20231002003207+sha.991a71c 228.33 KB Mon, 02 Oct 2023 00:33:27 GMT 3
8.0.0-beta.2.ci.20231001223837+sha.6c97adb 228.05 KB Sun, 01 Oct 2023 22:39:56 GMT 3
8.0.0-beta.2.ci.20231001215240+sha.5ed153d 228.05 KB Sun, 01 Oct 2023 21:53:57 GMT 4
8.0.0-beta.2.ci.20231001164631+sha.dfc39b5 228.05 KB Sun, 01 Oct 2023 16:48:11 GMT 3
8.0.0-beta.2.ci.20231001162843+sha.d0f14d1 228.05 KB Sun, 01 Oct 2023 16:30:11 GMT 4
8.0.0-beta.2.ci.20231001162027+sha.0d087f9 228.05 KB Sun, 01 Oct 2023 16:21:42 GMT 4
8.0.0-beta.2.ci.20231001154550+sha.39f24e4 228.05 KB Sun, 01 Oct 2023 15:47:22 GMT 4
8.0.0-beta.2.ci.20231001152922+sha.3235c40 228.05 KB Sun, 01 Oct 2023 15:30:48 GMT 3
8.0.0-beta.2.ci.20231001152241+sha.f2d7c81 228.05 KB Sun, 01 Oct 2023 15:24:14 GMT 3
8.0.0-beta.2.ci.20231001151334+sha.30edb30 228.05 KB Sun, 01 Oct 2023 15:15:14 GMT 4
8.0.0-beta.2.ci.20231001112052+sha.25854a9 228.04 KB Sun, 01 Oct 2023 11:22:31 GMT 4
8.0.0-beta.2.ci.20231001105141+sha.cd0cad2 228.06 KB Sun, 01 Oct 2023 10:53:01 GMT 3
8.0.0-beta.2.ci.20231001000359+sha.d2bd381 228.05 KB Sun, 01 Oct 2023 00:05:50 GMT 3
8.0.0-beta.2.ci.20230930193105+sha.8806127 228.05 KB Sat, 30 Sep 2023 19:33:16 GMT 3
8.0.0-beta.2.ci.20230930192139+sha.436a1c5 228.06 KB Sat, 30 Sep 2023 19:23:41 GMT 4
8.0.0-beta.2.ci.20230930184751+sha.0acd9a0 228.06 KB Sat, 30 Sep 2023 18:50:08 GMT 4
8.0.0-beta.2.ci.20230930182613+sha.9541bb0 230.4 KB Sat, 30 Sep 2023 18:28:31 GMT 4
8.0.0-beta.2.ci.20230930173543+sha.257f34e 230.41 KB Sat, 30 Sep 2023 17:37:35 GMT 4
8.0.0-beta.2.ci.20230929232356+sha.b2704f7 230.41 KB Fri, 29 Sep 2023 23:25:45 GMT 4
8.0.0-beta.2.ci.20230929223619+sha.6a39dfc 230.41 KB Fri, 29 Sep 2023 22:37:27 GMT 4
8.0.0-beta.2 228.32 KB Sat, 18 Nov 2023 19:36:24 GMT 3
8.0.0-beta.1.ci.20230929212537+sha.87e30e9 230.41 KB Fri, 29 Sep 2023 21:26:27 GMT 3
8.0.0-beta.1.ci.20230929205203+sha.da46c5a 230.41 KB Fri, 29 Sep 2023 20:53:00 GMT 3
8.0.0-beta.1 230.33 KB Fri, 29 Sep 2023 22:09:02 GMT 3
7.0.1-servicing.1.ci.20240317204702+sha.b24f4b4 399.81 KB Sun, 17 Mar 2024 20:48:02 GMT 2
7.0.1-servicing.1.ci.20240317181053+sha.29f8073 399.76 KB Sun, 17 Mar 2024 18:11:55 GMT 1
7.0.1-servicing.1.ci.20240316155757+sha.28c19dd 399.74 KB Sat, 16 Mar 2024 15:58:56 GMT 2
6.0.4-servicing.1.ci.20240318004759+sha.326b218 204.04 KB Mon, 18 Mar 2024 00:48:45 GMT 2
6.0.4-servicing.1.ci.20240316220040+sha.ef39c34 203.94 KB Sat, 16 Mar 2024 22:01:29 GMT 2
6.0.3 203.82 KB Sat, 16 Mar 2024 21:23:36 GMT 2
6.0.3-servicing.1.ci.20240316204716+sha.e3e0036 203.95 KB Sat, 16 Mar 2024 20:48:04 GMT 2
6.0.3-servicing.1.ci.20240316160449+sha.38f7f25 203.95 KB Sat, 16 Mar 2024 16:05:36 GMT 2
6.0.3-servicing.1.ci.20240316130242+sha.c932360 203.94 KB Sat, 16 Mar 2024 13:03:31 GMT 1
2.2.1-preview1-final 72.36 KB Thu, 08 Aug 2019 17:25:01 GMT 14
2.2.0 72.21 KB Thu, 07 Feb 2019 23:13:51 GMT 45
2.2.0-rtm-20190731085149 76.03 KB Wed, 31 Jul 2019 12:55:20 GMT 8
2.2.0-rtm-20190530195953 76.02 KB Fri, 31 May 2019 00:03:36 GMT 8
2.2.0-rtm-20190503133440 73.68 KB Fri, 03 May 2019 17:38:06 GMT 8
2.2.0-rtm-20190423141512 73.67 KB Tue, 23 Apr 2019 18:18:39 GMT 7
2.2.0-rtm-20190317084338 73.65 KB Sun, 17 Mar 2019 12:47:14 GMT 7
2.2.0-rtm-20190207180227 72.24 KB Thu, 07 Feb 2019 23:05:55 GMT 7
2.2.0-preview1-final 72.56 KB Sat, 26 Jan 2019 16:55:47 GMT 8
2.2.0-preview1-20190207174229 72.26 KB Thu, 07 Feb 2019 22:45:56 GMT 7
2.2.0-preview1-20190126114519 72.58 KB Sat, 26 Jan 2019 16:48:51 GMT 8
2.1.5-preview1-20190119144055 72.52 KB Sat, 19 Jan 2019 19:44:51 GMT 8
2.1.5-preview1-20190119143210 72.52 KB Sat, 19 Jan 2019 19:36:09 GMT 7
2.1.5-preview1-20190119143041 72.47 KB Sat, 19 Jan 2019 19:34:36 GMT 7
2.1.5-preview1-20190119142922 72.25 KB Sat, 19 Jan 2019 19:33:24 GMT 5
2.1.5-preview1-20190104134946 72.25 KB Fri, 04 Jan 2019 18:53:46 GMT 10
2.1.5-preview1-20181129211431 72.25 KB Fri, 30 Nov 2018 02:18:41 GMT 6
2.1.4 72.21 KB Fri, 30 Nov 2018 01:26:59 GMT 8
2.1.4-rtm-20181129211059 72.24 KB Fri, 30 Nov 2018 02:14:54 GMT 7
2.1.4-rtm-20181129201729 72.23 KB Fri, 30 Nov 2018 01:21:31 GMT 8
2.1.4-preview1-20181119192937 72.25 KB Tue, 20 Nov 2018 00:33:52 GMT 6
2.1.4-preview1-20181113160218 72.25 KB Tue, 13 Nov 2018 21:06:21 GMT 6
2.1.2 71.9 KB Tue, 04 Sep 2018 13:35:33 GMT 51
2.1.2-rtm-20181105033412 72.23 KB Mon, 05 Nov 2018 08:38:18 GMT 6
2.1.2-rtm-20181104143328 72.04 KB Sun, 04 Nov 2018 19:37:33 GMT 8
2.1.2-rtm-20181104143232 71.98 KB Sun, 04 Nov 2018 19:36:40 GMT 5
2.1.2-rtm-20181029193314 71.99 KB Mon, 29 Oct 2018 23:37:34 GMT 5
2.1.2-rtm-20181027160632 71.98 KB Sat, 27 Oct 2018 20:10:50 GMT 6
2.1.2-rtm-20180917161658 71.92 KB Mon, 17 Sep 2018 20:21:08 GMT 7
2.1.2-rtm-20180911121639 71.93 KB Tue, 11 Sep 2018 16:20:56 GMT 5
2.1.2-rtm-20180904082948 71.93 KB Tue, 04 Sep 2018 12:33:47 GMT 6
2.1.2-preview1-20180830104144 71.94 KB Thu, 30 Aug 2018 14:45:46 GMT 5
2.1.2-preview1-20180827174151 71.94 KB Mon, 27 Aug 2018 21:45:42 GMT 8
2.1.2-preview1-20180826091119 71.29 KB Sun, 26 Aug 2018 13:15:28 GMT 7
2.1.2-preview1-20180816143335 71.3 KB Thu, 16 Aug 2018 18:37:31 GMT 5
2.1.2-preview1-20180803073906 71.24 KB Fri, 03 Aug 2018 11:43:32 GMT 6
2.1.2-preview1-20180724151854 70.82 KB Tue, 24 Jul 2018 19:22:59 GMT 3
2.1.2-preview1-20180718192418 70.79 KB Wed, 18 Jul 2018 23:28:12 GMT 3
2.1.2-preview1-20180711194755 70.79 KB Wed, 11 Jul 2018 23:52:06 GMT 3
2.1.2-preview1-20180711192250 70.82 KB Wed, 11 Jul 2018 23:26:41 GMT 2
2.1.1 70.77 KB Sat, 07 Jul 2018 13:36:09 GMT 10
2.1.1-rtm-20180706083318 70.8 KB Fri, 06 Jul 2018 12:37:46 GMT 4
2.1.1-rtm-20180705171634 70.79 KB Thu, 05 Jul 2018 21:20:47 GMT 2
2.1.1-rtm-20180703071339 70.8 KB Tue, 03 Jul 2018 11:17:27 GMT 3
2.1.0 70.77 KB Wed, 11 Jul 2018 23:19:48 GMT 6
2.1.0-rtm-20180702233855 70.8 KB Tue, 03 Jul 2018 03:43:09 GMT 3
2.1.0-rc2-final 70.79 KB Tue, 03 Jul 2018 03:18:12 GMT 3
2.1.0-rc2-20180702230558 70.81 KB Tue, 03 Jul 2018 03:10:17 GMT 2
2.1.0-rc2-20180702224850 70.8 KB Tue, 03 Jul 2018 02:52:46 GMT 2
2.1.0-rc2-20180702212458 70.88 KB Tue, 03 Jul 2018 01:29:15 GMT 3
2.1.0-rc2-20180702212337 72.52 KB Tue, 03 Jul 2018 01:27:23 GMT 7
2.1.0-rc2-20180702204113 72.52 KB Tue, 03 Jul 2018 00:45:20 GMT 4
2.1.0-rc2-20180702150630 72.35 KB Mon, 02 Jul 2018 19:10:35 GMT 3
2.1.0-rc2-20180702150038 72.32 KB Mon, 02 Jul 2018 19:04:41 GMT 4
2.1.0-rc2-20180702150011 72.32 KB Mon, 02 Jul 2018 19:04:07 GMT 4
2.1.0-rc2-20180621144030 72.24 KB Thu, 21 Jun 2018 18:44:24 GMT 4
2.1.0-rc2-20180613003118 72.24 KB Wed, 13 Jun 2018 04:35:11 GMT 4
2.1.0-rc2-20180613002525 72.25 KB Wed, 13 Jun 2018 04:29:08 GMT 6
2.1.0-rc2-20180608060413 71.98 KB Fri, 08 Jun 2018 10:08:27 GMT 57
2.1.0-rc2-20180603202706 71.96 KB Mon, 04 Jun 2018 00:30:55 GMT 15
2.1.0-rc1-final 71.95 KB Sun, 03 Jun 2018 23:33:43 GMT 7
2.1.0-rc1-20180603135351 71.96 KB Sun, 03 Jun 2018 17:57:33 GMT 2
2.0.2-preview-10088 62.87 KB Sun, 04 Mar 2018 21:59:43 GMT 8
2.0.2-preview-10087 62.87 KB Sun, 04 Mar 2018 21:55:08 GMT 3
2.0.2-preview-10084 62.79 KB Tue, 16 Jan 2018 06:17:05 GMT 4
2.0.2-preview-10083 62.74 KB Thu, 07 Dec 2017 02:31:12 GMT 3
2.0.1 62.68 KB Sat, 25 Nov 2017 05:13:24 GMT 12
2.0.1-preview1-final 63.11 KB Mon, 20 Nov 2017 00:43:29 GMT 3
2.0.1-preview-10078 64.26 KB Wed, 15 Nov 2017 01:49:42 GMT 2
2.0.1-preview-10077 64.26 KB Fri, 03 Nov 2017 13:27:39 GMT 3
2.0.1-preview-10076 63.92 KB Thu, 02 Nov 2017 12:04:41 GMT 3
2.0.1-preview-10075 63.82 KB Wed, 01 Nov 2017 18:03:26 GMT 4
2.0.1-preview-10073 61.38 KB Thu, 26 Oct 2017 01:02:29 GMT 4
2.0.1-preview-10072 61.43 KB Mon, 23 Oct 2017 15:06:07 GMT 5
2.0.1-preview-10071 61.33 KB Mon, 23 Oct 2017 00:52:25 GMT 4
2.0.1-preview-10070 60.38 KB Fri, 20 Oct 2017 07:22:58 GMT 3
2.0.1-preview-10069 60.35 KB Thu, 12 Oct 2017 09:10:15 GMT 3
2.0.1-preview-10068 60.36 KB Tue, 10 Oct 2017 12:33:20 GMT 3
2.0.1-preview-10067 60.31 KB Mon, 09 Oct 2017 12:52:58 GMT 4
2.0.1-preview-10066 60.32 KB Thu, 28 Sep 2017 05:05:11 GMT 4
2.0.1-preview-10065 60.31 KB Wed, 27 Sep 2017 14:35:23 GMT 5
2.0.0.1 61.38 KB Thu, 26 Oct 2017 23:38:13 GMT 5
2.0.0 60.27 KB Tue, 19 Sep 2017 00:52:48 GMT 13
2.0.0-rtm-10062 60.28 KB Mon, 04 Sep 2017 02:52:16 GMT 5
2.0.0-rtm-10061 60.28 KB Fri, 01 Sep 2017 22:54:47 GMT 3
2.0.0-rtm-10060 60.61 KB Fri, 01 Sep 2017 02:48:52 GMT 6
2.0.0-rtm-10059 60.31 KB Tue, 29 Aug 2017 23:42:37 GMT 7
2.0.0-rtm-10058 60.17 KB Tue, 22 Aug 2017 05:55:09 GMT 4
2.0.0-rtm-10057 60.17 KB Sat, 19 Aug 2017 00:29:30 GMT 5
2.0.0-rtm-10056 60.04 KB Wed, 16 Aug 2017 04:13:43 GMT 6
2.0.0-preview3-10055 60.09 KB Thu, 10 Aug 2017 00:09:17 GMT 4
2.0.0-preview3-10054 60.05 KB Sun, 30 Jul 2017 23:33:59 GMT 3
2.0.0-preview3-10053 59.71 KB Sun, 30 Jul 2017 01:13:28 GMT 5
2.0.0-preview3-10052 59.87 KB Sun, 30 Jul 2017 01:03:18 GMT 3
2.0.0-preview3-10051 59.57 KB Fri, 28 Jul 2017 00:25:13 GMT 5
2.0.0-preview3-10050 59.54 KB Fri, 28 Jul 2017 00:18:01 GMT 2
2.0.0-preview3-10049 59.47 KB Thu, 27 Jul 2017 16:03:48 GMT 4
2.0.0-preview3-10048 59.4 KB Thu, 27 Jul 2017 15:11:28 GMT 3
2.0.0-preview2-10047 59.19 KB Wed, 26 Jul 2017 16:17:32 GMT 5
2.0.0-preview2-10046 58.99 KB Thu, 13 Jul 2017 08:03:19 GMT 8