-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathListSortHelper.csproj
More file actions
29 lines (24 loc) · 1.24 KB
/
ListSortHelper.csproj
File metadata and controls
29 lines (24 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<VersionPrefix>1.0.4</VersionPrefix>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<None Include="./LICENSE" Pack="true" PackagePath=""/>
<None Include="./README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<PropertyGroup>
<Description>ListSortHelper is to provide the same sorting algorithm used in Array publicly to IList<T></Description>
<Title>ListSortHelper</Title>
<PackageTags>sort;sorting;ArraySortHelper;IArraySortHelper;ListSortHelper;IListSortHelper</PackageTags>
<PackageProjectUrl>https://github.com/stevenguh/ListSortHelper</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/stevenguh/ListSortHelper</RepositoryUrl>
</PropertyGroup>
</Project>