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

DynamicDependencyInCopyAssembly.cs « Dependencies « DynamicDependencies « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c505c2c5ed9c1b819467bfac403b5ae286ff7951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using Mono.Linker.Tests.Cases.Expectations.Metadata;

namespace Mono.Linker.Tests.Cases.DynamicDependencies.Dependencies
{
	public class DynamicDependencyInCopyAssembly
	{
		[DynamicDependency ("ExtraMethod1")]
		public DynamicDependencyInCopyAssembly ()
		{
		}

		static void ExtraMethod1 ()
		{
		}
	}
}