mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Send deploymentOptions to DacFx to save in the publish profile xml file * Update Packages.prop with latest DacFx nuget version. * Update Dacfx version after merge from main. * Address comments * Update method name
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<TargetDatabaseName>testDb</TargetDatabaseName>
|
|
<TargetConnectionString>testConnString</TargetConnectionString>
|
|
<AllowIncompatiblePlatform>True</AllowIncompatiblePlatform>
|
|
<CreateNewDatabase>True</CreateNewDatabase>
|
|
<DropConstraintsNotInSource>False</DropConstraintsNotInSource>
|
|
<DropPermissionsNotInSource>True</DropPermissionsNotInSource>
|
|
<DropObjectsNotInSource>True</DropObjectsNotInSource>
|
|
<DropRoleMembersNotInSource>True</DropRoleMembersNotInSource>
|
|
<IgnoreKeywordCasing>False</IgnoreKeywordCasing>
|
|
<IgnoreSemicolonBetweenStatements>False</IgnoreSemicolonBetweenStatements>
|
|
<ScriptFileSize>True</ScriptFileSize>
|
|
<VerifyDeployment>False</VerifyDeployment>
|
|
<AllowDropBlockingAssemblies>True</AllowDropBlockingAssemblies>
|
|
<ExcludeViews>True</ExcludeViews>
|
|
<ProfileVersionNumber>1</ProfileVersionNumber>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<SqlCmdVariable Include="testvar">
|
|
<Value>testval</Value>
|
|
</SqlCmdVariable>
|
|
</ItemGroup>
|
|
</Project> |