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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2011-08-30 03:16:34 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2011-08-31 13:07:00 +0400
commit2e70815a3f21cd53b8f16e0f08814ba882958713 (patch)
tree697cc328d9d98fee2969173b2f1460cb18917c4f /main/src/addins/ILAsmBinding
parent16590c81ca0389dfd172e4e0b5e6f3fda71bc6a1 (diff)
[Core] Allow projects to add/remove compilation defines
Add some API to ConfigurationParameters to allow symbols which need to be defined at compile time to be easily modified by other code.
Diffstat (limited to 'main/src/addins/ILAsmBinding')
-rw-r--r--main/src/addins/ILAsmBinding/Project/ILAsmCompilerParameters.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/src/addins/ILAsmBinding/Project/ILAsmCompilerParameters.cs b/main/src/addins/ILAsmBinding/Project/ILAsmCompilerParameters.cs
index a9622a9306..1a661b3647 100644
--- a/main/src/addins/ILAsmBinding/Project/ILAsmCompilerParameters.cs
+++ b/main/src/addins/ILAsmBinding/Project/ILAsmCompilerParameters.cs
@@ -30,5 +30,13 @@ namespace ILAsmBinding
{
public class ILAsmCompilerParameters : MonoDevelop.Projects.ConfigurationParameters
{
+ public override void AddDefineSymbol (string symbol)
+ {
+ // ILAsm has no symbols to define
+ }
+ public override void RemoveDefineSymbol (string symbol)
+ {
+ // ILAsm has no symbols to define
+ }
}
}