Re: Castle Windsor / .NET 4.5?

2012-12-05 Thread Jacob Levitt
I got this same error when upgrading a project to .net 4.5. I worked around it by using the string overload of StartUsingMethod instead of the expression overload. On Saturday, August 18, 2012 6:11:04 AM UTC-4, Robert M. wrote: This might be a possible gotcha if you are using IStartable

Re: Castle Windsor / .NET 4.5?

2012-08-18 Thread Robert M.
This might be a possible gotcha if you are using IStartable facility in .NET 4.5 I am using the following code to start eagerly a component: Component.ForHttpServer().Start().StartUsingMethod(c = c.Start)); HttpServer class does not implement IStartable interface At the moment of Windsor

Re: Castle Windsor / .NET 4.5?

2012-08-18 Thread Robert M.
This might be a possible gotcha if you are using IStartable facility in .NET 4.5 I am using the following code to start eagerly a component: Component.ForHttpServer().Start().StartUsingMethod(c = c.Start)); HttpServer class does not implement IStartable interface At the moment of Windsor

Re: Castle Windsor / .NET 4.5?

2012-08-15 Thread Krzysztof Kozmic
I'm using it with .NET 4.5 with no issues. We'll have dedicated .NET 4.5 binaries in version 3.2 -- Krzysztof Kozmic On Thursday, 16 August 2012 at 12:22 PM, Scott_M wrote: Will the current Castle Windsor work with .NET 4.5 or is a new .NET 4.5 version of Windsor necessary? Any gotcha's