mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 01:25:36 -05:00
* load publish profile sqlcmd "value" tag and throw error if not loaded correctly * moved the read profile function to utils
16 lines
782 B
XML
16 lines
782 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>
|
|
<TargetConnectionString>Data Source=testserver;Integrated Security=true;Persist Security Info=False;Pooling=False;MultipleActiveResultSets=False;Connect Timeout=60;Encrypt=False;TrustServerCertificate=True</TargetConnectionString>
|
|
<ProfileVersionNumber>1</ProfileVersionNumber>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<SqlCmdVariable Include="ProdDatabaseName">
|
|
<Value>MyProdDatabase</Value>
|
|
</SqlCmdVariable>
|
|
</ItemGroup>
|
|
</Project>
|