summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1548-3.cs
blob: 09409e3d920b84104fb746b5549a69a3ea627202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS1548: Error during assembly signing. The specified key file does not have a private key
// Line: 0

using System.Reflection;

[assembly: AssemblyKeyFile ("cs1548.pub")]

// where cs1548.pub is generated by:
// sn -k cs1548.snk
// sn -p cs1548.snk cs1548.pub

class MyClass {

	public static void Main (string [] args)
	{
	}
}