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
34 lines
1.6 KiB
XML
34 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AssemblyName>Microsoft.SqlTools.Hosting.v2</AssemblyName>
|
|
<PackageId>Microsoft.SqlTools.Hosting.v2</PackageId>
|
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>Microsoft.SqlTools.Hosting.v2</RootNamespace>
|
|
<PackageDescription>
|
|
The Microsoft.SqlTools.Hosting framework can host applications implementing the VSCode Language Server Protocol and/or
|
|
applications implementing the Database Management Protocol. It handles service discovery, initialization, and communication over
|
|
the JSON-RPC protocol.
|
|
</PackageDescription>
|
|
<Description>$(PackageDescription)</Description>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyModel" />
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
<PackageReference Include="System.Composition"/>
|
|
<PackageReference Include="System.Runtime.Loader" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Localization\transXliff" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.SqlTools.DataProtocol.Contracts\Microsoft.SqlTools.DataProtocol.Contracts.csproj" />
|
|
<ProjectReference Include="..\Microsoft.SqlTools.Hosting.Contracts\Microsoft.SqlTools.Hosting.Contracts.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization\*.resx" />
|
|
<None Include="Localization\sr.strings" />
|
|
</ItemGroup>
|
|
</Project> |