mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 09:35:36 -05:00
* add support for getting options from a publish profile * update comments * set values for default options if they aren't specified in the publish profile * addressing comments
17 lines
721 B
XML
17 lines
721 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<IncludeCompositeObjects>True</IncludeCompositeObjects>
|
|
<TargetDatabaseName>testdb</TargetDatabaseName>
|
|
<DeployScriptFileName>DatabaseProjectTestdb.sql</DeployScriptFileName>
|
|
<ProfileVersionNumber>1</ProfileVersionNumber>
|
|
<BlockOnPossibleDataLoss>True</BlockOnPossibleDataLoss>
|
|
<AllowIncompatiblePlatform>True</AllowIncompatiblePlatform>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<SqlCmdVariable Include="ProdDatabaseName">
|
|
<DefaultValue>prodname</DefaultValue>
|
|
<Value>$(SqlCmdVar__1)</Value>
|
|
</SqlCmdVariable>
|
|
</ItemGroup>
|
|
</Project> |