-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdbup-sqlserver.csproj
More file actions
34 lines (30 loc) · 1.67 KB
/
dbup-sqlserver.csproj
File metadata and controls
34 lines (30 loc) · 1.67 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>DbUp makes it easy to deploy and upgrade Microsoft SQL Server databases. This package adds SqlServer support.</Description>
<Title>DbUp Microsoft SqlServer Support</Title>
<Company>DbUp Contributors</Company>
<Product>DbUp</Product>
<Copyright>Copyright © DbUp Contributors 2015</Copyright>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>dbup-sqlserver</AssemblyName>
<RootNamespace>DbUp.SqlServer</RootNamespace>
<PackageId>dbup-sqlserver</PackageId>
<AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<RepositoryUrl>https://github.com/DbUp/dbup-sqlserver.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.1.1" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.4" />
</ItemGroup>
<ItemGroup>
<None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath=""/>
</ItemGroup>
</Project>