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: da329fbb1f79bf18d61da698c428c0b610d440f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 SourceAndDestinationPair[] Resources;
		public string AdditionalArguments;
		public string CompilerToUse;
		public bool AddAsReference;
		public bool RemoveFromLinkerInput;
	}
}