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:
authorLluis Sanchez <lluis@novell.com>2008-06-25 20:51:38 +0400
committerLluis Sanchez <lluis@novell.com>2008-06-25 20:51:38 +0400
commit72356c8e519ed3216b0f032bdb608b6b05e255fb (patch)
treee871921fd52d5ef73cac9b039546d4efcda793b6 /extras/JavaBinding/Project
parentc8a87a3bcd630aab35880fb0d645aaec581d6f2d (diff)
* JavaBinding.make, md1format.xml, JavaBinding.addin.xml,
JavaBinding.mdp, Project/JavaCompilerParameters.cs: Add support for msbuild format. svn path=/trunk/monodevelop/; revision=106573
Diffstat (limited to 'extras/JavaBinding/Project')
-rw-r--r--extras/JavaBinding/Project/JavaCompilerParameters.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/extras/JavaBinding/Project/JavaCompilerParameters.cs b/extras/JavaBinding/Project/JavaCompilerParameters.cs
index 27e491def2..efb6693a9a 100644
--- a/extras/JavaBinding/Project/JavaCompilerParameters.cs
+++ b/extras/JavaBinding/Project/JavaCompilerParameters.cs
@@ -32,28 +32,28 @@ namespace JavaBinding
/// </summary>
public class JavaCompilerParameters: ICloneable
{
- [ItemProperty("deprecation")]
+ [ItemProperty("Deprecation", DefaultValue=true)]
bool deprecation = true;
- [ItemProperty("optimize")]
+ [ItemProperty("Optimize", DefaultValue=true)]
bool optimize = true;
- [ItemProperty("mainclass")]
+ [ItemProperty("MainClass", DefaultValue=null)]
string mainclass = null;
- [ItemProperty("definesymbols")]
+ [ItemProperty("DefineSymbols", DefaultValue="")]
string definesymbols = String.Empty;
- [ItemProperty("classpath")]
+ [ItemProperty("ClassPath", DefaultValue="")]
string classpath = String.Empty;
- [ItemProperty ("compiler")]
+ [ItemProperty ("Compiler", DefaultValue=JavaCompiler.Gcj)]
JavaCompiler compiler = JavaCompiler.Gcj;
- [ItemProperty("compilerpath")]
+ [ItemProperty("CompilerPath", DefaultValue="gcj")]
string compilerpath = "gcj";
- [ItemProperty("genwarnings")]
+ [ItemProperty("GenWarnings", DefaultValue=false)]
bool genwarnings = false;
public object Clone ()