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: 40cb238d1185463fc444fbca4b3bc85b8b5cf288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1548: Error while signing the assembly (file not found)
// Line: 6

using System.Reflection;

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

class MyClass {

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