more mono fixes
This commit is contained in:
parent
7dcbb8c6d3
commit
982ea1dfe6
1 changed files with 5 additions and 0 deletions
|
|
@ -221,7 +221,12 @@ namespace Server
|
|||
if( Core.HaltOnWarning )
|
||||
parms.WarningLevel = 4;
|
||||
|
||||
#if !MONO
|
||||
CompilerResults results = provider.CompileAssemblyFromFile( parms, files );
|
||||
#else
|
||||
parms.CompilerOptions = String.Format( "{0} /recurse:Scripts/*.cs", parms.CompilerOptions );
|
||||
CompilerResults results = provider.CompileAssemblyFromFile( parms, "" );
|
||||
#endif
|
||||
m_AdditionalReferences.Add( path );
|
||||
|
||||
Display( results );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue