mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* added other languages to ServiceLayer * fixed travis and appveyor yaml, added other languages for localization * added spanish and german strings to credentialslocalization, also WIP for coreservices test * added WIP localization test for CoreServices * Removed unit test for coreservices, need to work on those later. * restored travis and appveyor * added kusto string resource localization test * added localization test and locale change for SqlToolsCredentials * added locale command options to ResourceProvider * revert resourceprovider test * Localized SqlTools.Credentials * added hosting localization * replaced new with translation to be consistent with main service layer * reverted external changes as it is unnecessary * Translated ManagedBatchParser * test culture value * test culture change * temporarily comment out service layer command options * returned sr.cs * temporarily remove bad tests * restored tests and allowed for SR culture to change for dependencies (for future testing) * localization for resourceprovider components added. * Set LocaleSetter to public and also removed InternalsVisible for Kusto, Credentials and ResourceProvider * removed unnecessary changes * Removed CredentialsCommandOptions * renamed pt-BR to pt-br * Rename sr.pt-BR.xlf.template to sr.pt-br.xlf.template * Rename src/Microsoft.SqlTools.ServiceLayer/Localization/LCL/pt-BR/sr.resx.lcl to src/Microsoft.SqlTools.ServiceLayer/Localization/LCL/pt-br/sr.resx.lcl * Rename sr.pt-BR.xlf to sr.pt-br.xlf * Rename sr.pt-BR.resx to sr.pt-br.resx * Rename sr.pt-BR.resx to sr.pt-br.resx * Rename sr.pt-BR.xlf to sr.pt-br.xlf * Rename sr.pt-BR.resx to sr.pt-br.resx * Rename sr.pt-BR.xlf to sr.pt-br.xlf * Rename sr.pt-BR.resx to sr.pt-br.resx * Rename sr.pt-BR.xlf to sr.pt-br.xlf * Rename sr.pt-BR.resx to sr.pt-br.resx * Rename sr.pt-BR.xlf to sr.pt-br.xlf * Rename sr.pt-BR.xlf to sr.pt-br.xlf * Rename sr.pt-BR.resx to sr.pt-br.resx * Rename sr.pt-BR.xlf to sr.pt-br.xlf * Rename sr.pt-BR.resx to sr.pt-br.resx * restored newlines * Update sr.pt-br.xlf.template Removed newline * removed newline * fixing newlines for consistency * removed unnecessary newline
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
<PropertyGroup>
|
||
<OutputType>Library</OutputType>
|
||
<TargetFramework>netstandard2.0</TargetFramework>
|
||
<PackageId>Microsoft.SqlTools.CoreServices</PackageId>
|
||
<AssemblyName>Microsoft.SqlTools.CoreServices</AssemblyName>
|
||
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
||
<ApplicationIcon />
|
||
<StartupObject />
|
||
<Copyright><EFBFBD> Microsoft Corporation. All rights reserved.</Copyright>
|
||
<PackageDescription>
|
||
A collection of core services that can be reused by a Database Management Protocol-based service using the Microsoft.SqlTools.Hosting framework.
|
||
</PackageDescription>
|
||
<Description>$(PackageDescription)</Description>
|
||
</PropertyGroup>
|
||
<ItemGroup>
|
||
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" />
|
||
<PackageReference Include="Microsoft.Data.SqlClient" />
|
||
<PackageReference Include="System.Text.Encoding.CodePages" />
|
||
<PackageReference Include="Microsoft.Extensions.DependencyModel" />
|
||
<PackageReference Include="System.Runtime.Loader" />
|
||
<PackageReference Include="System.Composition" />
|
||
</ItemGroup>
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\Microsoft.SqlTools.Hosting.v2\Microsoft.SqlTools.Hosting.v2.csproj" />
|
||
<ProjectReference Include="..\Microsoft.SqlTools.DataProtocol.Contracts\Microsoft.SqlTools.DataProtocol.Contracts.csproj" />
|
||
</ItemGroup>
|
||
<ItemGroup>
|
||
<EmbeddedResource Include="Localization\*.resx" />
|
||
<None Include="Localization\sr.strings" />
|
||
</ItemGroup>
|
||
</Project>
|