I\'m having some odd issues with a web application written using Asp.Net Core 1.1, using the full .Net Framework v4.6.2.
I want to force the application to use a swedish
Did you try setting the CultureInfo.CurrentCulture property in Program.cs:
CultureInfo.CurrentCulture
Program.cs
using System.Globalization; CultureInfo.CurrentCulture = new CultureInfo("sv-SE");