ical-org / ical.net

ical.NET - an open source iCal library for .NET
MIT License
784 stars 231 forks source link

Minor fix for relative uri's for dotnet 7 #571

Closed CornyVanBeck closed 2 days ago

CornyVanBeck commented 1 year ago

Since dotnet 7 Microsoft set the default behavior in the uri constructor to UriKind.Absolute to be able to support both again i've overwritten the default with UriKind.RelativeOrAbsolute this way relative uri's and uri's withour http can also be used again from dotnet 7 and higher.

grafik