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

TestCaseLinkerOptions.cs « TestCasesRunner « Mono.Linker.Tests « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f13b4eafc348353d4fa63785707d01ff736fceb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;

namespace Mono.Linker.Tests.TestCasesRunner {
	public class TestCaseLinkerOptions
	{
		public string CoreAssembliesAction;
		public string UserAssembliesAction;
		public List<KeyValuePair<string, string>> AssembliesAction = new List<KeyValuePair<string, string>> ();

		public string Il8n;
		public bool IncludeBlacklistStep;
		public string KeepTypeForwarderOnlyAssemblies;
		public string KeepDebugMembers;
		public string LinkSymbols;
		public bool SkipUnresolved;
		public bool StripResources;

		public List<KeyValuePair<string, string[]>> AdditionalArguments = new List<KeyValuePair<string, string[]>> ();
	}
}