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

CompilerOptions.cs « TestCasesRunner « Mono.Linker.Tests « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44bf854e99e41f1744ff622f5545eb1f7d54a3a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Mono.Linker.Tests.Extensions;

namespace Mono.Linker.Tests.TestCasesRunner
{
	public class CompilerOptions
	{
		public NPath OutputPath;
		public NPath[] SourceFiles;
		public string[] Defines;
		public NPath[] References;
		public NPath[] Resources;
		public string[] AdditionalArguments;
		public string CompilerToUse;
	}
}