-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLSQSolver.MathNet.csproj
More file actions
72 lines (57 loc) · 2.09 KB
/
Copy pathLSQSolver.MathNet.csproj
File metadata and controls
72 lines (57 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>LSQSolver.MathNet</PackageId>
<Title>LSQSolver.MathNet</Title>
<Version>1.0.0</Version>
<Authors>TaigaNakano</Authors>
<Copyright>Copyright © TaigaNakano</Copyright>
<Description>A rank-aware least-squares extension for Math.NET Numerics, supporting overdetermined, underdetermined, and rank-deficient systems with minimum-norm solutions.</Description>
<PackageTags>MathNet.Numerics;LSQSolver;least-squares;linear-algebra;minimum-norm;rank-deficient;underdetermined</PackageTags>
<PackageReleaseNotes>Initial release of LSQSolver.MathNet.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/TaigaNakano/LSQSolver.MathNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/TaigaNakano/LSQSolver.MathNet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Project_icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LSQSolver"
Version="1.0.5" />
<PackageReference Include="LSQSolver.Complex"
Version="1.0.0" />
<PackageReference Include="MathNet.Numerics"
Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<!--
Remove the files automatically registered by the SDK.
They are explicitly re-added below with NuGet Pack metadata.
-->
<None Remove="Assets/Project_icon.png" />
<None Remove="README.md" />
<!--
Source:
Assets/Project_icon.png
Location inside the NuGet package:
/Project_icon.png
-->
<None Include="$(MSBuildProjectDirectory)/Assets/Project_icon.png">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
<!--
Source:
README.md
Location inside the NuGet package:
/README.md
-->
<None Include="$(MSBuildProjectDirectory)/README.md">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>