mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Ability to add publish profile from project context * Add/update test + fix Build vs None addition to sqlproj file
15 lines
744 B
XML
15 lines
744 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<TargetDatabaseName>@@PROJECT_NAME@@</TargetDatabaseName>
|
|
<AllowIncompatiblePlatform>True</AllowIncompatiblePlatform>
|
|
<DropPermissionsNotInSource>True</DropPermissionsNotInSource>
|
|
<DropObjectsNotInSource>True</DropObjectsNotInSource>
|
|
<DropRoleMembersNotInSource>True</DropRoleMembersNotInSource>
|
|
<IgnoreKeywordCasing>False</IgnoreKeywordCasing>
|
|
<IgnoreSemicolonBetweenStatements>False</IgnoreSemicolonBetweenStatements>
|
|
<AllowDropBlockingAssemblies>True</AllowDropBlockingAssemblies>
|
|
<ProfileVersionNumber>1</ProfileVersionNumber>
|
|
</PropertyGroup>
|
|
</Project>
|