<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS7059</ErrorName>
  <Examples>
    <string>// CS7059: Executables cannot be satellite 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);
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>