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

gcs0647.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83eddb9c33174a3f386bf8b8f8e64b95731eb8e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// gcs0647.cs: Error during emitting `System.Runtime.CompilerServices.InternalsVisibleToAttribute' attribute. The reason is `Friend assembly `MyAssemblyName, Version=0.0.0.0' is invalid. InternalsVisibleTo cannot have version or culture specified.'
// Line: 8

using System;
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo ("MyAssemblyName, Version=0.0.0.0")]

public class InternalsVisibleToTest 
{
	static void Main ()
	{
	}

}