- Moderator
- #271
Hello huha!
I have noticed that in AssemblyInfo.cs of BackupSettingsMP you have [assembly: AssemblyCulture("neutral")]. Is that on purpose? Because it could cause trouble when loading assembly properties. Like in SubCentral where I'm doing Assembly.GetName() for loaded assemblies (to check if library is loaded) and it fails for BackupSettingsMP with "System.ArgumentException: Culture name 'neutral' is not supported".
Fix is simple, just replace "neutral" with "" (empty)
Thanks!
I have noticed that in AssemblyInfo.cs of BackupSettingsMP you have [assembly: AssemblyCulture("neutral")]. Is that on purpose? Because it could cause trouble when loading assembly properties. Like in SubCentral where I'm doing Assembly.GetName() for loaded assemblies (to check if library is loaded) and it fails for BackupSettingsMP with "System.ArgumentException: Culture name 'neutral' is not supported".
Fix is simple, just replace "neutral" with "" (empty)
Thanks!