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 'linker/Tests/TestCasesRunner/SetupCompileInfo.cs')
-rw-r--r--linker/Tests/TestCasesRunner/SetupCompileInfo.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/linker/Tests/TestCasesRunner/SetupCompileInfo.cs b/linker/Tests/TestCasesRunner/SetupCompileInfo.cs
new file mode 100644
index 000000000..e50a4bd1c
--- /dev/null
+++ b/linker/Tests/TestCasesRunner/SetupCompileInfo.cs
@@ -0,0 +1,12 @@
+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 bool AddAsReference;
+ }
+}