forked from fluentmigrator/fluentmigrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFluentMigrator.Console.csproj
More file actions
58 lines (56 loc) · 2.86 KB
/
FluentMigrator.Console.csproj
File metadata and controls
58 lines (56 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifiers>linux</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="!$([MSBuild]::IsOSPlatform('Linux'))">
<TargetFrameworks>net48;net8.0</TargetFrameworks>
<RuntimeIdentifiers Condition="'$(TargetFramework)' == 'net48'">win-x86;win-x64;any</RuntimeIdentifiers>
<RuntimeIdentifiers Condition="'$(TargetFramework)' == 'net8.0'">win-x86;win-x64;win-arm64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>Migrate</AssemblyName>
<PackageId>FluentMigrator.Console</PackageId>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\FluentMigrator.snk</AssemblyOriginatorKeyFile>
<Description>Console runner for FluentMigrator</Description>
<IsPackable>false</IsPackable>
<Platforms>AnyCPU;x64;x86</Platforms>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)../../PackageTool.props" />
<ItemGroup>
<None Include="..\..\FluentMigrator.snk" Link="FluentMigrator.snk" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FluentMigrator.Runner\FluentMigrator.Runner.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql" Version="10.0.2" />
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="10.3.4" />
<PackageReference Include="FSharp.Core" Version="9.0.202" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="$(MicrosoftPackageVersion)" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="23.26.200" Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="Oracle.ManagedDataAccess" Version="23.8.0" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.2" />
<PackageReference Include="MySqlConnector" Version="2.5.0" />
<PackageReference Include="Snowflake.Data" Version="5.5.0" />
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'x86' ">
<PackageReference Include="Oracle.DataAccess.x86.4" Version="4.112.3" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' and '$(Platform)' == 'x64' ">
<Reference Include="Sap.Data.Hana.v4.5, Version=2.2.36.0, Culture=neutral, PublicKeyToken=0326b8ea63db4bc4">
<HintPath>..\..\lib\Hana\ado.net\v4.5\Sap.Data.Hana.v4.5.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'x64' ">
<Content Include="../../lib/Hana/*.*">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="$(MicrosoftPackageVersion)" />
</ItemGroup>
</Project>