-
Notifications
You must be signed in to change notification settings - Fork 424
Multilanguage with .net standard #152
Comments
I can't access your sample. Do you have a HelloWorld-style example? That is usually best - ideally console .NET Core app. |
Closing here, please create issue in CoreFX repo with correct repro link. |
and the correct link is https://github.com/binoypatel/NetCore.Localization |
Ah, sorry - the line between Globalization and Resources is still a bit blur for me :) |
@binoypatel it would be great if you can confirm if the bug still repros with the latest CLI from https://www.microsoft.com/net/download/core, the latest CLI is based on msbuild and old project.json based CLI is unlikely to be updated or serviced |
@ramarag , I have tested with the followings and still not working: I have opened a new issue in corefx as karelz suggested: https://github.com/dotnet/corefx/issues/14998 Thanks, |
Thanks @binoypatel! |
I understand :), I tested with VS2017 RC1 as suggested by @onovotny and confirmed working. Now, my question is should I move my production application to VS2017 RC1 because multilanguage is not working with VS2015 or wait for VS2017 to RTM? Thanks, |
It would be best to ask CLI folks for guidance (in the https://github.com/dotnet/cli/issues/3396 issue). If it's not getting anywhere, ping me and I'll try to get some help. |
Hi,
I am using MAT (Multilingual Tool kit) with .Net Standard library (1.4) that converts my language resources to supported languages. It perfectly works with Full .net but .Net Core / ASP.Net Core. I have full sample published on github https://github.com/binoypatel/NetCore.Localization that demonstrates the issue.
Basically in example code I have the followings:
Contoso.Languages: This is .net standard library 1.4 that contains multiple language resources (English, German and French),
ConsoleApp1.NetCore: This is .net core console application that uses Contoso.Languages library to display language specific resources based on the CurrentUICulture. But it doesn't work in this application. It always shows an English resource.
ConsoleApplication1.FullNet: This is standard .net console application that uses Contoso.Languages library to display language specific resources based on the CurrentUICulture. It works fine with this application. It shows correct language resource based on the CurrentUICulture.
This is really important scenario for many multilingual applications, I believe. I would be really appreciate any help to solve this issue.
Kind regards,
Binoy
The text was updated successfully, but these errors were encountered: