|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFrameworks>net40;net45;net5.0;netstandard2.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net45;net5.0;netstandard2.0</TargetFrameworks> |
5 | 5 | <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
6 | 6 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
7 | 7 | <PackageId>CSparse</PackageId>
|
8 | 8 | <Summary>A concise library for solving sparse linear systems with direct methods.</Summary>
|
9 | 9 | <Description>CSparse.NET provides numerical methods for sparse LU, Cholesky and QR decomposition of real and complex linear systems.</Description>
|
10 | 10 | <Product>CSparse.NET</Product>
|
11 | 11 | <Company />
|
12 |
| - <Copyright>Copyright Christian Woltering © 2012-2020</Copyright> |
| 12 | + <Copyright>Copyright Christian Woltering © 2012-2021</Copyright> |
13 | 13 | <Authors>Christian Woltering</Authors>
|
14 |
| - <AssemblyVersion>3.4.9.0</AssemblyVersion> |
15 |
| - <FileVersion>3.4.9.0</FileVersion> |
| 14 | + <AssemblyVersion>3.5.0.0</AssemblyVersion> |
| 15 | + <FileVersion>3.5.0.0</FileVersion> |
16 | 16 | <PackageTags>math sparse matrix lu cholesky qr decomposition factorization </PackageTags>
|
17 |
| - <Version>3.4.9</Version> |
| 17 | + <Version>3.5.0</Version> |
18 | 18 | <AssemblyName>CSparse</AssemblyName>
|
19 | 19 | <RootNamespace>CSparse</RootNamespace>
|
20 | 20 | <PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
|
21 | 21 | <PackageProjectUrl>https://github.com/wo80/CSparse.NET</PackageProjectUrl>
|
22 | 22 | <RepositoryUrl>https://github.com/wo80/CSparse.NET</RepositoryUrl>
|
23 | 23 | <RepositoryType>git</RepositoryType>
|
24 |
| - <PackageReleaseNotes>Coordinate storage improvements: |
25 |
| -* Add constructor that uses existing arrays for storage. |
26 |
| -* Convert to sparse matrix in place.</PackageReleaseNotes> |
| 24 | + <PackageReleaseNotes>Target frameworks: |
| 25 | +* Removed .NET 4.0. |
| 26 | +* Added .NET 5.0. |
| 27 | + </PackageReleaseNotes> |
27 | 28 | </PropertyGroup>
|
28 | 29 |
|
29 |
| - <ItemGroup> |
30 |
| - <Compile Remove="IProgress.cs" Condition="'$(TargetFramework)' != 'net40'" /> |
31 |
| - </ItemGroup> |
32 |
| - |
33 | 30 | <ItemGroup>
|
34 | 31 | <Compile Update="Properties\Resources.Designer.cs">
|
35 | 32 | <DesignTime>True</DesignTime>
|
|
0 commit comments