-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't use iCal.Net 3.0.13 with .NET Framework application #324
Comments
Thanks for the report. I was able to replicate the problem as well. I haven't done much testing between framework applications and v3 which is a .NET Standard (1.3) implementation, as most of our stuff still uses v2. The fix appears to be adding System.Runtime.Serialization.Primitives to the nuspec list of dependencies for v3. I did that, and published a new version to nuget (3.0.14) and retried it locally without issue. I'll close this up for now, if the fix is incomplete, just re-open. |
Thanks! That solved it. Now I just need to find some documentation on how to use it, from the basic. The Wiki page doesn't seem that useful for a newbie. :) |
What are you trying to do? |
I am trying to send a all day meeting event invite with an alarm set for a day before the event day.
PRODID:-//company & Ellis//Company Inquiry//EN
|
Please post the question on stackoverflow and link it here. And if you’re having problems with ical.net, please post some sample code showing what you tried. |
I posted the question and sample code to |
Hi All,
I am new to Ical.Net and installed version 3.0.13 on VS Community 2015. Just trying to test it out and got this error (the console project target .NET 4.6.2).
An unhandled exception of type 'System.IO.FileNotFoundException' occurred in Playground.exe
Additional information: Could not load file or assembly 'System.Runtime.Serialization.Primitives, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
I am just testing one line of code:
Calendar cal = new Calendar();
What could be the issue?
Thanks a lot!
The text was updated successfully, but these errors were encountered: