1 using System;
2 using Mono.Linker.Tests.Extensions;
3 
4 namespace Mono.Linker.Tests.TestCasesRunner {
5 	public class CompilerOptions {
6 		public NPath OutputPath;
7 		public NPath[] SourceFiles;
8 		public string[] Defines;
9 		public NPath[] References;
10 		public NPath[] Resources;
11 		public string[] AdditionalArguments;
12 	}
13 }
14