summaryrefslogtreecommitdiff
path: root/src/vm/assemblyspecbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/assemblyspecbase.h')
-rw-r--r--src/vm/assemblyspecbase.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/vm/assemblyspecbase.h b/src/vm/assemblyspecbase.h
new file mode 100644
index 0000000000..a52df06009
--- /dev/null
+++ b/src/vm/assemblyspecbase.h
@@ -0,0 +1,28 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+// ============================================================
+//
+// AssemblySpecBase.h
+//
+
+
+//
+// Chooses the appropriate implementation to base AssemblySpec on
+//
+// ============================================================
+
+
+#ifndef __ASSEMBLY_SPEC_BASE_H__
+#define __ASSEMBLY_SPEC_BASE_H__
+
+#ifndef FEATURE_FUSION
+#include "coreclr/corebindresult.h"
+#include "coreclr/corebindresult.inl"
+#include "../binder/inc/assembly.hpp"
+#endif // FEATURE_FUSION
+
+#include "baseassemblyspec.h"
+#include "baseassemblyspec.inl"
+
+#endif // __ASSEMBLY_SPEC_BASE_H__