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: b32c54af5bd0b34f281df8ae173a7220484352d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1616.cs: 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 () {}
}