[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs1726-2.cs
blob8dfe8a482fd18f4e506e7577baa42d78fc87650f
1 // CS1726: Friend assembly reference `MyAssemblyName, PublicKeyToken=43b5d2e9a794bdcb' is invalid. Strong named assemblies must specify a public key in their InternalsVisibleTo declarations
2 // Line: 8
3 // Compiler options: -keyfile:key.snk
5 using System;
6 using System.Runtime.CompilerServices;
8 [assembly: InternalsVisibleTo ("MyAssemblyName, PublicKeyToken=43b5d2e9a794bdcb")]
10 public class Test
12 static void Main ()