Skip to content

Commit b2d2993

Browse files
committed
Fixes to project file
1 parent 962f3ba commit b2d2993

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed
Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7+
<Title>ParticleSwarmSharp</Title>
8+
<Description>ParticleSwarmSharp is a fast, extensible, multi-platform and multithreading C# Particle Swarm Optimization library that simplifies the development of applications using Particle Swarm Optimization (PSO).</Description>
9+
<PackageProjectUrl></PackageProjectUrl>
10+
<PackageIcon>logo.png</PackageIcon>
11+
<PackageReadmeFile>NUGET.md</PackageReadmeFile>
12+
<RepositoryType>git</RepositoryType>
13+
<RepositoryUrl>https://github.com/adamstirtan/ParticleSwarmSharp</RepositoryUrl>
14+
<PackageTags>pso;particle swarm;optimization;evolutionary algorithm</PackageTags>
15+
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
716
</PropertyGroup>
817

18+
<ItemGroup>
19+
<None Include="..\..\docs\NUGET.md">
20+
<Pack>True</Pack>
21+
<PackagePath>\</PackagePath>
22+
</None>
23+
<None Include="..\..\logos\logo.png">
24+
<Pack>True</Pack>
25+
<PackagePath>\</PackagePath>
26+
</None>
27+
</ItemGroup>
28+
929
</Project>

0 commit comments

Comments
 (0)