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

cs1548-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57ebd3c7f3739637dd4237ddf398fa11f11c4ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1548-2.cs: Error during assembly signing. The specified file `cs1548-2.cs' does not have a private key
// Line: 0

using System.Reflection;

[assembly: AssemblyKeyFile ("cs1548-2.cs")]

class MyClass {

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