-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdbup-sqlite.csproj
More file actions
35 lines (30 loc) · 1.63 KB
/
dbup-sqlite.csproj
File metadata and controls
35 lines (30 loc) · 1.63 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds SQLite support.</Description>
<Title>DbUp SQLite Support</Title>
<Company>DbUp Contributors</Company>
<Product>DbUp</Product>
<Copyright>Copyright © DbUp Contributors 2015</Copyright>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>dbup-sqlite</AssemblyName>
<RootNamespace>DbUp.Sqlite</RootNamespace>
<PackageId>dbup-sqlite</PackageId>
<AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<RepositoryUrl>https://github.com/DbUp/dbup-sqlite.git</RepositoryUrl>
<PackageIcon>dbup-icon.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> <!-- Perform a deterministic build, so our binaries aren't impacted by build server environmental factors (e.g. file paths). -->
<EmbedUntrackedSources>true</EmbedUntrackedSources> <!-- Embed source files that are not tracked by the source control manager in the PDB -->
<DebugType>embedded</DebugType> <!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="dbup-core" Version="6.0.4" />
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath=""/>
</ItemGroup>
</Project>