I have an ics file from google (attached below) and when I open the same in outlook, it doesnt add any event on the date mentioned in the file "20120823". But in DDay.ICal dll I use for programatically fetching the calendar events, the dll returns me 730 events. Any idea??
I saw a link that said that DDay have resolved this google calendar issue but seems its still not resolved. Any hack to this available will help greatly.
ICS content
BEGIN:VEVENT
DTSTART;VALUE=DATE:20120823
DTEND;VALUE=DATE:20120824
RRULE:FREQ=DAILY;UNTIL=20120824
EXDATE;VALUE=DATE:20120824
EXDATE;VALUE=DATE:20120823
DTSTAMP:20131031T111655Z
UID:xxxxxxxxxxxxxxxxxxxxxxxx@google.com
CREATED:20120621T142631Z
DESCRIPTION:
LAST-MODIFIED:20120621T142631Z
LOCATION:
SEQUENCE:0
STATUS:CONFIRMED
SUMMARY:Test Summary
TRANSP:TRANSPARENT
END:VEVENT
END:VCALENDAR
Below code returns me 730 occurances
IList<Occurrence> occurrences = iCal.GetOccurrences(
new iCalDateTime(2010, 1, 1, "US-Eastern"),
new iCalDateTime(2016, 12, 31, "US-Eastern"));