-
Notifications
You must be signed in to change notification settings - Fork 202
Silverlight 4 support #21
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
Conversation
|
Silverlight 4 support sounds promising, do you think it would be possible to create a portable class library (instead?), that would be really usefull |
|
Hi Daniel, Have a nice day, |
|
Hi Ioan I have begun to improve the portable version of common.logging and so far I've added an implementation of LogManager.GetCurrentClassLogger() which works for portable libraries when running under Silverlight and .Net 4+ (https://github.com/Daniel-Svensson/common-logging) Hovewer thera are some further work required to have the portable library truly useful and since I have not worked with creating nuget packages I would appreach some feedback on my ideas before I send you a pull request. My idea is to move the core of common.logging into a portable library (lets call it common.logging.core for now) and move out platform specific code to a separate project/assembly (we can call it common.logging). This way we would use the same portable .dll in projects targeting silverlight, .net 4, .net 4.5 and windows store applications. For existing .net applications this would have the implications that they instead of referencing only the "common.logging" they would have to include both "common.logging.core" (for ILog, LogManager etc) and "common.logging" (for ConsoleOutLogger and System.Diagnostocs trace logger). 1: How should we name the assemblies?
2: How should this be deployed through nuget?
3; How to enable targeting net 3.5? I am open for ideas and suggestions. |
|
Hi Daniel,
Have a nice day, |
Hi guys,
I added support for Silverlight 4, could you merge my changes to the main trunk? I also updated the nuget.spec file. I would be grateful if you would publish the nuget package, I need support for both .NET 4.0 and Silverlight 4.0 for my work.
Thanks,
Ioan