Skip to content

Commit

Permalink
Play nicer with normal Framework applications #392
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian Stockbower committed May 24, 2018
1 parent 354ea55 commit 7448176
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<ItemGroup>
<PackageReference Include="nunit" Version="3.7.1" />
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.1.0" />
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions net-core/Ical.Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Ical.Net</id>
<version>4.1.3</version>
<version>4.1.4</version>
<title>Ical.Net</title>
<authors>Rian Stockbower, Douglas Day</authors>
<owners>Rian Stockbower</owners>
Expand All @@ -16,7 +16,7 @@
<dependencies>
<dependency id="NodaTime" version="2.0.2" />
<dependency id="System.Runtime.Serialization.Primitives" version="4.3.0" />
<dependency id="System.Reflection.TypeExtensions" version="4.3.0" />
<dependency id="System.Reflection.TypeExtensions" version="4.1.0" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion net-core/Ical.Net/Ical.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NodaTime" Version="2.0.2" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.1.0" />
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
A listing of what each [Nuget package](https://www.nuget.org/packages/Ical.Net) version represents.

### v4
* 4.1.2 [#387](https://github.com/rianjs/ical.net/issues/388). Bugfix: Specifying a time zone identifier in the `CalDateTime` constructor should override the backing `DateTime`'s `Kind` property. If no time zone identifier is specified, then the `Kind` property shouldn't be changed.
* 4.1.3 [#392](https://github.com/rianjs/ical.net/issues/392). .NET Standard (still) doesn't play nicely with .NET Framework applications, so I have also targeted .NET 4.6 (`net46`). As a consequence of that, I had to downgrade `System.Reflection.TypeExtensions` to 4.1.0, because the original targeted version (4.3.0) was retargeted as `netstandard2.0`, rendering it incompatible with a `netstandard1.3` library.
* 4.1.2 [#388](https://github.com/rianjs/ical.net/issues/388). Bugfix: Specifying a time zone identifier in the `CalDateTime` constructor should override the backing `DateTime`'s `Kind` property. If no time zone identifier is specified, then the `Kind` property shouldn't be changed.
* 4.1.1 [#387](https://github.com/rianjs/ical.net/issues/387). Bugfix: Calling `CalDateTime.AsUtc` caches the UTC time, but the cache was not being reset if the `TzId` property changed.
* 4.1.0 [#383](https://github.com/rianjs/ical.net/issues/383). Add a read-only `AsDateTimeOffset` property to `IDateTime`. Add a few docs to `RecurrencePattern`.
* 4.0.6 [#344](https://github.com/rianjs/ical.net/issues/344). Fix the VERSION property so it's 2.0 as RFC-5545 requires.
Expand Down

0 comments on commit 7448176

Please sign in to comment.