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: 1d52ae2c39c29ada0e5a02adf1b04994e2444727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1616.cs: Option 'keyfile' overrides 'System.Reflection.AssemblyKeyFileAttribute' given in source
// Line: 0
// Compiler options: -keyfile:CS1616.snk -warnaserror

using System.Reflection;

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

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