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

CompilerOptions.cs « TestCasesRunner « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5929c8b8bbd8861c25fdad2f765e7b226d0a160a (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
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;
	}
}