Iulian Florescu
Iulian Florescu

Reputation: 95

ASP.NET 5 MVC 6 Multi Language Application

I am having trouble making my application multi-language. I tried the old way with resources (resx files) but it seems they are missing from ASP.NET 5, can you please help me with some guidance or a link to read about this? I searched the web for an article or something but I found nothing. Thank you.

Upvotes: 7

Views: 3240

Answers (2)

Joe Audette
Joe Audette

Reputation: 36736

from statements made in the asp.net community standups on Scott Hanselman's youtube page I think localization won't be available until beta6 or beta7

you might be able to create resx files in your project now but you won't be able to use them yet

I'm in the same boat with my own project and waiting to tackle localization once it is possible

Upvotes: 5

Patrick Desjardins
Patrick Desjardins

Reputation: 140913

Resource file are still available with Asp.Net 5 application. You need to right click in the Solution Explorer the project (or folder inside a project) and select Add New Item. From there you can get under Visual C# > General > Resources File.

Upvotes: 3

Related Questions