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

AssemblyWithDefaultSymbols.cs « Symbols « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb8b2bb168f1fad2cbdd44882299c74dc993fc0e (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 ("false")]
	[RemovedSymbols ("test.exe")]
	public class AssemblyWithDefaultSymbols {
		static void Main ()
		{
		}
	}
}