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

AssemblyWithDefaultSymbolsAndSymbolLinkingEnabled.cs « Symbols « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b861f0eb87454057999169b74167f02437405910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Mono.Linker.Tests.Cases.Expectations.Assertions;
using Mono.Linker.Tests.Cases.Expectations.Metadata;

[assembly: KeptAttributeAttribute (typeof (System.Diagnostics.DebuggableAttribute))]

namespace Mono.Linker.Tests.Cases.Symbols {
	[SetupCompileArgument ("/debug:full")]
	[SetupLinkerLinkSymbols ("true")]
	[KeptSymbols ("test.exe")]
	public class AssemblyWithDefaultSymbolsAndSymbolLinkingEnabled {
		static void Main ()
		{
		}
	}
}