When compiling under Linux(void, x64) using .net 9, I get the following error(Almost the only one! which is amazing!) (This is the second #34 ):
Program.cs(59, 13): [CS0103] The name 'ApplicationConfiguration' does not exist in the current context
on this code:
[STAThread]
private static void Main(string[] orgArgs)
{
ApplicationConfiguration.Initialize();
}
Is this something missing in the library or should I change something in my code?
Thanks