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

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

namespace Mono.Linker.Tests.TestCasesRunner {
	public class SetupCompileInfo {
		public string OutputName;
		public NPath[] SourceFiles;
		public string[] Defines;
		public string[] References;
		public NPath[] Resources;
		public string AdditionalArguments;
		public string CompilerToUse;
		public bool AddAsReference;
	}
}