mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
* load database name from profile.xml * load sqlcmd variables from profile * Add warning text * add tests * fix file filter for windows * add comments * show SQLCMD variables in a table * reset dialog before testing readPublishProfile callback
16 lines
598 B
XML
16 lines
598 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>targetDb</TargetDatabaseName>
|
|
<DeployScriptFileName>DatabaseProject1.sql</DeployScriptFileName>
|
|
<ProfileVersionNumber>1</ProfileVersionNumber>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<SqlCmdVariable Include="ProdDatabaseName">
|
|
<DefaultValue>MyProdDatabase</DefaultValue>
|
|
<Value>$(SqlCmdVar__1)</Value>
|
|
</SqlCmdVariable>
|
|
</ItemGroup>
|
|
</Project>
|