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

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

namespace Mono.Linker.Tests.Cases.Symbols {
	[SetupCompileBefore ("LibraryWithPortablePdbSymbols.dll", new[] { "Dependencies/LibraryWithPortablePdbSymbols.cs" }, additionalArguments: "/debug:portable", compilerToUse: "csc")]
	[SetupLinkerLinkSymbols ("false")]
	[SetupLinkerAction ("copy", "LibraryWithPortablePdbSymbols")]

	[RemovedSymbols ("LibraryWithPortablePdbSymbols.dll")]
	public class ReferenceWithPortablePdbCopyAction {
		static void Main ()
		{
			LibraryWithPortablePdbSymbols.SomeMethod ();
		}
	}
}