Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

20 lines
447 B
C#

// CS0647: Error during emitting `System.Reflection.AssemblyCultureAttribute' attribute. The reason is `The executables cannot be satelite assemblies, remove the attribute or keep it empty'
// Line: 7
using System;
using System.Reflection;
[assembly: AssemblyCulture("es")]
[assembly: AssemblyVersion("1.2.3456.7")]
namespace NS
{
class MyClass
{
static void Main ()
{
Console.WriteLine (typeof(MyClass).Assembly.FullName);
}
}
}