|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <Project Sdk="Microsoft.NET.Sdk"> |
3 | | - <PropertyGroup> |
4 | | - <OutputType>Library</OutputType> |
5 | | - <TargetFrameworks>net6.0;net5.0;net461;net48;netstandard2.0</TargetFrameworks> |
6 | | - <AssemblyName>MathNet.Numerics</AssemblyName> |
7 | | - <RootNamespace>MathNet.Numerics</RootNamespace> |
8 | | - <IsPackable>true</IsPackable> |
9 | | - <PackageId>MathNet.Numerics</PackageId> |
10 | | - <PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Signed</PackageId> |
11 | | - <VersionPrefix>5.0.0</VersionPrefix> |
12 | | - <VersionSuffix>beta01</VersionSuffix> |
13 | | - <Title>Math.NET Numerics$(TitleSuffix)</Title> |
14 | | - <Description>Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .NET 5.0 or higher, .NET Standard 2.0 and .NET Framework 4.6.1 or higher, on Windows, Linux and Mac.$(DescriptionSuffix)</Description> |
15 | | - <PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Library</OutputType> |
| 5 | + <TargetFrameworks>net6.0;net5.0;net461;net48;netstandard2.0</TargetFrameworks> |
| 6 | + <LangVersion>7.3</LangVersion> |
| 7 | + <AssemblyName>MathNet.Numerics</AssemblyName> |
| 8 | + <RootNamespace>MathNet.Numerics</RootNamespace> |
| 9 | + <IsPackable>true</IsPackable> |
| 10 | + <PackageId>MathNet.Numerics</PackageId> |
| 11 | + <PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Signed</PackageId> |
| 12 | + <VersionPrefix>5.0.0</VersionPrefix> |
| 13 | + <VersionSuffix>beta01</VersionSuffix> |
| 14 | + <Title>Math.NET Numerics$(TitleSuffix)</Title> |
| 15 | + <Description>Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .NET 5.0 or higher, .NET Standard 2.0 and .NET Framework 4.6.1 or higher, on Windows, Linux and Mac.$(DescriptionSuffix)</Description> |
| 16 | + <PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds |
16 | 17 | COMPATIBILITY: netstandard1.x, net40, net45 no longer supported |
17 | 18 | BREAKING: drop all which was marked as obsolete |
18 | 19 | BREAKING: all native provider adapters moved out to separate NuGet packages |
@@ -40,20 +41,20 @@ Better support for System.Text.Json: Polynomial, DescriptiveStatistics ~Joseph P |
40 | 41 | Lots of internal cleanup, leveraging newer language features |
41 | 42 | Data: now released always together with Numerics (no longer separate versioning) |
42 | 43 | Control.Describe now includes CPU architecture and family identifier if know</PackageReleaseNotes> |
43 | | - <PackageTags>math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags> |
44 | | - <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
45 | | - <EnableDefaultCompileItems>true</EnableDefaultCompileItems> |
46 | | - <NoWarn>1701;1702;1705;1591;1573</NoWarn> |
47 | | - </PropertyGroup> |
| 44 | + <PackageTags>math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags> |
| 45 | + <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
| 46 | + <EnableDefaultCompileItems>true</EnableDefaultCompileItems> |
| 47 | + <NoWarn>1701;1702;1705;1591;1573</NoWarn> |
| 48 | + </PropertyGroup> |
48 | 49 | <ItemGroup> |
49 | | - <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0"> |
50 | | - <PrivateAssets>all</PrivateAssets> |
51 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
52 | | - </PackageReference> |
53 | | - <PackageReference Include="System.ValueTuple" Version="4.4.0" Condition="'$(TargetFramework)' == 'net461'" /> |
54 | | - <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2"> |
55 | | - <PrivateAssets>all</PrivateAssets> |
56 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
57 | | - </PackageReference> |
58 | | - </ItemGroup> |
| 50 | + <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0"> |
| 51 | + <PrivateAssets>all</PrivateAssets> |
| 52 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 53 | + </PackageReference> |
| 54 | + <PackageReference Include="System.ValueTuple" Version="4.4.0" Condition="'$(TargetFramework)' == 'net461'" /> |
| 55 | + <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2"> |
| 56 | + <PrivateAssets>all</PrivateAssets> |
| 57 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 58 | + </PackageReference> |
| 59 | + </ItemGroup> |
59 | 60 | </Project> |
0 commit comments