mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-20 09:35:38 -05:00
* Remove Hosting dependency from BatchParser, wip for logging replacement * netstandard2.0 and fixes * comment + cleanup * comment * fix build * Update newtonsoft * localize errors
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!-- Targeting netstandard2.0 so that other things such as PS cmdlets can use this which need to support a wider range of machines -->
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Nullable>disable</Nullable>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Localization\transXliff\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Data.SqlClient" />
|
|
<PackageReference Include="Microsoft.SqlServer.DACFx" />
|
|
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" />
|
|
<PackageReference Include="Microsoft.SqlServer.Management.SmoMetadataProvider" />
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization\*.resx" />
|
|
<None Include="Localization\sr.strings" />
|
|
</ItemGroup>
|
|
</Project>
|