Imported Upstream version 4.0.0~alpha1

Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
Jo Shields
2015-04-07 09:35:12 +01:00
parent 283343f570
commit 3c1f479b9d
22469 changed files with 2931443 additions and 869343 deletions

View File

@@ -0,0 +1,67 @@
//
// AssemblyInfo.cs
//
// Authors:
// Marek Safar (marek.safar@gmail.com)
//
// Copyright 2014 Xamarin Inc (http://www.xamarin.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;
using System.Reflection;
using System.Resources;
using System.Security;
using System.Security.Permissions;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about the assembly
[assembly: AssemblyTitle ("System.Data.Entity.dll")]
[assembly: AssemblyDescription ("System.Data.Entity.dll")]
[assembly: AssemblyDefaultAlias ("System.Data.Entity.dll")]
[assembly: AssemblyCompany (Consts.MonoCompany)]
[assembly: AssemblyProduct (Consts.MonoProduct)]
[assembly: AssemblyCopyright (Consts.MonoCopyright)]
#if MOBILE
[assembly: AssemblyVersion ("4.0.0.0")]
[assembly: SatelliteContractVersion ("4.0.0.0")]
[assembly: AssemblyInformationalVersion ("4.0.50524.0")]
[assembly: AssemblyFileVersion ("4.0.50524.0")]
#else
[assembly: AssemblyVersion (Consts.FxVersion)]
[assembly: SatelliteContractVersion (Consts.FxVersion)]
[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
#endif
[assembly: NeutralResourcesLanguage ("en-US")]
[assembly: CLSCompliant (true)]
[assembly: AssemblyDelaySign (true)]
[assembly: AssemblyKeyFile ("../ecma.pub")]
[assembly: ComVisible (false)]

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
using System.ComponentModel;
namespace System.Data
{
sealed class EntityResCategoryAttribute : CategoryAttribute
{
public EntityResCategoryAttribute (string category)
: base (category)
{
}
}
}

View File

@@ -0,0 +1,12 @@
using System.ComponentModel;
namespace System.Data
{
sealed class EntityResDescriptionAttribute : DescriptionAttribute
{
public EntityResDescriptionAttribute (string description)
: base (description)
{
}
}
}

View File

@@ -0,0 +1,25 @@
namespace System.Data.Entity
{
static class Error
{
public static Exception ArgumentNull (string paramName)
{
return new ArgumentNullException (paramName);
}
public static Exception ArgumentOutOfRange (string paramName)
{
return new ArgumentOutOfRangeException (paramName);
}
public static Exception NotImplemented ()
{
return new NotImplementedException ();
}
public static Exception NotSupported ()
{
return new NotSupportedException ();
}
}
}

View File

@@ -0,0 +1,12 @@
thisdir = class/System.Data.Entity
SUBDIRS =
include ../../build/rules.make
LIBRARY = System.Data.Entity.dll
LIB_MCS_FLAGS = -r:System.dll -r:System.Core.dll -r:System.Data.dll -r:System.Xml.dll -r:System.Xml.Linq.dll -r:System.Transactions.dll \
-r:System.Runtime.Serialization.dll -r:System.ComponentModel.DataAnnotations.dll -r:System.Configuration.dll \
-warn:2
RESOURCE_STRINGS = ../../../external/referencesource/System.Data.Entity/System.Data.Entity.txt
include ../../build/library.make

View File

@@ -0,0 +1 @@
715b1a8e934b59de91e65a159dc11ed847acfd69

File diff suppressed because it is too large Load Diff