-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAgeCalc.csproj
30 lines (26 loc) · 1.38 KB
/
AgeCalc.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Faisalman.AgeCalc</PackageId>
<Version>0.0.3</Version>
<Authors>Faisal Salman</Authors>
<Description>AgeCalc.cs - C# age calculation library: calculate relative time (years, months, days) ago since birthday.</Description>
<PackageProjectUrl>https://github.com/faisalman/age-calc-cs</PackageProjectUrl>
<LicenseUrl>https://opensource.org/licenses/MIT</LicenseUrl>
<IconUrl>https://github.com/faisalman/age-calc-cs/raw/master/icon.png</IconUrl>
<Tags>age-calculator birthday calculate-age relative-time</Tags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>