mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
added better db migration support than what Subsonic provides out of the box.
This commit is contained in:
parent
180da4c82a
commit
ce63f05512
91 changed files with 7218 additions and 48 deletions
83
Migrator.net/Migrator.Framework/Migrator.Framework.csproj
Normal file
83
Migrator.net/Migrator.Framework/Migrator.Framework.csproj
Normal file
|
@ -0,0 +1,83 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{5270F048-E580-486C-B14C-E5B9F6E539D4}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Migrator.Framework</RootNamespace>
|
||||
<AssemblyName>Migrator.Framework</AssemblyName>
|
||||
<FileUpgradeFlags>
|
||||
</FileUpgradeFlags>
|
||||
<OldToolsVersion>3.5</OldToolsVersion>
|
||||
<UpgradeBackupLocation>
|
||||
</UpgradeBackupLocation>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>MigratorDotNet.snk</AssemblyOriginatorKeyFile>
|
||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Column.cs" />
|
||||
<Compile Include="ColumnProperty.cs" />
|
||||
<Compile Include="ForeignKeyConstraint.cs" />
|
||||
<Compile Include="IColumn.cs" />
|
||||
<Compile Include="ILogger.cs" />
|
||||
<Compile Include="IMigration.cs" />
|
||||
<Compile Include="ITransformationProvider.cs" />
|
||||
<Compile Include="Loggers\ConsoleWriter.cs" />
|
||||
<Compile Include="Loggers\IAttachableLogger.cs" />
|
||||
<Compile Include="Loggers\ILogWriter.cs" />
|
||||
<Compile Include="Loggers\Logger.cs" />
|
||||
<Compile Include="Loggers\SqlScriptFileLogger.cs" />
|
||||
<Compile Include="Migration.cs" />
|
||||
<Compile Include="MigrationAttribute.cs" />
|
||||
<Compile Include="MigrationException.cs" />
|
||||
<Compile Include="SchemaBuilder\AddColumnExpression.cs" />
|
||||
<Compile Include="SchemaBuilder\AddTableExpression.cs" />
|
||||
<Compile Include="SchemaBuilder\DeleteTableExpression.cs" />
|
||||
<Compile Include="SchemaBuilder\FluentColumn.cs" />
|
||||
<Compile Include="SchemaBuilder\ForeignKey.cs" />
|
||||
<Compile Include="SchemaBuilder\IColumnOptions.cs" />
|
||||
<Compile Include="SchemaBuilder\IDeleteTableOptions.cs" />
|
||||
<Compile Include="SchemaBuilder\IFluentColumn.cs" />
|
||||
<Compile Include="SchemaBuilder\IForeignKeyOptions.cs" />
|
||||
<Compile Include="SchemaBuilder\ISchemaBuilderExpression.cs" />
|
||||
<Compile Include="SchemaBuilder\RenameTableExpression.cs" />
|
||||
<Compile Include="SchemaBuilder\SchemaBuilder.cs" />
|
||||
<Compile Include="StringUtils.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="MigratorDotNet.snk" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
Loading…
Add table
Add a link
Reference in a new issue