FluentMigrator.Runner 1.2.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package FluentMigrator.Runner --version 1.2.1
NuGet\Install-Package FluentMigrator.Runner -Version 1.2.1
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="FluentMigrator.Runner" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FluentMigrator.Runner --version 1.2.1
#r "nuget: FluentMigrator.Runner, 1.2.1"
#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 FluentMigrator.Runner as a Cake Addin
#addin nuget:?package=FluentMigrator.Runner&version=1.2.1

// Install FluentMigrator.Runner as a Cake Tool
#tool nuget:?package=FluentMigrator.Runner&version=1.2.1

FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version.
 In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (112)

Showing the top 5 NuGet packages that depend on FluentMigrator.Runner:

Package Downloads
Shesha.NHibernate

Package Description

Shesha.FluentMigrator

Package Description

HQ

This package contains the full-stack build for HQ.io.

Miru

Package Description

Tofi.Framework.Data

Package Description

GitHub repositories (16)

Showing the top 5 popular GitHub repositories that depend on FluentMigrator.Runner:

Repository Stars
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
elsa-workflows/elsa-core
A .NET workflows library
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
bonesoul/CoiniumServ
Next-gen crypto currency mining pool software
Version Downloads Last updated
5.2.0 30,987 3/28/2024
5.1.0 94,750 2/19/2024
5.0.0 274,567 12/10/2023
3.3.2 5,967,943 1/14/2022
3.3.1 1,363,017 9/21/2021
3.3.0 351,407 8/26/2021
3.2.17 833,659 6/17/2021
3.2.16 343,580 5/19/2021
3.2.15 1,126,080 2/19/2021
3.2.14 792 2/19/2021
3.2.11 347,028 1/9/2021
3.2.10 69,571 12/19/2020
3.2.9 1,673,570 8/25/2020
3.2.8 185,258 7/22/2020
3.2.7 567,884 6/8/2020
3.2.6 667,241 4/11/2020
3.2.1 3,310,406 4/16/2019
3.2.0 4,554 4/15/2019
3.1.3 1,182,958 6/25/2018
3.1.2 3,691 6/21/2018
3.1.1 18,410 6/11/2018
3.1.0 3,424 6/1/2018
3.0.0 59,611 5/7/2018
2.0.7 295,903 4/27/2018
2.0.6 18,680 4/24/2018
2.0.5 3,495 4/23/2018
2.0.4 1,425 4/23/2018
2.0.3 1,726 4/22/2018
2.0.2 99,616 4/17/2018
2.0.1 2,940 4/16/2018
2.0.0 5,749 4/15/2018
1.6.2 1,537,527 5/31/2016
1.6.1 342,340 11/9/2015
1.6.0 142,136 7/13/2015
1.5.1 56,245 4/17/2015
1.5.0 39,792 2/27/2015
1.4.0 41,938 12/31/2014
1.3.1 15,745 11/18/2014
1.3.0 54,352 8/27/2014
1.2.1 9,820 7/12/2014
1.1.1.33 9,087 6/21/2014
1.1.1.26 40,119 1/4/2014
1.1.1.15 22,765 8/16/2013

Pleased to announce that FluentMigrator.Runner package is now made available by core team, thanks to package owners to add us as owner ! This should greatly improve discoverability of Sql server specific extensions.

Improvements & Features:

   Split Fluentmigrator runner assembly into a new FluentMigrator.Runner package @jrolstad
   Added 'GO' statements to file output when targeting Ms SQL Server @cliechty
   SQLite namespace mismatch @tommarien
   Support multi-statement scripts in Oracle Db @AndreyUtka
   Profiles are now found in alphabetical order, allows arbitrary ordering @jochenvangasse

Bug fixes:

   Profile does not get executed when a non-zero version parameter is specified @rogersillito