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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/Mono.Linker.Tests/TestCasesRunner/CompilerOptions.cs')
-rw-r--r--test/Mono.Linker.Tests/TestCasesRunner/CompilerOptions.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Mono.Linker.Tests/TestCasesRunner/CompilerOptions.cs b/test/Mono.Linker.Tests/TestCasesRunner/CompilerOptions.cs
new file mode 100644
index 000000000..7e584e904
--- /dev/null
+++ b/test/Mono.Linker.Tests/TestCasesRunner/CompilerOptions.cs
@@ -0,0 +1,14 @@
+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;
+ public NPath[] Resources;
+ public string[] AdditionalArguments;
+ public string CompilerToUse;
+ }
+}