Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs1548-3.cs
1 // CS1548: Error during assembly signing. The specified key file 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 }