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

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

using System;
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo ("MyAssemblyName")]

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