[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs7059.cs
1 // CS7059: Executables cannot be satellite assemblies. Remove the attribute or keep it empty
2 // Line: 7
3
4 using System;
5 using System.Reflection;
6
7 [assembly: AssemblyCulture("es")]
8 [assembly: AssemblyVersion("1.2.3456.7")]
9
10 namespace NS 
11 {
12         class MyClass 
13         {
14                 static void Main ()
15                 {
16                         Console.WriteLine (typeof(MyClass).Assembly.FullName);
17                 }
18         }
19 }