mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* Updating DacFx nuget to one with SqlTasks * Adding common references to build props to avoid multiple places for update
17 lines
857 B
XML
17 lines
857 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
|
<SmoPackageVersion>160.2004021.0</SmoPackageVersion>
|
|
<SqlClientPackageVersion>1.1.1</SqlClientPackageVersion>
|
|
<NewtonsoftPackageVersion>11.0.1</NewtonsoftPackageVersion>
|
|
<DacFxPackageVersion>150.4779.1-preview</DacFxPackageVersion>
|
|
<HighEntropyVA>true</HighEntropyVA>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="$(SqlClientPackageVersion)" />
|
|
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" Version="$(SmoPackageVersion)" />
|
|
<PackageReference Include="Microsoft.SqlServer.DacFx" Version="$(DacFxPackageVersion)" GeneratePathProperty="true" />
|
|
</ItemGroup>
|
|
</Project>
|