Browse Source

assembly now marked as CLS compliant

Signed-off-by: Christoph Ruegg <git@cdrnet.ch>
pull/2/head
Christoph Ruegg 17 years ago
parent
commit
a4165f348d
  1. 1
      src/Managed/Precision.cs
  2. 2
      src/Managed/Properties/AssemblyInfo.cs
  3. 2
      src/Native/Properties/AssemblyInfo.cs

1
src/Managed/Precision.cs

@ -618,6 +618,7 @@ namespace MathNet.Numerics
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown if <paramref name="b"/> is <c>double.NaN</c>.
/// </exception>
[CLSCompliant(false)]
public static ulong NumbersBetween(this double a, double b)
{
if (double.IsNaN(a) || double.IsInfinity(a))

2
src/Managed/Properties/AssemblyInfo.cs

@ -26,6 +26,7 @@
// OTHER DEALINGS IN THE SOFTWARE.
// </copyright>
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
@ -38,6 +39,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCopyright("Copyright © Math.NET Project")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: CLSCompliant(true)]
[assembly: ComVisible(false)]
[assembly: Guid("7b66646f-f0ee-425d-9065-910d1937a2df")]
[assembly: AssemblyVersion("1.0.0.0")]

2
src/Native/Properties/AssemblyInfo.cs

@ -26,6 +26,7 @@
// OTHER DEALINGS IN THE SOFTWARE.
// </copyright>
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
@ -38,6 +39,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCopyright("Copyright © Math.NET Project")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: CLSCompliant(true)]
[assembly: ComVisible(false)]
[assembly: Guid("2b6a14a7-2aee-4bdc-a95a-2f496fe06cb7")]
[assembly: AssemblyVersion("1.0.0.0")]

Loading…
Cancel
Save