* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs1548-3.cs
1 // cs1548-3.cs: Error during assembly signing. The specified file `cs1548.pub' does not have a private key
2 // Line: 0
3
4 using System.Reflection;
5
6 [assembly: AssemblyKeyFile ("cs1548.pub")]
7
8 // where cs1548.pub is generated by:
9 // sn -k cs1548.snk
10 // sn -p cs1548.snk cs1548.pub
11
12 class MyClass {
13
14         public static void Main (string [] args)
15         {
16         }
17 }