-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathTimeZoneConverter.Posix.csproj
More file actions
24 lines (20 loc) · 951 Bytes
/
TimeZoneConverter.Posix.csproj
File metadata and controls
24 lines (20 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net8.0;net9.0</TargetFrameworks>
<Description>Generates a POSIX time zone string from standard time zone identifiers.</Description>
<Authors>Matt Johnson-Pint</Authors>
<PackageId>TimeZoneConverter.Posix</PackageId>
<PackageTags>timezone;time;zone;time zone;iana;tzdb;olson;timezoneinfo,posix</PackageTags>
<PackageProjectUrl>https://github.com/mattjohnsonpint/TimeZoneConverter</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>5.1.0</Version>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\TimeZoneConverter\TimeZoneConverter.csproj" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NodaTime" Version="3.2.2" />
</ItemGroup>
</Project>