2007-01-22 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / class / System / System.CodeDom.Compiler / CompilerParameters.cs
index 3e3b558da9106090e135e2019eb77f7e1c930035..aa01c5d77934411e49326afcfdc6400fdb9f2145 100644 (file)
@@ -6,21 +6,48 @@
 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
 //
 // (C) 2002 Ximian, Inc.
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
 using System.Collections.Specialized;
-using System.Security.Policy;
 using System.Runtime.InteropServices;
+using System.Security.Permissions;
+using System.Security.Policy;
+
+namespace System.CodeDom.Compiler {
 
-namespace System.CodeDom.Compiler
-{
+#if NET_2_0
+       [Serializable]
+#else
        [ComVisible (false)]
-       public class CompilerParameters
-       {
+#endif
+       [PermissionSet (SecurityAction.LinkDemand, Unrestricted = true)]
+       [PermissionSet (SecurityAction.InheritanceDemand, Unrestricted = true)]
+       public class CompilerParameters {
+
                private string compilerOptions;
-               #if (NET_1_1)
-                       private Evidence evidence;
-               #endif
+#if NET_1_1
+               private Evidence evidence;
+#endif
                private bool generateExecutable = false;
                private bool generateInMemory = false;
                private bool includeDebugInformation = false;
@@ -32,6 +59,10 @@ namespace System.CodeDom.Compiler
                private IntPtr userToken = IntPtr.Zero;
                private int warningLevel = -1;
                private string win32Resource;
+#if NET_2_0
+               private StringCollection embedded_resources;
+               private StringCollection linked_resources;
+#endif
 
                //
                // Constructors
@@ -73,16 +104,13 @@ namespace System.CodeDom.Compiler
                        }
                }
 
-               #if (NET_1_1)
+#if NET_1_1
                public Evidence Evidence {
-                       get {
-                               return evidence;
-                       }
-                       set {
-                               evidence = value;
-                       }
+                       get { return evidence; }
+                       [SecurityPermission (SecurityAction.Demand, ControlEvidence = true)]
+                       set { evidence = value; }
                }
-               #endif
+#endif
 
                public bool GenerateExecutable {
                        get {
@@ -140,6 +168,8 @@ namespace System.CodeDom.Compiler
 
                public TempFileCollection TempFiles {
                        get {
+                               if (tempFiles == null)
+                                       tempFiles = new TempFileCollection ();
                                return tempFiles;
                        }
                        set {
@@ -182,5 +212,24 @@ namespace System.CodeDom.Compiler
                                win32Resource = value;
                        }
                }
+#if NET_2_0
+               [ComVisible (false)]
+               public StringCollection EmbeddedResources {
+                       get {
+                               if (embedded_resources == null)
+                                       embedded_resources = new StringCollection ();
+                               return embedded_resources;
+                       }
+               }
+
+               [ComVisible (false)]
+               public StringCollection LinkedResources {
+                       get {
+                               if (linked_resources == null)
+                                       linked_resources = new StringCollection ();
+                               return linked_resources;
+                       }
+               }
+#endif
        }
 }