-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathLombiq.HelpfulLibraries.Common.csproj
More file actions
32 lines (27 loc) · 1.43 KB
/
Lombiq.HelpfulLibraries.Common.csproj
File metadata and controls
32 lines (27 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<DefaultItemExcludes>$(DefaultItemExcludes);.git*</DefaultItemExcludes>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<Title>Lombiq Helpful Libraries - Common Libraries</Title>
<Authors>Lombiq Technologies</Authors>
<Copyright>Copyright © 2011, Lombiq Technologies Ltd.</Copyright>
<Description>Lombiq Helpful Libraries - Common Libraries: Various useful libraries that can be handy when developing for .NET. See the project website for detailed documentation.</Description>
<PackageTags>Lombiq;DateTime;DependencyInjection;Utilities</PackageTags>
<PackageIcon>NuGetIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/Lombiq/Helpful-Libraries</RepositoryUrl>
<PackageProjectUrl>https://github.com/Lombiq/Helpful-Libraries/blob/dev/Lombiq.HelpfulLibraries.Common/Readme.md</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="Readme.md" />
<None Include="NuGetIcon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AngleSharp" Version="1.4.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.1" />
</ItemGroup>
</Project>