updated FluentMigrator

This commit is contained in:
Keivan Beigi 2013-07-29 17:57:02 -07:00
parent d98b9a9009
commit c80202bec3
23 changed files with 18 additions and 30 deletions

View File

@ -47,12 +47,13 @@
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentAssertions.2.0.1\lib\net40\FluentAssertions.dll</HintPath> <HintPath>..\packages\FluentAssertions.2.0.1\lib\net40\FluentAssertions.dll</HintPath>
</Reference> </Reference>
<Reference Include="FluentMigrator, Version=1.1.0.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL"> <Reference Include="FluentMigrator, Version=1.1.1.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentMigrator.1.1.0.0\lib\40\FluentMigrator.dll</HintPath> <HintPath>..\packages\FluentMigrator.1.1.1.0\lib\40\FluentMigrator.dll</HintPath>
</Reference> </Reference>
<Reference Include="FluentMigrator.Runner"> <Reference Include="FluentMigrator.Runner, Version=1.1.0.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=x86">
<HintPath>..\packages\FluentMigrator.1.1.0.0\tools\FluentMigrator.Runner.dll</HintPath> <SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentMigrator.1.1.1.0\tools\FluentMigrator.Runner.dll</HintPath>
</Reference> </Reference>
<Reference Include="Microsoft.CSharp" /> <Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

View File

@ -3,7 +3,7 @@
<package id="AutoMoq" version="1.6.1" targetFramework="net40" /> <package id="AutoMoq" version="1.6.1" targetFramework="net40" />
<package id="CommonServiceLocator" version="1.0" targetFramework="net40" /> <package id="CommonServiceLocator" version="1.0" targetFramework="net40" />
<package id="FluentAssertions" version="2.0.1" targetFramework="net40" /> <package id="FluentAssertions" version="2.0.1" targetFramework="net40" />
<package id="FluentMigrator" version="1.1.0.0" targetFramework="net40" /> <package id="FluentMigrator" version="1.1.1.0" targetFramework="net40" />
<package id="Moq" version="4.0.10827" /> <package id="Moq" version="4.0.10827" />
<package id="NBuilder" version="3.0.1.1" /> <package id="NBuilder" version="3.0.1.1" />
<package id="NCrunch.Framework" version="1.46.0.9" targetFramework="net40" /> <package id="NCrunch.Framework" version="1.46.0.9" targetFramework="net40" />

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(1)] [Migration(1)]
public class InitialSetup : NzbDroneMigrationBase public class InitialSetup : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(2)] [Migration(2)]
public class remove_tvrage_imdb_unique_constraint : NzbDroneMigrationBase public class remove_tvrage_imdb_unique_constraint : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(3)] [Migration(3)]
public class remove_renamed_scene_mapping_columns : NzbDroneMigrationBase public class remove_renamed_scene_mapping_columns : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(4)] [Migration(4)]
public class updated_history : NzbDroneMigrationBase public class updated_history : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(5)] [Migration(5)]
public class added_eventtype_to_history : NzbDroneMigrationBase public class added_eventtype_to_history : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(6)] [Migration(6)]
public class add_index_to_log_time : NzbDroneMigrationBase public class add_index_to_log_time : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(7)] [Migration(7)]
public class add_renameEpisodes_to_naming : NzbDroneMigrationBase public class add_renameEpisodes_to_naming : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(8)] [Migration(8)]
public class remove_backlog : NzbDroneMigrationBase public class remove_backlog : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(9)] [Migration(9)]
public class fix_rename_episodes : NzbDroneMigrationBase public class fix_rename_episodes : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(10)] [Migration(10)]
public class add_monitored : NzbDroneMigrationBase public class add_monitored : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(11)] [Migration(11)]
public class remove_ignored : NzbDroneMigrationBase public class remove_ignored : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(12)] [Migration(12)]
public class remove_custom_start_date : NzbDroneMigrationBase public class remove_custom_start_date : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(13)] [Migration(13)]
public class add_air_date_utc : NzbDroneMigrationBase public class add_air_date_utc : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(14)] [Migration(14)]
public class drop_air_date : NzbDroneMigrationBase public class drop_air_date : NzbDroneMigrationBase
{ {

View File

@ -3,7 +3,6 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")]
[Migration(15)] [Migration(15)]
public class add_air_date_as_string : NzbDroneMigrationBase public class add_air_date_as_string : NzbDroneMigrationBase
{ {

View File

@ -6,5 +6,6 @@ namespace NzbDrone.Core.Datastore.Migration.Framework
{ {
public bool PreviewOnly { get; set; } public bool PreviewOnly { get; set; }
public int Timeout { get; set; } public int Timeout { get; set; }
public string ProviderSwitches { get; private set; }
} }
} }

View File

@ -59,12 +59,13 @@
<StartupObject /> <StartupObject />
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="FluentMigrator, Version=1.1.0.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL"> <Reference Include="FluentMigrator, Version=1.1.1.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentMigrator.1.1.0.0\lib\40\FluentMigrator.dll</HintPath> <HintPath>..\packages\FluentMigrator.1.1.1.0\lib\40\FluentMigrator.dll</HintPath>
</Reference> </Reference>
<Reference Include="FluentMigrator.Runner"> <Reference Include="FluentMigrator.Runner, Version=1.1.0.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=x86">
<HintPath>..\packages\FluentMigrator.1.1.0.0\tools\FluentMigrator.Runner.dll</HintPath> <SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentMigrator.1.1.1.0\tools\FluentMigrator.Runner.dll</HintPath>
</Reference> </Reference>
<Reference Include="Growl.Connector"> <Reference Include="Growl.Connector">
<HintPath>..\packages\Growl.0.6\lib\Growl.Connector.dll</HintPath> <HintPath>..\packages\Growl.0.6\lib\Growl.Connector.dll</HintPath>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="FluentMigrator" version="1.1.0.0" targetFramework="net40" /> <package id="FluentMigrator" version="1.1.1.0" targetFramework="net40" />
<package id="Growl" version="0.6" /> <package id="Growl" version="0.6" />
<package id="MediaInfoNet" version="0.3" targetFramework="net40" /> <package id="MediaInfoNet" version="0.3" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.3" targetFramework="net35" /> <package id="Newtonsoft.Json" version="5.0.3" targetFramework="net35" />

View File

@ -63,9 +63,9 @@
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="FluentMigrator, Version=1.1.0.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL"> <Reference Include="FluentMigrator, Version=1.1.1.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentMigrator.1.1.0.0\lib\40\FluentMigrator.dll</HintPath> <HintPath>..\packages\FluentMigrator.1.1.1.0\lib\40\FluentMigrator.dll</HintPath>
</Reference> </Reference>
<Reference Include="FluentMigrator.Runner"> <Reference Include="FluentMigrator.Runner">
<HintPath>..\packages\FluentMigrator.1.1.0.0\tools\FluentMigrator.Runner.dll</HintPath> <HintPath>..\packages\FluentMigrator.1.1.0.0\tools\FluentMigrator.Runner.dll</HintPath>

View File

@ -9,7 +9,7 @@
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup> </startup>
<runtime> <runtime>
<loadFromRemoteSources enabled="true"/> <loadFromRemoteSources enabled="true" />
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="libs" /> <probing privatePath="libs" />
<dependentAssembly> <dependentAssembly>
@ -26,7 +26,7 @@
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="FluentMigrator" publicKeyToken="aacfc7de5acabf05" culture="neutral" /> <assemblyIdentity name="FluentMigrator" publicKeyToken="aacfc7de5acabf05" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0" /> <bindingRedirect oldVersion="0.0.0.0-1.1.1.0" newVersion="1.1.1.0" />
</dependentAssembly> </dependentAssembly>
</assemblyBinding> </assemblyBinding>
</runtime> </runtime>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="FluentMigrator" version="1.1.0.0" targetFramework="net40" /> <package id="FluentMigrator" version="1.1.1.0" targetFramework="net40" />
<package id="Microsoft.AspNet.SignalR.Core" version="1.1.2" targetFramework="net40" /> <package id="Microsoft.AspNet.SignalR.Core" version="1.1.2" targetFramework="net40" />
<package id="Microsoft.AspNet.SignalR.Owin" version="1.1.2" targetFramework="net40" /> <package id="Microsoft.AspNet.SignalR.Owin" version="1.1.2" targetFramework="net40" />
<package id="Microsoft.Owin" version="1.1.0-beta2" targetFramework="net40" /> <package id="Microsoft.Owin" version="1.1.0-beta2" targetFramework="net40" />