Merge pull request #3511 from henricm/fix-no-socket-reuse
[mono.git] / mcs / class / corlib / System / ApplicationIdentity.cs
index b0fda9a20db292b0aa95742db35180105d7e187c..5e51b221ae24270fab67a5b3cd24733b340132e9 100644 (file)
@@ -26,7 +26,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 
 using System.Runtime.InteropServices;
 using System.Runtime.Serialization;
@@ -38,7 +37,10 @@ namespace System {
        public sealed class ApplicationIdentity: ISerializable {
 
                private string _fullName;
+               // FIXME:
+        #pragma warning disable 649
                private string _codeBase;
+        #pragma warning restore 649
 
                public ApplicationIdentity (string applicationIdentityFullName)
                {
@@ -76,4 +78,3 @@ namespace System {
        }
 }
 
-#endif