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

gcs1726.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8380743efbd549b2949de8b32c75b2c4269a6645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// gcs1726.cs: Friend assembly reference `MyAssemblyName' is invalid. Strong named assemblies must specify a public key in their InternalsVisibleTo declarations
// Line: 8
// Compiler options: -keyfile:InternalsVisibleTest.snk

using System;
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo ("MyAssemblyName")]

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