[build] Add System.Numerics.Vectors skeleton
authorMarek Safar <marek.safar@gmail.com>
Thu, 16 Jul 2015 18:57:38 +0000 (20:57 +0200)
committerMarek Safar <marek.safar@gmail.com>
Thu, 16 Jul 2015 18:58:11 +0000 (20:58 +0200)
mcs/class/Makefile
mcs/class/System.Numerics.Vectors/Assembly/AssemblyInfo.cs [new file with mode: 0644]
mcs/class/System.Numerics.Vectors/Makefile [new file with mode: 0644]
mcs/class/System.Numerics.Vectors/System.Numerics.Vectors.dll.sources [new file with mode: 0644]

index 280cf0dc7dfb249c51b9fb419321f96e657dae40..8b06523c8dbbbb67c1cdbd5089016d1811b4101f 100644 (file)
@@ -139,6 +139,7 @@ net_4_x_dirs := \
        System.EnterpriseServices       \
        Mono.Data.Tds                   \
        System.Numerics         \
+       System.Numerics.Vectors         \
        System.Data                     \
        System.ComponentModel.DataAnnotations   \
        Accessibility                   \
diff --git a/mcs/class/System.Numerics.Vectors/Assembly/AssemblyInfo.cs b/mcs/class/System.Numerics.Vectors/Assembly/AssemblyInfo.cs
new file mode 100644 (file)
index 0000000..632dcb9
--- /dev/null
@@ -0,0 +1,61 @@
+//
+// AssemblyInfo.cs
+//
+// Authors:
+//     Marek Safar (marek.safar@gmail.com)
+//
+// Copyright (C) 2009 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;
+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.Numerics.Vectors.dll")]
+[assembly: AssemblyDescription ("System.Numerics.Vectors.dll")]
+[assembly: AssemblyDefaultAlias ("System.Numerics.Vectors.dll")]
+
+[assembly: AssemblyCompany (Consts.MonoCompany)]
+[assembly: AssemblyProduct (Consts.MonoProduct)]
+[assembly: AssemblyCopyright (Consts.MonoCopyright)]
+[assembly: AssemblyVersion (Consts.FxVersion)]
+[assembly: SatelliteContractVersion (Consts.FxVersion)]
+[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
+[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
+
+[assembly: NeutralResourcesLanguage ("en-US")]
+[assembly: CLSCompliant (true)]
+[assembly: AssemblyDelaySign (true)]
+
+[assembly: AssemblyKeyFile ("../ecma.pub")]
+
+[assembly: SecurityCritical]
+
+[assembly: ComVisible (false)]
+
diff --git a/mcs/class/System.Numerics.Vectors/Makefile b/mcs/class/System.Numerics.Vectors/Makefile
new file mode 100644 (file)
index 0000000..f5ff093
--- /dev/null
@@ -0,0 +1,11 @@
+thisdir = class/System.Numerics.Vectors
+SUBDIRS = 
+include ../../build/rules.make
+
+LIBRARY = System.Numerics.Vectors.dll
+LIB_REFS = System
+LIB_MCS_FLAGS =
+
+EXTRA_DISTFILES =
+
+include ../../build/library.make
diff --git a/mcs/class/System.Numerics.Vectors/System.Numerics.Vectors.dll.sources b/mcs/class/System.Numerics.Vectors/System.Numerics.Vectors.dll.sources
new file mode 100644 (file)
index 0000000..45b755e
--- /dev/null
@@ -0,0 +1,3 @@
+../../build/common/Consts.cs
+../../build/common/SR.cs
+Assembly/AssemblyInfo.cs