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

cs1616.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aff7ac9e34f24628c3fda6665b7d2cb184da0031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1616: Option `keyfile' overrides attribute `System.Reflection.AssemblyKeyFileAttribute' given in a source file or added module
// Line: 0
// Compiler options: -keyfile:CS1616.snk -warnaserror

using System.Reflection;

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

class C
{
    public static void Main () {}
}