2014-09-04 09:07:35 +01:00
|
|
|
// CS7059: Executables cannot be satellite assemblies. Remove the attribute or keep it empty
|
2014-08-13 10:39:27 +01:00
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|