Skip to content

Commit

Permalink
added icon
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidThielen committed Oct 3, 2024
1 parent 368c204 commit d70be56
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ These are some classes I created for handling the DateTime. The primary class is

When working with DateTime across timezones, do not use UTC Offset - that will always bite you in the ass sooner or later. Daylight Savings Time start/end is a political decision and it changes regularly.

The DateTimeZone can be saved in a database as the DateTime & the TimeZoneId (string). Save and use DateTimeZone.
The DateTimeZone can be saved in a database as the DateTime & the TimeZoneId (string). Entity Framework handles a DateTimeZone property fine, nothing extra is needed (it saves it as 2 columns).

This is under the MIT license. If you find this very useful I ask (not a requirement) that you consider reading my book [I DON’T KNOW WHAT I’M DOING!: How a Programmer Became a Successful Startup CEO](https://a.co/d/bEpDlJR).

And if you like it, please review it on Amazon and/or GoodReads. The number of legitimate reviews helps a lot. Much appreciated.
> This is under the MIT license. If you find this useful I ask (not a requirement) that you consider reading my book [I DON’T KNOW WHAT I’M DOING!: How a Programmer Became a Successful Startup CEO](https://a.co/d/bEpDlJR).
>
> And if you like it, please review it on Amazon and/or GoodReads. The number of legitimate reviews helps a lot. Much appreciated.
## NodaTime

Expand Down
7 changes: 6 additions & 1 deletion TradeWindsDateTime/TradeWindsDateTime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.0.1</Version>
<Version>1.0.0.2</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>DateTimeZone is DateTime+TimeZone</Title>
<Authors>DavidThielen</Authors>
Expand All @@ -17,9 +17,14 @@
<RepositoryType>git</RepositoryType>
<PackageTags>DateTime; TimeZone</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>date_time.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<None Include="..\date_time.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
Expand Down
Binary file added date_time.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d70be56

Please sign in to comment.