You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
3.6 KiB
84 lines
3.6 KiB
<?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>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
</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> |