-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbShift.CLI.csproj
More file actions
41 lines (35 loc) · 1.64 KB
/
Copy pathDbShift.CLI.csproj
File metadata and controls
41 lines (35 loc) · 1.64 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>DbShift.CLI</RootNamespace>
<AssemblyName>dbshift</AssemblyName>
<Description>DbShift - a database-agnostic migration tool for .NET (PostgreSQL, SQL Server, MySQL, SQLite).</Description>
<Version>1.0.0</Version>
<FileVersion>1.0.0.0</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackAsTool>true</PackAsTool>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == ''">win-x64</RuntimeIdentifier>
<DebugType>none</DebugType>
<ToolCommandName>dbshift</ToolCommandName>
<PackageId>DbShift</PackageId>
<PackageTags>database;migration;postgresql;sqlserver;mysql;sqlite;cli;flyway;schema</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/AzimMahmud/dbshift</PackageProjectUrl>
<RepositoryUrl>https://github.com/AzimMahmud/dbshift</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.57.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DbShift.Core\DbShift.Core.csproj" />
<ProjectReference Include="..\DbShift.Engine\DbShift.Engine.csproj" />
<ProjectReference Include="..\DbShift.Infrastructure\DbShift.Infrastructure.csproj" />
<ProjectReference Include="..\DbShift.Reports\DbShift.Reports.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>