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

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

using System.Reflection;

[assembly: AssemblyKeyFile ("file_not_found.snk")]

class MyClass {

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