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

cs0579.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b4de129a38cb8acb948b674701094b3188bf376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0579.cs: The attribute `System.Reflection.AssemblyKeyNameAttribute' cannot be applied multiple times
// Line : 

using System.Reflection;
using System.Runtime.CompilerServices;


[assembly: AssemblyKeyName("")]
[assembly: AssemblyKeyName("")]

public class Blah {

	public static void Main () { }
}