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: b4556b28d1bbe247a69a715e74b6e57713b63b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1548: Error during assembly signing. The specified key 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)
	{
	}
}