Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1548-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83e1a3d08cb6d65d2a930d2b0fc8b5feb2a1a801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs1548: Missing private key in strongname file
// Line: 6

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)
	{
	}
}