-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathDataStructures.csproj
More file actions
22 lines (20 loc) · 847 Bytes
/
DataStructures.csproj
File metadata and controls
22 lines (20 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<!-- Package metadata -->
<PackageId>C-Sharp-Algorithms.DataStructures</PackageId>
<Description>A library of standard data structures implemented in C#</Description>
<Authors>Ahmad Alhour</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/aalhour/C-Sharp-Algorithms</RepositoryUrl>
<PackageTags>algorithms;data-structures;csharp</PackageTags>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Data\PrimesDocument_10K.csv">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
</Project>