mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* enable code coverage for ADO test run * fix debugtype default * use file name instead of guid * use wildcard for test dll name
23 lines
818 B
XML
23 lines
818 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Localization\transXliff\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Data.SqlClient" />
|
|
<PackageReference Include="Microsoft.SqlServer.DACFx" />
|
|
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization\sr.resx" />
|
|
<None Include="Localization\sr.strings" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.SqlTools.Hosting\Microsoft.SqlTools.Hosting.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|