fix build on mono

In my environment, /nostdlib will not be able to locate mscorlib. On mono,
these effectively negate each other, so best just to remove the /nostdlib
option and let it use the built in mscorlib anyway


git-svn-id: https://svn.apache.org/repos/asf/incubator/npanday/trunk@1619654 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java b/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java
index f85d304..7e5dca5 100644
--- a/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java
+++ b/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java
@@ -238,9 +238,7 @@
         if ( compilerContext.getVendor().equals( Vendor.MONO ) &&
                  "FULL".equals( compilerContext.getTargetProfile() ) )
         {
-            commands.add( "/nostdlib" );
             commands.add( "/noconfig" );
-            commands.add( "/reference:mscorlib" );
             commands.add( "/reference:System.Data" );
             commands.add( "/reference:System" );
             commands.add( "/reference:System.Drawing" );